
/* Reset dasar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    /* Background abu-abu sangat gelap, bukan hitam pekat */
    background-color: #121212; 
    color: #e0e0e0; /* Warna teks putih keabu-abuan agar tidak menyilaukan */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kontainer utama yang sederhana */
.container {
    text-align: center;
    padding: 40px;
    max-width: 500px;
    width: 90%;
}

/* Judul utama dengan warna aksen merah redup */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f2f2f2;
    margin-bottom: 15px;
    line-height: 1.1;
}

/* Memberikan aksen warna khusus pada kata 'Voldigod' (opsional jika kamu mau modif HTML-nya, tapi ini untuk keseluruhan) */
h1::after {
    content: '.';
    color: #e53935; /* Aksen merah pada titik akhir */
}

/* Teks deskripsi yang bersih */
p {
    font-size: 1rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Tombol (Button) yang minimalis */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.95rem;
    color: #f2f2f2;
    background-color: transparent;
    border: 1px solid #e53935; /* Garis tepi merah */
    border-radius: 4px; /* Sudut sedikit membulat */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Efek saat tombol di-hover */
.btn:hover {
    background-color: #e53935;
    color: #ffffff;
}

/* Responsif untuk layar kecil */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    p {
        font-size: 0.9rem;
    }
}