/* Mostrar todo solo en móviles */
@media screen and (max-width: 768px) {
    #countdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #countdown {
        font-size: 28px;
        color: white;
        text-align: center;
    }

    #countdown-subtext {
        font-size: 18px;
        color: white;
        text-align: center;
        margin-top: 10px;
    }

    .tp-gateway {
        display: none;
        left: 0;
        -webkit-box-align: center;
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
        margin: 0 auto;
        padding: 20px;
        position: fixed;
        text-align: left;
        width: 100%;
        z-index: 99000;
        height: auto;
        opacity: 1;
    }

    .tp-gateway-background {
        display: none;
        position: fixed;
        top: 0;
        z-index: 99000;
        height: 100vh;
        width: 100vw;
        pointer-events: none;
        background: linear-gradient(transparent,#000);
        opacity: 0;
    }

    .tp-gateway-button {
        box-shadow: 0 4px 10px rgb(0 0 0/16%);
        display: inline-block;
        text-align: center;
        font-size: 16px;
        text-rendering: optimizeLegibility;
        font-family: -apple-system,arial,helvetica;
        font-weight: 700;
        line-height: 1.6;
        margin: 0 auto;
        min-width: 230px;
        padding: 14px 30px;
        text-decoration: none!important;
        transition: all 0.3s ease;
    }

    .tp-gateway-button:hover {
        transform: scale(1.05);
    }
}
