:root {
    --primary: #3B82F6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --bg-dark: #0A0E1A;
    --card-bg: rgba(22, 27, 34, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #F0F6FC;
    --text-muted: #8B949E;
    --glass-blur: blur(12px);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animated Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    animation: pulse 15s infinite alternate;
}

body::before {
    background: var(--primary);
    top: -10%;
    left: -10%;
}

body::after {
    background: #4F46E5;
    bottom: -10%;
    right: -10%;
}

@keyframes pulse {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.2) translate(10%, 10%);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    z-index: 1000;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--card-border);
}

.logo-text {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Hero */
.hero {
    padding: 180px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content */
.content {
    padding: 40px 0 120px;
}

.legal-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, border 0.4s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.legal-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin: 35px 0 20px;
    color: white;
}

.legal-card p,
.legal-card li {
    font-size: 1.05rem;
    color: var(--text-main);
    opacity: 0.85;
    margin-bottom: 15px;
}

.legal-card ul {
    padding-left: 20px;
    list-style: none;
}

.legal-card ul li::before {
    content: '•';
    color: var(--primary);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-weight: bold;
}

.contact-email {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: inline-block;
    margin-top: 10px;
}

/* Footer */
.footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .legal-card {
        padding: 30px;
    }

    .hero {
        padding-top: 140px;
    }
}