/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
    background-image: radial-gradient(circle at center, #ffffff 0%, #e9ecef 100%);
    color: #2b3a4a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Vertical Animated Stripes */
.stripe {
    position: fixed;
    top: 0;
    width: 30px;
    height: 100vh;
    z-index: 10;
    background: repeating-linear-gradient(45deg,
            #f7a800,
            #f7a800 20px,
            #1a2a3a 20px,
            #1a2a3a 40px);
    background-size: 100% 56.57px;
    /* Matches the diagonal repeat */
}

.left-stripe {
    left: 0;
    animation: moveDown 4s linear infinite;
}

.right-stripe {
    right: 0;
    animation: moveUp 4s linear infinite;
}

@keyframes moveDown {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 56.57px;
    }
}

@keyframes moveUp {
    from {
        background-position: 0 56.57px;
    }

    to {
        background-position: 0 0;
    }
}

/* Resto de estilos */
.background-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 10 L0 5 L5 5 L5 2 L10 2 L10 6 L15 6 L15 3 L20 3 L20 7 L25 7 L25 4 L30 4 L30 8 L35 8 L35 1 L40 1 L40 5 L45 5 L45 3 L50 3 L50 6 L55 6 L55 2 L60 2 L60 7 L65 7 L65 4 L70 4 L70 8 L75 8 L75 3 L80 3 L80 6 L85 6 L85 2 L90 2 L90 7 L95 7 L95 4 L100 4 L100 10 Z" fill="rgba(200,200,200,0.1)"/></svg>') repeat-x bottom;
    background-size: 50% 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

/* Estilos del Logo */
.logo h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #2a435d;
    letter-spacing: 2px;
    margin-bottom: -5px;
}

.logo p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #88929b;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Estilo del Título Principal */
.title {
    margin-top: 50px;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2a435d;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contenedor de la ilustración */
.image-container {
    margin: 40px auto;
    max-width: 800px;
    min-height: 100px;
}

.image-container img {
    width: 100%;
    height: auto;
    border: none;
}

/* Estilos del contador */
.progress-container {
    margin-top: 30px;
}

.progress-container p {
    color: #6c757d;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown div {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 85px;
}

.countdown strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #2a435d;
}

.countdown span {
    display: block;
    font-size: 0.8rem;
    color: #f7a800;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

/* Responsividad */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }

    .logo p {
        font-size: 0.9rem;
    }

    .title {
        font-size: 1.8rem;
        margin-top: 30px;
    }

    .countdown div {
        padding: 10px 15px;
        min-width: 70px;
    }

    .countdown strong {
        font-size: 1.5rem;
    }
}