@charset "UTF-8";

:root {
    --rg-red: #e30711;
    --rg-navy: #142144;
    --rg-text: #ffffff;
    --rg-body: #101c38;
    --rg-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--rg-body);
    color: var(--rg-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.coming-soon {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background:
        radial-gradient(ellipse 78% 58% at 18% 72%, rgba(227, 7, 17, 0.34) 0%, rgba(227, 7, 17, 0.16) 36%, transparent 74%),
        radial-gradient(ellipse 52% 42% at 88% 58%, rgba(193, 5, 14, 0.18) 0%, transparent 68%),
        var(--rg-navy);
}

.coming-soon__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fade-up 0.8s var(--rg-ease) both;
}

.coming-soon__logo {
    width: min(320px, 68vw);
    height: auto;
    margin-bottom: 40px;
}

.coming-soon__title {
    position: relative;
    margin: 0;
    padding-top: 40px;
    font-size: clamp(0.95rem, 1.8vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rg-text);
}

.coming-soon__title b {
    font-weight: 700;
    color: var(--rg-red);
}

.coming-soon__title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(220px, 78%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(227, 6, 19, 0.85) 14%, #e30613 38%, #e30613 62%, rgba(227, 6, 19, 0.85) 86%, transparent 100%);
    filter: drop-shadow(0 0 3px rgba(227, 6, 19, 0.45));
    transform: translateX(-50%);
    will-change: transform;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .coming-soon {
        padding: 36px 20px;
    }

    .coming-soon__logo {
        margin-bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon__inner {
        animation: none;
    }
}
