/* AP73F - Countdown estilo original: flotante bajo, sin empujar layout */
.drakion-site-frame {
    position: relative;
}
.ap73f-countdown-shell {
    position: absolute !important;
    z-index: 28;
    display: block;
    width: auto;
    margin: 0 !important;
    padding: 0;
    clear: none !important;
    float: none !important;
    pointer-events: none;
    /* Copia el comportamiento del original: flota sobre el hero, justo encima de la franja/topbar del contenido. */
    top: 328px;
    left: 0;
    right: auto;
    bottom: auto;
    transform: none;
}
.ap73f-countdown-without-slider,
.ap73f-countdown-with-slider {
    margin-top: 0 !important;
}
.ap73f-countdown-left {
    left: 0;
    right: auto;
    transform: none !important;
}
.ap73f-countdown-center {
    left: 50%;
    right: auto;
    transform: translateX(-50%) !important;
}
.ap73f-countdown-right {
    left: auto;
    right: 0;
    transform: none !important;
}
.ap73f-countdown-card {
    transform: translateZ(0);
    pointer-events: auto;
    width: 560px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
    border: 1px solid rgba(239, 139, 24, .72);
    border-radius: 4px;
    background: rgba(16, 18, 22, .88);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .48),
        0 0 12px rgba(239, 139, 24, .12),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
}
.ap73f-countdown-title {
    height: 32px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .04em;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    background: linear-gradient(180deg, rgba(34, 35, 40, .92), rgba(20, 22, 27, .92));
    border-bottom: 1px solid rgba(239, 139, 24, .48);
}
.ap73f-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ap73f-countdown-cell {
    min-height: 78px;
    padding: 12px 8px 9px;
    text-align: center;
    color: #e89528;
    font-size: 10px;
    text-transform: none;
    letter-spacing: .02em;
    border-right: 1px solid rgba(239, 139, 24, .58);
    background: linear-gradient(180deg, rgba(53, 55, 62, .58), rgba(17, 19, 24, .74));
}
.ap73f-countdown-cell:last-child {
    border-right: 0;
}
.ap73f-countdown-number {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .80);
}
.ap73f-countdown-label {
    display: block;
    color: #e89528;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .ap73f-countdown-shell {
        top: 308px;
    }
    .ap73f-countdown-card {
        width: 520px;
    }
}
@media (max-width: 991px) {
    .ap73f-countdown-shell {
        top: 288px;
    }
    .ap73f-countdown-left,
    .ap73f-countdown-center,
    .ap73f-countdown-right {
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important;
    }
    .ap73f-countdown-card {
        width: 500px;
    }
}
@media (max-width: 767px) {
    .ap73f-countdown-shell {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100%;
        margin: 10px 0 12px !important;
        display: flex;
        justify-content: center;
    }
    .ap73f-countdown-card {
        width: 100%;
    }
    .ap73f-countdown-title {
        height: 30px;
        line-height: 30px;
        font-size: 10px;
    }
    .ap73f-countdown-cell {
        min-height: 60px;
        padding-top: 8px;
        font-size: 8px;
    }
    .ap73f-countdown-number {
        font-size: 22px;
    }
    .ap73f-countdown-label {
        font-size: 8px;
    }
}
