/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden; /* Mencegah scroll */
}

/* Container Utama */
.verification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

/* Kotak Konten */
.content-box {
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05); /* Sedikit transparan agar terlihat modern */
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px); /* Efek glassmorphism */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700; /* Warna Emas */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cccccc;
}

/* Grup Tombol */
.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Jarak antar tombol */
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px; /* Bentuk pil modern */
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Tombol "YA" (Primary) */
.btn-yes {
    background-color: #FFD700;
    color: #000;
}

.btn-yes:hover {
    background-color: #e6c300;
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

/* Tombol "TIDAK" (Secondary/Ghost) */
.btn-no {
    background-color: transparent;
    color: #FFD700;
}

.btn-no:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-5px);
}

/* Responsif untuk Layar Kecil */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .button-group {
        flex-direction: column; /* Tombol jadi vertikal */
        gap: 1rem;
    }
    .btn {
        width: 100%;
    }
}