/* Custom CSS for a Fancy, Modern Look */

:root {
    --primary-color: #2c3e50; /* Deep Slate */
    --accent-color: #ffc107; /* Bootstrap Warning/Yellow */
    --background-color: #1a237e; /* Deep Indigo for background */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    /* Gradient Background - Optional, but fancy */
    background-image: linear-gradient(135deg, #1a237e 0%, #304ffe 100%);
    min-height: 100vh;
    overflow: hidden; /* Prevent scrollbar from minor layout shifts */
}

/* Main Content Area */
.main-content {
    /* Full screen alignment */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 10;
}

/* Icon Styling */
.logo .icon {
    font-size: 4rem;
    color: var(--accent-color);
    /* Subtle glow/shadow for a modern effect */
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    display: block; /* Ensure text-shadow applies correctly */
}

/* Countdown Timer Styling */
#countdown {
    perspective: 1000px; /* For a 3D flip effect if desired later */
}

.time-unit {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0 10px;
    min-width: 120px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Use flexbox for inner unit alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-unit .digit {
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1; /* Tighter spacing */
    margin-bottom: 5px;
}

.time-unit .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer & Social Links */
.footer-area {
    width: 100%;
    max-width: 500px;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* Responsiveness (Bootstrap handles most, but we fine-tune) */
@media (max-width: 576px) {
    .time-unit {
        padding: 10px 15px;
        margin: 0 5px;
        min-width: 80px;
    }
    .time-unit .digit {
        font-size: 2.5rem !important; /* Override display-4 for smaller screens */
    }
    .main-content h1 {
        font-size: 2rem !important; /* Override display-3 */
    }
}