/* Reset and Root Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #090a0f;
    --primary-gradient: linear-gradient(135deg, #ff4a5a 0%, #ff8c37 100%);
    --primary-glow: rgba(255, 74, 90, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #a0a5b5;
    --font-outfit: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-outfit);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* --- Animated Mesh Background --- */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    filter: blur(120px);
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 74, 90, 0.8) 0%, rgba(255, 74, 90, 0) 70%);
    top: -10%;
    left: -10%;
    animation: move-shape-1 25s infinite alternate;
}

.shape-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.7) 0%, rgba(99, 102, 241, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation: move-shape-2 30s infinite alternate;
}

.shape-3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, rgba(236, 72, 153, 0) 70%);
    top: 30%;
    left: 45%;
    animation: move-shape-3 20s infinite alternate;
}

@keyframes move-shape-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15%, 20%) scale(1.15); }
    100% { transform: translate(5%, -5%) scale(0.9); }
}

@keyframes move-shape-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20%, -15%) scale(0.85); }
    100% { transform: translate(10%, -5%) scale(1.1); }
}

@keyframes move-shape-3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, 15%) scale(1.2); }
    100% { transform: translate(15%, -10%) scale(0.95); }
}

/* --- Card Panel Design --- */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    padding: 24px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Glowing Inner Border Effect */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 300%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.75s;
    pointer-events: none;
}

.glass-panel:hover::before {
    left: 150%;
    transition: 1.5s ease;
}



@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Badge Icon (18+) --- */
.badge-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.badge-icon svg {
    filter: drop-shadow(0 4px 15px rgba(255, 74, 90, 0.3));
    animation: pulse-glow 2.5s infinite alternate;
}

.badge-text {
    position: absolute;
    font-weight: 800;
    font-size: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1;
    transform: translateY(1px);
}

@keyframes pulse-glow {
    0% { filter: drop-shadow(0 4px 8px rgba(255, 74, 90, 0.3)); }
    100% { filter: drop-shadow(0 4px 20px rgba(255, 74, 90, 0.7)); }
}

/* --- Typography --- */
.verif-header h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #d5d9e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, rgba(255, 74, 90, 0.5) 0%, rgba(255, 140, 55, 0.5) 100%);
    margin: 0 auto 24px;
}

.question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* --- Buttons Layout --- */
.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

/* Button Base style */
.btn-verif {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

/* YA Button Styles (Primary Glowing) */
.btn-yes {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 24px var(--primary-glow);
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-yes span {
    position: relative;
    z-index: 2;
}

.btn-yes svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-yes:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(255, 74, 90, 0.6);
}

.btn-yes:hover svg {
    transform: translateX(4px);
}

.btn-yes:active {
    transform: translateY(-1px) scale(0.99);
}

/* TIDAK Button Styles (Dodging/Outlined) */
.btn-no {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: #d1d5db;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-highlight);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- Warning Footer --- */
.verif-footer {
    margin-top: 32px;
}

.verif-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    line-height: 1.5;
}

/* --- Toast Notification --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast {
    background: rgba(255, 74, 90, 0.15);
    border: 1px solid rgba(255, 74, 90, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.toast-container.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .glass-panel {
        padding: 36px 20px;
        border-radius: 24px;
    }

    .badge-icon {
        margin-bottom: 16px;
    }
    
    .verif-header h1 {
        font-size: 28px;
    }
    
    .question {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-verif {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .verif-footer {
        margin-top: 24px;
    }
}
