@font-face {
    font-family: 'Obviously Wide Blk';
    src: url('static/fonts/Obviously/OTF/Obviously-WideBlk.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Pro';
    src: url('static/fonts/Bebas Neue Pro/Bebas-Neue-Pro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Pro Bold';
    src: url('static/fonts/Bebas Neue Pro/Bebas-Neue-Pro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --sc-red: #F25244;
    --sc-yellow: #F2CB05;
    --sc-black: #000000;
    --sc-white: #FFFFFF;
}

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

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--sc-black) 100%);
    color: var(--sc-white);
    font-family: 'Bebas Neue Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    text-align: center;
    padding: 20px 0;
}

.container {
    width: 100%;
    max-width: 90%; /* Use percentage to avoid edge hitting */
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.logo-container svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.coming-soon {
    font-family: 'Obviously Wide Blk', sans-serif;
    /* Significant reduction to ensure it fits in one line on all screens */
    font-size: clamp(1.2rem, 6.5vw, 3.8rem);
    color: var(--sc-yellow);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    width: 100%;
    white-space: nowrap; /* Force single line */
}

.subtext {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: clamp(0.9rem, 4vw, 1.6rem);
    color: var(--sc-white);
    opacity: 0.9;
    max-width: 100%;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin: 0 auto;
}

.highlight {
    color: var(--sc-red);
    font-family: 'Bebas Neue Pro Bold', sans-serif;
}

.footer {
    padding: 2rem 0;
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific fix for very small screens */
@media (max-width: 400px) {
    .coming-soon {
        font-size: clamp(1.1rem, 8.5vw, 1.6rem);
        letter-spacing: 0;
    }
    .logo-container svg {
        max-width: 220px;
    }
}
