@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0B4C5F;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, #0087C0 0%, #034860 100%);
    color: white;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-header {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15vh; /* Add space for waves */
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    width: 200px;
    height: auto;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
}

.countdown-item p {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: -25px;
    left: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 50%;
    transform-origin: 50% 48%;
    animation: waterFlow 12s ease-in-out infinite;
}

.wave:nth-child(2) {
    bottom: -35px;
    opacity: 0.3;
    animation: waterFlow 14s ease-in-out infinite;
    animation-delay: -4s;
}

.wave:nth-child(3) {
    bottom: -45px;
    opacity: 0.2;
    animation: waterFlow 16s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes waterFlow {
    0%, 100% {
        transform: scale(1, 1.2);
    }
    50% {
        transform: scale(1, 0.8);
    }
}

.waves {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: 1;
}

/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
    width: 100%;
    will-change: transform;
}

.parallax > use:nth-child(1) {
    animation: move-forever 20s cubic-bezier(.55,.5,.45,.5) infinite;
    opacity: 0.6;
}

.parallax > use:nth-child(2) {
    animation: move-forever 18s cubic-bezier(.55,.5,.45,.5) infinite;
    opacity: 0.4;
}

.parallax > use:nth-child(3) {
    animation: move-forever 16s cubic-bezier(.55,.5,.45,.5) infinite;
    opacity: 0.3;
}

.parallax > use:nth-child(4) {
    animation: move-forever 14s cubic-bezier(.55,.5,.45,.5) infinite;
    opacity: 0.15;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
}

@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .waves {
        height: 40px;
        min-height: 40px;
    }
}
