/* GLOBAL RESETS & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: #0f0c20; /* Deep Indigo */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* LOGO CLARITY UPGRADE */
.logo-staging {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.premium-logo {
    width: 500px; /* Increased for clarity */
    max-width: 90%;
    image-rendering: -webkit-optimize-contrast; /* Keeps text in image sharp */
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.4));
}

/* TYPOGRAPHY */
.gold-text {
    color: #FFB800; /* Gold Fire Yellow */
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* BUTTONS & INDICATORS */
.sonic-indicator {
    font-size: 0.8rem;
    color: #8a82b5;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.primary-btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0f0c20;
    background: linear-gradient(135deg, #FFB800 0%, #E6A100 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.primary-btn:disabled {
    background: #2a225c;
    color: #8a82b5;
    box-shadow: none;
}

/* GRID */
.paddock-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr); /* 11 cols x 7 rows = 77 days */
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.grid-box {
    aspect-ratio: 1;
    background-color: #16122e;
    border: 1px solid #2a225c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.grid-box.gold-day {
    color: #FFB800;
    border-color: #FFB800;
    background: rgba(255, 184, 0, 0.05);
}

/* OVERLAYS */
.overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 12, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.premium-panel {
    background: #1c173a;
    padding: 50px;
    border-radius: 2px;
    border: 1px solid #FFB800;
    width: 450px;
    text-align: center;
}

.overlay-legal-footer {
    font-size: 0.7rem;
    color: #4a4275;
    margin-top: 30px;
}

footer {
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 1px solid #2a225c;
}
