:root {
    --bg-color-dark: #020610;
    --bg-color-light: #0b192c;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-glow: rgba(0, 210, 255, 0.5);
    --accent-solid: #00d2ff;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at center, var(--bg-color-light) 0%, var(--bg-color-dark) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Effect (Radial Beams approximation) */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg 10deg,
        rgba(255, 255, 255, 0.02) 10deg 20deg
    );
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.glow-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 4s infinite alternate;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    background: rgba(2, 6, 16, 0.4);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.logo {
    max-width: 280px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-solid);
    text-decoration: none;
    border: 1px solid var(--accent-solid);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.btn:hover {
    background: var(--accent-solid);
    color: var(--bg-color-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    z-index: 1;
}

footer nav {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-primary);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Pages Specific */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: left;
}

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.legal-container h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-solid);
}

.legal-container p, .legal-container ul {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-container a {
    color: var(--accent-solid);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .content { padding: 2rem 1.5rem; }
    .logo { max-width: 220px; }
}
