/* --- RPG MASTER COUNTDOWN STYLES - HIGH CONTRAST --- */

.is-countdown {
    border: 2px solid #5f4d41 !important; /* Jaśniejsza ramka */
    background: #0a0807 !important; /* Głęboka czerń dla kontrastu */
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0,0,0,1), 0 0 10px rgba(245, 222, 61, 0.1);
    padding: 20px 5px !important;
}

/* CYFRY - MAKSYMALNA JASNOŚĆ */
.countdown-amount {
    display: block;
    font-size: 32px !important; /* Większe cyfry */
    font-weight: 900 !important;
    color: #ffffff !important; /* CZYSTA BIEL dla 100% widoczności */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(245, 222, 61, 0.3) !important;
    line-height: 1 !important;
}

/* NAPISY POD CYFRAMI (Days, Hours...) */
.countdown-period {
    display: block;
    font-size: 10px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #f5de3d !important; /* JASNE ZŁOTO zamiast ciemnego brązu */
    letter-spacing: 1.5px;
    margin-top: 8px;
    text-shadow: 1px 1px 2px #000;
}

/* TRYB KRYTYCZNY - OSTRZEGAWCZY */
.highlight .countdown-amount {
    color: #ff4d4d !important; /* Bardzo jasna czerwień */
    text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000 !important;
}

/* SEPARATOR (DWUKROPEK JEŚLI UŻYWASZ) */
.countdown-sep {
    color: #f5de3d !important;
    font-size: 24px;
    font-weight: 900;
}


/* RZĄD LICZNIKA */
.countdown-row {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    padding: 0 !important;
    text-align: center;
}

/* POJEDYNCZA SEKCJA (Dni, Godziny itd.) */
.countdown-section {
    display: block;
    float: none !important; /* Usuwamy float dla lepszego centrowania */
    width: 24% !important; /* Stała szerokość dla 4 sekcji */
    font-family: Verdana, Arial, sans-serif;
}

/* CYFRY - DUŻE, ZŁOTE, POGRUBIONE */
.countdown-amount {
    display: block;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #f5de3d !important;
    text-shadow: 0 2px 4px #000, 0 0 10px rgba(245, 222, 61, 0.3);
    line-height: 1 !important;
}

/* NAPISY POD CYFRAMI (Days, Hours...) */
.countdown-period {
    display: block;
    font-size: 9px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #8c7860 !important;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- TRYB KRYTYCZNY (Ostatnie 10 sekund) --- */
.highlight .countdown-amount {
    color: #ff3e3e !important;
    text-shadow: 0 0 15px #ff0000 !important;
    animation: criticalPulse 0.5s infinite alternate !important;
}

@keyframes criticalPulse {
    from { transform: scale(1); filter: brightness(1); }
    to { transform: scale(1.1); filter: brightness(1.5); }
}

/* WYŁĄCZENIE STARYCH STYLÓW HOLDING */
.countdown-holding span {
    color: #5f4d41 !important;
}
