:root {
    --bg-color: #050505;
    --surface-color: #0F0F0F;
    --gold: #D4A843;
    --gold-dark: #A8842F;
    --grid-line: #1A1A1A;
    --grid-accent: #222222;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base grid pattern */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    opacity: 0.5;
}

/* Accent lines every 4th cell (160px) */
.grid-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 160px 160px;
    background-image:
        linear-gradient(to right, var(--grid-accent) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-accent) 1px, transparent 1px);
    opacity: 0.8;
}

/* Removed subtle gold glow center-top based on user preference */

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    padding: 1rem;
    margin-bottom: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4))
            drop-shadow(0 0 40px rgba(212, 168, 67, 0.25))
            drop-shadow(0 0 100px rgba(212, 168, 67, 0.15))
            drop-shadow(0 0 200px rgba(212, 168, 67, 0.08));
    animation: fadeIn 1.5s ease-out, pulse 6s cubic-bezier(0.4, 0, 0.6, 1) 2s infinite;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4))
                        drop-shadow(0 0 40px rgba(212, 168, 67, 0.25))
                        drop-shadow(0 0 100px rgba(212, 168, 67, 0.15))
                        drop-shadow(0 0 200px rgba(212, 168, 67, 0.08)); }
    50% {      filter: drop-shadow(0 0 12px rgba(212, 168, 67, 0.55))
                        drop-shadow(0 0 70px rgba(212, 168, 67, 0.35))
                        drop-shadow(0 0 160px rgba(212, 168, 67, 0.2))
                        drop-shadow(0 0 300px rgba(212, 168, 67, 0.1)); }
}

.coming-soon {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.5s both;
}

.subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05rem;
    max-width: 600px;
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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