/* Add custom CSS styles below */ 
.s-count-down-boxed .s-count-down-item{
background-color: var(--atc-bg-color);
color: var(--atc-text-color);
}

.s-count-down-item-label {
color:var(--atc-text-color);}

.s-count-down-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-family: "Tajawal", sans-serif;
    list-style: none;
    padding: 0;
}

.s-count-down-item {
    background: #baf2e5; /* لون الخلفية الأساسي */
    color: #2c3e50;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 70px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-count-down-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* تحسين الأرقام */
.s-count-down-item-value {
    font-size: 28px;
    display: block;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* تحسين النصوص الصغيرة */
.s-count-down-item-label {
    font-size: 14px;
    opacity: 0.8;
}

/* تأثير اهتزاز عند آخر دقيقة */
.s-count-down-item:nth-child(2) .s-count-down-item-value {
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(0); }
    100% { transform: translateX(3px); }
}

 :not(.dark) div.container .main-content .rating-header  {
background-color: var(--custom-color1) !important;
    color: var(--custom-color2) !important;
}