body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: block;
}
header {
    background: linear-gradient(to bottom, #015dac, #0077ff); /* Aquí defines los colores del degradado */
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}
.section {
    margin: 20px 0;
}
.section h2 {
    font-family: 'LedesmitaTV Font', sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 24px;
    position: relative;
}
.section p {
    font-family: 'LedesmitaTV Font', sans-serif;
    font-weight: bold;
    display: block;
    margin: 0;
    font-size: 24px;
    text-align: center;
    position: relative;
}
.section h2 button {
    font-family: 'LedesmitaTV Font', sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}
.section h2 button:hover {
    background-color: #0056b3;
}
.section button {
    font-family: 'LedesmitaTV Font', sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}
.section button:hover {
    background-color: #0056b3;
}
.section .content {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}
.section .content .item {
    background-color: #60ceff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    scroll-snap-align: start;
}
.section .content .item img {
    max-width: 75px;
    border-radius: 5px;
}
.ad-img {
    width: 100%;
    height: auto;
}

footer {
    background: linear-gradient(to bottom, #015dac, #0077ff); /* Aquí defines los colores del degradado */
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    margin-top: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .section h2 {
        font-size: 20px;
    }
    .section p {
        font-size: 10px;
        text-align: center;
    }
    .section h2 button {
        padding: 8px 16px;
    }
    .section .content {
        flex-direction: row;
        overflow-x: auto;
    }
    .section .content .item {
        width: auto;
        max-width: 200px;
        margin: 0 auto 10px;
    }
    .container-timer button {
        padding: 4px 16px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 18px;
    }
    .section h2 {
        font-size: 18px;
        text-align: center;
    }
    .section h2 button {
        padding: 6px 12px;
        font-size: 14px;
    }
    footer {
        padding: 8px;
        font-size: 14px;
    }
}