:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.4);
    --secondary-text: #a0a0a0;
    --card-bg: #1a1a1a;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links a {
    margin-left: 2rem;
    color: var(--secondary-text);
    font-weight: 400;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.glowing-orb {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(50px);
    animation: pulse 5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
    50% { opacity: 0.8; transform: translateY(-50%) scale(1.1); }
    100% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
}

/* Content Page (Privacy Policy) */
.content-page {
    padding: 8rem 10% 4rem;
    min-height: 80vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

section p, section li {
    color: #d0d0d0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

section ul {
    list-style-position: inside;
    margin-left: 1rem;
}

section a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 2rem 5%;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.footer-links a {
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .glowing-orb {
        width: 300px;
        height: 300px;
        top: 20%;
        right: 50%;
        transform: translate(50%, -50%);
    }
    
    .content-page {
        padding: 6rem 5% 2rem;
    }
}
