:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --primary: #00ffff; /* Cyan */
    --secondary: #ff00ff; /* Magenta */
    --accent: #00ff00; /* Green */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header / Hero */
header {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}

h1.hero-title {
    font-size: 5rem;
    margin: 0;
    color: #fff;
    text-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--primary);
    animation: flicker 1.5s infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-shadow: 0 0 5px var(--secondary);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--primary);
}

.cta-button:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

/* Features */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.card h3 {
    color: var(--secondary);
    margin-top: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: #000;
    border-top: 1px solid #333;
}

footer a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

footer a:hover {
    color: #fff;
}

/* Animations */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.5;
    }
}

/* Privacy Page specific */
.legal-content h1 { text-align: center; color: var(--primary); margin-bottom: 40px;}
.legal-content h2 { color: var(--secondary); border-bottom: 1px solid #333; padding-bottom: 10px; margin-top: 30px;}
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 10px; }
