* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #ffffff;
    /* FORCE WHITE */
    overflow: hidden;
}

/* Bottom Gradient Line */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #10B981 0%, #3B82F6 50%, #8B5CF6 100%);
    /* Green -> Blue -> Purple */
    z-index: 100;
}

/* Animated background - REMOVED as per instruction */

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    z-index: 1;
    animation: fadeIn 1.5s ease-in;
    /* Removed card styles */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    max-width: 600px;
    /* Slightly larger for impact */
    width: 90%;
    height: auto;
    /* Subtle dark shadow for depth on white background */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
        /* Slightly reduced float height for subtlety */
    }
}

.coming-soon {
    color: #4a4a4a;
    /* Dark grey */
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    /* Increased spacing */
    text-transform: lowercase;
    margin-top: 1rem;
    /* Removed text-shadow as it looks messy on white */
    animation: fadeIn 2s ease-in 0.5s both;
}

/* Responsive design */
@media (max-width: 768px) {
    img {
        max-width: 300px;
    }

    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 480px) {
    img {
        max-width: 250px;
    }

    .coming-soon {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }
}