:root {
    --bg-color-start: #0A0E27;
    --bg-color-mid1: #1A1B3D;
    --bg-color-mid2: #2B2F77;
    --bg-color-end: #0B1026;
    --text-color: #ffffff;
    --accent-color: #535CE1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background: linear-gradient(180deg, var(--bg-color-start) 0%, var(--bg-color-mid1) 30%, var(--bg-color-mid2) 60%, var(--bg-color-end) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 24px;
    margin-bottom: 20px;
}

/* Navigation */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 92, 225, 0.4);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 8px;
}

footer a:hover {
    color: #fff;
}

/* Privacy Page Specifics */
.policy-content {
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.6;
}

.policy-content h2 {
    margin-top: 32px;
    color: #a5b4fc;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        /* Simple mobile hide for now, could enhance later */
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover .social-icon {
    fill: #fff;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}