* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050505;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Efek gradien halus di latar belakang */
    background-image: radial-gradient(circle at 20% 30%, rgba(229, 159, 69, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}

.verification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 20px;
}

/* Glassmorphism Card */
.card {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efek Neon pada Lingkaran 18+ */
.glow-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #E59F45;
    box-shadow: 0 0 15px rgba(229, 159, 69, 0.3),
                inset 0 0 15px rgba(229, 159, 69, 0.3);
}

.circle-text {
    font-size: 38px;
    font-weight: 700;
    color: #E59F45;
    text-shadow: 0 0 12px rgba(229, 159, 69, 0.5);
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.subtitle {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 35px;
}

.button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
    outline: none;
}

/* Tombol YES - Neon Gold */
.btn-yes {
    background: linear-gradient(135deg, #EFC876, #C5812B);
    color: #111;
    box-shadow: 0 4px 15px rgba(229, 159, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 159, 69, 0.4);
    background: linear-gradient(135deg, #FAD78C, #D8943C);
}

/* Tombol NO - Dark Glass */
.btn-no {
    background: rgba(35, 35, 35, 0.7);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-no:hover {
    background: rgba(50, 50, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-subtext {
    font-size: 11px;
    color: #666;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 12px;
}

.footer svg {
    opacity: 0.4;
}
