:root {
    --bg-dark: #070913;
    --panel-bg: rgba(13, 16, 32, 0.65);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --primary-glow: rgba(139, 92, 246, 0.35);
    --font-outfit: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Blobs */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 70%);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation-duration: 30s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, rgba(236, 72, 153, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.1);
    }
    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Main Container */
.container {
    width: 100%;
    max-width: 440px;
    padding: 24px;
    z-index: 10;
}

/* Glass Panel */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                inset 0 1px 0px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6),
                inset 0 1px 0px rgba(255, 255, 255, 0.15);
}

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

.verif-header p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Button Group */
.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-verif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-yes {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: 0 8px 24px var(--primary-glow);
    border: none;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    filter: brightness(1.05);
}

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

.btn-no {
    background: rgba(255, 255, 255, 0.05);
    color: #D1D5DB;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-no:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #FCA5A5;
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateY(-2px);
}

.btn-no:active {
    transform: translateY(1px);
}

/* Toast styling if needed */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

/* Responsiveness */
@media (max-width: 480px) {
    .glass-panel {
        padding: 36px 24px;
    }
    
    .verif-header h1 {
        font-size: 28px;
    }
}
