/* Reset & Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #050505;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Background Effect (Optional subtle glow) */
.container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.date-note {
    font-size: 0.9rem;
    color: #D4AF37; /* Gold color */
    margin-bottom: 3rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    font-size: 0.8rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1rem;
    }
    
    .number {
        font-size: 1.8rem;
    }
}
