/* CSS Variables */
:root {
    --navy-dark: #0a1628;
    --navy-medium: #0d2137;
    --text-light: #8fd4f5;
    --text-white: #f8f9fa;
    --font-primary: 'Outfit', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

/* Maintenance Screen */
.maintenance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

/* Shark Animation Container */
.shark-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: swimLeftRight 6s ease-in-out infinite;
}

.shark-container lottie-player {
    width: 100%;
    height: auto;
}

/* Swimming Animation - Left to Right */
@keyframes swimLeftRight {
    0% {
        transform: translateX(-150px);
    }

    50% {
        transform: translateX(150px);
    }

    100% {
        transform: translateX(-150px);
    }
}

/* Coming Soon Text */
.coming-soon {
    margin-top: 2rem;
    text-align: center;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

/* Pulse Animation for Text */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shark-container {
        max-width: 280px;
    }

    .coming-soon-text {
        font-size: 1.5rem;
    }

    @keyframes swimLeftRight {
        0% {
            transform: translateX(-80px);
        }

        50% {
            transform: translateX(80px);
        }

        100% {
            transform: translateX(-80px);
        }
    }
}