:root {
    --bg-dark: #07070a;
    --text-main: #ffffff;
    --text-muted: #9ba3af;
    --color-red: #f8314e;
    --color-blue: #6d93d8;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Radar Effect from Theme */
.radar-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 500px; height: 500px; }
.ring-3 { width: 700px; height: 700px; }
.ring-4 { width: 900px; height: 900px; }

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Center Stage Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-stage {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s ease-out;
    width: 100%;
}

.main-logo {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.1));
}

.logo-fallback {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1;
}

.text-red { color: var(--color-red); }
.text-glow { color: #fff; text-shadow: 0 0 25px var(--color-blue); font-style: italic; }

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, #f8314e 0%, #a6c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

@media (max-width: 768px) {
    .main-logo { max-width: 90%; }
    .hero-title { font-size: 1.8rem; letter-spacing: 0.1em; }
    .logo-fallback { font-size: 4rem; }
}
