body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #F5E1C2;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 10vh;
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffcf6;
    padding: 0.75rem;
    color: #3a3837;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.banner a {
    color: #3a3837;
    text-decoration: none;
    font-family: bouba-round-variable, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid #3a3837;
    padding-bottom: 0.5px;
}

.banner a:hover {
    opacity: 0.9;
}

/* .banner a::after {
    content: "→";
    font-size: 1.2em;
    transition: transform 0.2s ease;
} */

.banner a:hover::after {
    transform: translateX(4px);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    object-fit: cover;
}

.smoke {
    position: absolute;
    top: 16%;
    left: 28%;
    width: 15%;
    height: 15%;
    object-fit: cover;
    pointer-events: none;
}

.content {
    padding: 0 1rem;
    /* margin-top: 1rem; */
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #615650;
    font-family: luminance, serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.coming-soon {
    font-size: 1.0rem;
    color: #49403b;
    margin-top: 1rem;
    font-family: bouba-round-variable, sans-serif;
    opacity: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.footer-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.footer-btn svg {
    color: #F5E1C2;
    width: 30px;
    height: 30px;
    transition: color 0.2s ease;
}

.footer-btn:hover svg {
    color: #f78766;
    opacity: 0.6;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 10px 30px rgba(244, 92, 64, 0.64));
    }

    50% {
        transform: translateY(-10px) scale(1.01);
        filter: drop-shadow(0 10px 50px rgba(244, 92, 64, 1.0));
    }
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
    .logo {
        max-width: 90vw;
        width: 100%;
        height: auto;
    }

    h1 {
        font-size: 3.5rem;
    }

    .coming-soon {
        font-size: 1.25rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
    .logo {
        max-width: 85vw;
        width: 100%;
        height: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .banner {
        padding: 0.5rem;
    }

    .banner a {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 360px) {
    .logo {
        max-width: 80vw;
        width: 100%;
        height: auto;
    }

    h1 {
        font-size: 2rem;
    }
}