/* ===========================================
   New Year Countdown - Tool Specific Styles (Black/Gold/Silver Theme)
   =========================================== */

/* Tool Layout */
.nyc-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Main Countdown Display --- */
.nyc-countdown-display {
    background: #1f2937; /* Dark Charcoal BG */
    border: 3px solid #f59e0b; /* Deep Gold Border */
    border-radius: 16px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

.nyc-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fcd34d; /* Bright Gold */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.nyc-date {
    font-size: 1.3rem;
    font-weight: 600;
    color: #9ca3af; /* Silver/Grey */
    margin-bottom: 30px;
}

/* Timer Grid */
.nyc-timer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nyc-timer-unit {
    background: #000000; /* Black for contrast */
    border-radius: 10px;
    padding: 15px 10px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); /* Gold glow effect */
}

.nyc-timer-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff; /* White value */
    line-height: 1.1;
    font-family: monospace; /* For uniform digit size */
}

.nyc-timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fcd34d;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Countdown Over Status */
.nyc-celebration-message {
    font-size: 3rem;
    font-weight: 800;
    color: #34d399; /* Celebration Green */
    padding: 20px;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    from { color: #fcd34d; }
    to { color: #ffffff; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .nyc-timer-grid {
        gap: 8px;
        flex-wrap: wrap;
    }
    .nyc-timer-unit {
        padding: 10px;
        min-width: 45%;
    }
    .nyc-timer-value {
        font-size: 2.5rem;
    }
    .nyc-title {
        font-size: 2rem;
    }
    .nyc-celebration-message {
        font-size: 2rem;
    }
}