/* Time-specific styles extending the main styles.css */

.time-container {
    background: #1c1c1e;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-time {
    text-align: center;
}

.time-display {
    font-size: 4.5rem;
    font-weight: 200;
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.date-display {
    font-size: 1.25rem;
    font-weight: 400;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .time-display {
        font-size: 3.5rem;
        letter-spacing: -1.5px;
    }
    
    .date-display {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .time-display {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .date-display {
        font-size: 0.9rem;
    }
    
    .time-container {
        min-height: 540px;
    }
}
