/* Global Reset & Base Styles */
html {
    scroll-behavior: smooth;
    height: 100%;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: white;
    background-color: #05070a; 
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Dynamic Blurred Background */
.home-bg::before {
    content: "";
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), #05070a), url('Background.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px); 
    z-index: -1;
    will-change: transform;
    transform: scale(1.1); 
}

/* Navigation Bar */
nav {
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    width: 100%; 
    top: 0; 
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 40px;
    transition: transform 0.4s ease;
}

.brand-name {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.main-title {
    font-size: clamp(2.5rem, 12vw, 7rem);
    font-weight: 900;
    border: 4px solid white;
    padding: 20px 70px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Primary Button Style */
.btn-primary {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

/* Info & Policy Sections */
.info-section {
    padding: 160px 5% 100px; 
    max-width: 900px;
    margin: 0 auto;
}

.info-card, .policy-paper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 24px;
}

.info-card { padding: 40px; margin-bottom: 40px; }

.policy-paper { padding: 60px; border-radius: 32px; }

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.effective-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.policy-content p, .policy-content li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Animations */
@keyframes popIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-pop { 
    animation: popIn 1s cubic-bezier(0.2, 1, 0.3, 1) forwards; 
}

/* Footer Styles */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.4;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-link:hover { opacity: 1; }

/* Responsive Adjustments - RE-MOVED MOBILE BUTTON TEXT */
@media (max-width: 768px) {
    .nav-links { 
        gap: 15px;
    }
    
    .main-title { 
        padding: 15px 40px; 
        border-width: 3px;
        letter-spacing: 0;
    }

    .policy-header h1 { font-size: 2rem; }
    .policy-paper { padding: 30px; }
}
