/* CSS Reset & Variables */
:root {
    --bg-color: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --accent-color: #ffffff; /* Clean white accent for premium feel */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow: hidden; /* Prevent scrolling for full-screen feel */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Texture/Effect */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: -1;
    opacity: 0.8;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

/* Typography */
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideDown 1s ease-out forwards 0.5s;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
}

.status-badge {
    display: inline-block;
    border: 1px solid var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
}
