* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background-image: url('coming_soon_desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title .event-name {
    font-size: 2.2rem;
}

.title .event-date {
    font-size: 1.8rem;
    opacity: 0.9;
}

.title .school {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.attribution {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.attribution a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.attribution a:hover {
    color: #ffffff;
}

/* Ocean waves */
.ocean {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    animation: wave 25s linear infinite;
}

.wave:nth-child(2) {
    bottom: 10px;
    animation: wave 15s linear infinite reverse;
}

/* Fish animations */
.fish {
    position: absolute;
    width: 100px;
    height: 50px;
    animation: swim 20s linear infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.fish1 {
    top: 20%;
    animation-delay: 0s;
}

.fish2 {
    top: 40%;
    animation-delay: -7s;
    transform: scale(0.8);
}

.fish3 {
    top: 60%;
    animation-delay: -14s;
    transform: scale(0.6);
}

/* Bubbles */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rise 10s linear infinite;
}

.bubble1 {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.bubble2 {
    width: 15px;
    height: 15px;
    left: 30%;
    animation-delay: -3s;
}

.bubble3 {
    width: 25px;
    height: 25px;
    left: 50%;
    animation-delay: -6s;
}

/* Animations */
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes swim {
    0% {
        transform: translateX(-100vw) rotate(0deg);
    }
    100% {
        transform: translateX(100vw) rotate(360deg);
    }
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-image: url('coming_soon_mobile.png');
    }

    .coming-soon {
        font-size: 2.5rem;
    }
    
    .title h2 {
        font-size: 1.8rem;
    }

    .title .event-name {
        font-size: 1.8rem;
    }

    .title .event-date {
        font-size: 1.5rem;
    }
    
    .title .school {
        font-size: 1rem;
    }
    
    .content {
        padding: 2rem;
        margin: 1rem;
    }

    .attribution {
        bottom: 5px;
        right: 5px;
    }

    .attribution a {
        font-size: 0.7rem;
    }

    .fish {
        width: 80px;
        height: 40px;
    }
} 