/* styles.css */
body {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    font-family: "Orbitron", sans-serif;
    margin: 0;
    padding: 0;
}

.banner-img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.countdown-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-direction: column;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
}

.gallery-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-title {
    text-shadow: 0 0 10px cyan;
    margin-bottom: 2rem;
}

.gallery-img {
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.countdown-item {
    font-size: 2.5rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.75;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px cyan;
}