:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --accent: #ff3366;
    --accent-glow: rgba(255, 51, 102, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Animated Background Gradients */
.ambient-light {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.6;
    animation: pulse 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

.container {
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Three Stripes Motif (Adidas inspiration) */
.stripes-container {
    display: flex;
    gap: 8px;
    margin-bottom: -1rem;
    transform: skew(-20deg);
}

.stripe {
    width: 12px;
    height: 40px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stripe:nth-child(1) { height: 25px; animation-delay: 0.1s; }
.stripe:nth-child(2) { height: 35px; animation-delay: 0.2s; }
.stripe:nth-child(3) { height: 45px; animation-delay: 0.3s; }

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

/* The Logo / Brand Name */
h1.brand-name {
    font-family: "Helvetica Neue", Helvetica, "Inter", sans-serif;
    font-weight: 200;
    font-size: 6rem;
    letter-spacing: 0px;
    color: var(--text-primary);
    text-transform: lowercase;
    margin: 0;
    line-height: 1;
    position: relative;
    animation: reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

@keyframes reveal {
    from { clip-path: inset(100% 0 0 0); transform: translateY(20px); }
    to { clip-path: inset(0 0 0 0); transform: translateY(0); }
}

p.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeIn 1.5s ease both;
    animation-delay: 1s;
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legacy-link {
    font-size: 0.75rem;
    color: #888;
    margin-top: -0.5rem;
    animation: fadeIn 1.5s ease both;
    animation-delay: 1.1s;
}

.legacy-link a {
    color: #88ccff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.legacy-link a:hover {
    color: #baddff;
    text-shadow: 0 0 8px rgba(136, 204, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    h1.brand-name {
        font-size: 4rem;
        letter-spacing: -2px;
    }
}
