@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #002D72; /* MLB Navy */
    --secondary: #BA0C2F; /* MLB Red */
    --accent: #00A3E0;
    --text-light: #F4F4F4;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --bg-dark: #0A0A0A;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/background-bg.png') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%),
                linear-gradient(135deg, rgba(0, 45, 114, 0.4) 0%, rgba(186, 12, 47, 0.2) 100%);
    z-index: -1;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.container {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(186, 12, 47, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(186, 12, 47, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(186, 12, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(186, 12, 47, 0); }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.time-box {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.time-box label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    display: block;
}

.footer-text {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeIn 2s ease-out 1s both;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    .countdown {
        gap: 0.8rem;
    }
    .time-box {
        min-width: 80px;
        padding: 1rem;
    }
    .time-box span {
        font-size: 2rem;
    }
    .logo {
        font-size: 2.5rem;
    }
    h1 {
        font-size: 1.8rem;
    }
}
