/* --- Base & Body Styles --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* slate-950 */
}

.hero-gradient-bg {
    background-image: radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.1) 0px, transparent 50%), radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.1) 0px, transparent 50%), radial-gradient(at 52% 99%, hsla(355, 98%, 71%, 0.1) 0px, transparent 50%), radial-gradient(at 10% 29%, hsla(256, 96%, 68%, 0.1) 0px, transparent 50%), radial-gradient(at 97% 96%, hsla(38, 60%, 74%, 0.1) 0px, transparent 50%), radial-gradient(at 33% 50%, hsla(222, 67%, 73%, 0.1) 0px, transparent 50%), radial-gradient(at 79% 53%, hsla(343, 68%, 79%, 0.1) 0px, transparent 50%);
}

/* --- Performance Optimized Glass Card --- */
/* Base style for Mobile (no blur) */
.glass-card {
    background: rgba(15, 23, 42, 0.85); 
    border: 1px solid rgba(51, 65, 85, 0.5);
}

/* Apply demanding blur effect ONLY on larger screens */
@media (min-width: 768px) {
    .glass-card {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px); /* For Safari */
    }
}

/* --- Navigation --- */
.nav-link.active {
    color: #ffffff;
}

/* --- Animations --- */
.page-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Styles for Privacy Policy Page --- */
.policy-container {
    background: rgba(15, 23, 42, 0.85); /* Mobile fallback */
    border: 1px solid rgba(51, 65, 85, 0.5);
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .policy-container {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 2rem 3rem;
    }
}

.policy-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #334155;
}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-container p, .policy-container ul {
    color: #94a3b8;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.75;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.policy-container li {
    margin-left: 1.5rem;
    list-style-type: disc;
}

.policy-container a {
    color: #60a5fa;
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

