/* ===========================================
   Sheikh Zayed Festival Countdown - Tool Specific Styles (Desert Gold, Sandstone, Royal Blue Theme)
   =========================================== */

/* Tool Layout */
.szfc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.szfc-display-box {
    background: #003366; /* Deep Royal Blue Base (Royalty/Night Sky) */
    background-image: linear-gradient(135deg, #005A9C, #003366); /* Blue Gradient */
    border: 5px solid #FFD700; /* Bright Gold Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.7);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Sandstone/Desert Pattern Background Overlay */
.szfc-display-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(205, 133, 63, 0.1), /* Sandstone */
        rgba(205, 133, 63, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.3;
    z-index: 1;
}

/* Content wrapper */
.szfc-content {
    position: relative;
    z-index: 2;
}

.szfc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFEB3B; /* Bright Gold Text */
}

.szfc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.szfc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.szfc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #CD853F; /* Sandstone/Bronze Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.szfc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0; /* Off-White Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.szfc-message {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #003366; /* Deep Blue Text */
    background: #FFD700; /* Gold background for pop */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .szfc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .szfc-countdown-grid {
        flex-wrap: wrap;
    }
    .szfc-countdown-item {
        flex: 1 1 45%; 
    }
    .szfc-time-value {
        font-size: 2.2rem;
    }
    .szfc-time-unit {
        font-size: 0.8rem;
    }
    .szfc-display-box {
        padding: 30px 10px;
    }
}