@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f1b 100%);
    color:white;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow:hidden;
}

.container {
    position: relative;
    z-index: 2;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    width: 600px;
}

.logo {
    width: 130px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

h1 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing:5px;
    margin: 0;
    font-size: 2.4rem;
    background: linear-gradient(to right, #32e6f0, #ff00ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.subtitle {
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 40px;
    font-weight: bold;
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 10px;
    border-radius: 15px;
    border-bottom: 3px solid #00f2ff;
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
}

.time-box label {
    font-size: 0.8rem;
    color: #00f2ff;
    letter-spacing: 2px;
}

/* Progress bar styling */
.event-info { width: 100%; color: #666; font-size: 0.9rem; }
.progress-bar {
    height: 7px;
    background: #333;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}
.progress-fill {
    width: 65%; /* Adjusted based on time passed since 2024 */
    height: 100%;
    background: linear-gradient(90deg, #00f2ff, #7000ff);
}