body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    gap: 4rem;
}

.content {
    flex: 1;
    text-align: left;
}

h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 6rem;
    /* Adjusted slightly for "Under Construction" length if needed, or keep 8rem */
    margin: 0;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5rem;
    margin: 10px 0 20px;
    color: #e0e0e0;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 450px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #fca5a5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .content {
        text-align: center;
    }

    h1 {
        font-size: 4rem;
    }

    p {
        margin: 0 auto 2rem;
    }
}