/* ===========================================
   Dussehra Countdown - Tool Specific Styles (Gold, Red, Navy Blue Theme)
   =========================================== */

/* Tool Layout */
.dc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.dc-display-box {
    background: #0D47A1; /* Deep Navy Blue Base (Symbolizing Divinity) */
    background-image: linear-gradient(135deg, #1976D2, #0D47A1); /* Blue Gradient */
    border: 5px solid #FFC107; /* Gold/Amber Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.6);
    color: white;
}

.dc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFEB3B; /* Bright Yellow/Gold Text */
}

.dc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.dc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.dc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #FF4500; /* Vibrant Red/Orange Value (Symbolizing Victory) */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0; /* Off-White Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.dc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0D47A1; /* Navy Blue Text */
    background: #FFC107; /* Gold background for pop */
    padding: 10px;
    border-radius: 8px;
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .dc-countdown-grid {
        flex-wrap: wrap;
    }
    .dc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .dc-time-value {
        font-size: 2.2rem;
    }
    .dc-time-unit {
        font-size: 0.8rem;
    }
    .dc-display-box {
        padding: 30px 10px;
    }
}