/* ===========================================
   Pakistan Defence Day Countdown - Tool Specific Styles (Olive Green/Black/White Theme)
   =========================================== */

/* Tool Layout */
.pddc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.pddc-display-box {
    background: #212121; /* Deep Black/Charcoal Base (Solemn tone) */
    background-image: linear-gradient(135deg, #37474f, #212121); /* Dark Gray/Black Gradient */
    border: 5px solid #8bc34a; /* Olive Green/Military Green Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    color: white;
}

.pddc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e8eaf6; /* Pale White/Blue for contrast */
}

.pddc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.pddc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.pddc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #c8e6c9; /* Light Pale Green/White Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pddc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #f1f8e9; /* Off-White Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.pddc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #212121; /* Deep Black Text */
    background: #8bc34a; /* Olive Green background for pop */
    padding: 10px;
    border-radius: 8px;
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pddc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .pddc-countdown-grid {
        flex-wrap: wrap;
    }
    .pddc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .pddc-time-value {
        font-size: 2.2rem;
    }
    .pddc-time-unit {
        font-size: 0.8rem;
    }
    .pddc-display-box {
        padding: 30px 10px;
    }
}