:root {
    --bg-black: #050505;
    --accent-purple: #a855f7;
    --deep-purple: #6b21a8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-gray: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: white;
    overflow-x: hidden;
}

.glass-card p {
    white-space: pre-line;
}

/* Dynamic Background Glow */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #3b0764 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, #1e1b4b 0%, transparent 30%);
    z-index: -1;
    opacity: 0.6;
}

/* Glass Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: 0.4s;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Dropdown Customization */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid var(--glass-border);
    min-width: 220px;
    border-radius: 12px;
    padding: 10px;
}


.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    padding: 12px;
    border-radius: 8px;
}

.dropdown-content a:hover {
    background: var(--glass);
}

/* Page Transitions */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-section.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

/* Hero & Visual Effects */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.purple-gradient-text {
    background: linear-gradient(to right, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
p { color: var(--text-gray); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin: 10px;
    border: none;
}

.cta-btn.primary {
    background: var(--accent-purple);
    color: white;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Privacy/Content Styles */
.content-container { padding: 80px 10%; }
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

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