:root {
    --bg-color: #0b0f19;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --accent-glow-1: rgba(139, 92, 246, 0.4); /* Purple */
    --accent-glow-2: rgba(56, 189, 248, 0.3); /* Blue */
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Ambient Glows */
.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow-1) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.background-glow.secondary {
    background: radial-gradient(circle, var(--accent-glow-2) 0%, rgba(0,0,0,0) 70%);
    bottom: -150px;
    right: -100px;
    top: auto;
    left: auto;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Icon */
.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(56, 189, 248, 0.2));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

/* Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.divider {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 0 auto 30px;
}

.policy-text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: #e2e8f0;
    margin-bottom: 40px;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 40px 20px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .policy-text {
        font-size: 1.2rem;
    }
}
