@font-face {
    font-family: 'Gotham-Black';
    src: url('/static/fonts/Gotham-Black.woff2') format('woff2'),
         url('/static/fonts/Gotham-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Gotham-Black', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    overflow: hidden;
}

.content {
    width: 80vw;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: clamp(2.5rem, 12vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;

    background: linear-gradient(90deg, #ff8a00, #e52e71, #6a00ff, #ff8a00);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-animation 5s linear infinite;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 1rem 0;
    color: #333;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: #555;
}

.mobile-h1 {
    display: none;
}

@keyframes text-animation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 1550px) {
    .desktop-h1 {
        display: none;
    }
    .mobile-h1 {
        display: block;
    }
}
