:root {
    --bg-color: #0a0a0c;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #ffd700;
    /* Gold accent for Eid feel */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alexandria', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('landing.png') no-repeat center center/cover fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.brand-header {
    margin-bottom: 2rem;
}

.brand-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

h1 {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sub-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    direction: ltr;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.label {
    font-size: clamp(0.7rem, 2vw, 0.875rem);
    color: var(--text-secondary);
    font-weight: 300;
}

.footer-cta {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.number {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}