.ccw-countdown-section {
    padding: 0 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ccw-title {
    color: #39a751;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.ccw-boxes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ccw-box {
    --ccw-bg-top: rgba(10,43,18,0.42);
    --ccw-bg-bottom: #0C0C0C;

    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, var(--ccw-bg-top) 0%, var(--ccw-bg-bottom) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57,167,81,0.18);
    position: relative;
    overflow: hidden;
}

.ccw-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(57,167,81,0.10) 0%, transparent 60%);
    pointer-events: none;
}

.ccw-num {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.ccw-label {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}

.ccw-expired-msg {
    margin-top: 16px;
    color: #39a751;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1024px) {
    .ccw-boxes { justify-content: center; gap: 12px; }
    .ccw-box   { width: 85px; height: 85px; }
    .ccw-num   { font-size: 32px; }
    .ccw-label { font-size: 10px; letter-spacing: 2px; }
}

/* Mobile */
@media (max-width: 767px) {
    .ccw-title  { text-align: center; font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
    .ccw-boxes  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 220px; margin: auto; }
    .ccw-box    { width: 100%; height: 85px; }
    .ccw-num    { font-size: 30px; }
    .ccw-label  { margin-top: 8px; font-size: 10px; letter-spacing: 2px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ccw-countdown-section { padding: 0; }
    .ccw-boxes { max-width: 190px; gap: 10px; }
    .ccw-box   { height: 75px; border-radius: 10px; }
    .ccw-num   { font-size: 26px; }
    .ccw-label { font-size: 9px; letter-spacing: 1px; }
}
