:root {
    --app-font-main:
        system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --app-font-condensed: "Arial Narrow", "Roboto Condensed", sans-serif;
    --color-primary: #ff0066;
    --color-primary-light: #ff4580;
    --color-primary-soft: #f62765;
    --color-primary-100: rgba(255, 0, 102, 1);
    --color-primary-30: rgba(255, 0, 102, 0.3);
    --color-primary-0: rgba(255, 0, 102, 0);
    --color-secondary: #0059ff;
    --color-secondary-light: #367cff;
    --color-accent-yellow: #ffd900;
    --color-accent-yellow-bright: #fffb00;
    --color-accent-green: #00ffa6;
    --color-accent-cyan: #01f3d7;
    --color-accent-indigo: #4000ff;
    --color-accent-indigo-deep: #0800ff;
    --color-neutral-900: #0e0e0e;
    --color-neutral-800: #1d1d1d;
    --color-neutral-900-20: rgba(14, 14, 14, 0.2);
    --color-white: #ffffff;
    --color-white-60: rgba(255, 255, 255, 0.6);
    --color-black: #000000;
}

html.cc-fonts-enabled {
    --app-font-main: "transducer", sans-serif;
    --app-font-condensed: "transducer-condensed", sans-serif;
}

body {
    font-family: var(--app-font-main);
    font-size: 1rem;
    line-height: 1.5;
}

html.vice-overlay-open,
body.vice-overlay-open {
    overflow: hidden;
}

/*buttons*/
.ticket-btn,
.btn {
    background-color: var(--color-secondary);
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-align: center;
    color: var(--color-white);
    border-radius: 50px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.1s ease;

    &:hover {
        background-color: var(--color-secondary-light);
        cursor: pointer;
    }
}

/*typography*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-white);
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 3rem;
}

.title-huge {
    white-space: nowrap;
    font-size: 10rem;
    line-height: 0.85;
    font-family: "transducer-condensed", sans-serif;
}

h3 {
    font-size: 2rem;
    line-height: 1.2;
}

h4 {
    font-size: 1.3rem;
    line-height: 1.3;
}

p,
li,
span {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

strong {
    font-weight: inherit;
}

.tilt-card {
    transform-style: preserve-3d;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    will-change: transform;
}

.icon-rotate {
    transition: transform 0.2s ease;
}

.icon-rotate:hover {
    transform: rotate(10deg);
}

@media (prefers-reduced-motion: reduce) {
    .tilt-card {
        transform: none;
        transition: none;
    }

    .icon-rotate {
        transform: none;
        transition: none;
    }
}

/* reveal animations */

.js-reveal-ready {

    .reveal-section,
    .reveal-item {
        filter: blur(8px);
        opacity: 0;
        will-change: opacity, transform, filter;
    }

    .reveal-section {
        transform: translate3d(0, 42px, 0) scale(0.985);
        transition:
            opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
            transform 1s cubic-bezier(0.22, 1, 0.36, 1),
            filter 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-item {
        transform: translate3d(0, 26px, 0);
        transition:
            opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal-item.tilt-card {
        transform: none;
    }

    .reveal-section.is-revealed,
    .reveal-item.is-revealed {
        filter: blur(0);
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .js-reveal-ready .reveal-section,
    .js-reveal-ready .reveal-item {
        filter: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*page*/

header {
    display: flex;
    justify-content: end;
    padding: 20px;
    height: auto;
    width: 100%;
    position: absolute;

    .ticket-btn {
        background-color: var(--color-neutral-800);
        font-weight: 400;
    }
}

.legal-page {
    background-color: var(--color-neutral-900);
    min-height: 100svh;
    color: var(--color-white);
}

.legal-page header {
    background-color: var(--color-neutral-900);
    justify-content: center;
    position: static;
}

.legal-page header .ticket-btn {
    text-decoration: none;
}

.legal-hero {
    background: url(/assets/img/raster-2.png), var(--color-primary);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.legal-hero .container {
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    max-width: 56.25rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white-60);
}

.legal-lead {
    margin: 1rem auto 0;
    max-width: 40rem;
}

.legal-page .legal-hero h1,
.legal-page .legal-hero .legal-eyebrow,
.legal-page .legal-hero .legal-lead {
    color: var(--color-black);
}

.legal-content {
    background-color: var(--color-neutral-900);
}

.legal-content .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
    max-width: 56.25rem;
}

.legal-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-content h2 {
    overflow-wrap: anywhere;
    word-break: break-word;
    color: var(--color-accent-yellow-bright);
}

.legal-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: var(--color-white);
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.legal-note {
    font-size: 0.95rem;
    color: var(--color-white-60);
}

.legal-page footer .legal-information span,
.legal-page footer .legal-information a {
    color: var(--color-black);
}

.legal-page {
    background-color: var(--color-neutral-900);
    min-height: 100svh;
    color: var(--color-white);

    header {
        background-color: var(--color-neutral-900);
        justify-content: center;
        position: static;

        .ticket-btn {
            text-decoration: none;
        }
    }

    .legal-hero {
        background: url(/assets/img/raster-2.png), var(--color-primary);
        background-position: center, center;
        background-repeat: no-repeat, no-repeat;
        background-size: cover, cover;

        .container {
            margin: 0 auto;
            padding: 6rem 1.5rem 3rem;
            max-width: 56.25rem;
            text-align: center;

            h1 {
                font-size: clamp(2.5rem, 6vw, 4rem);
                overflow-wrap: anywhere;
                word-break: break-word;
            }

            .legal-eyebrow {
                display: inline-block;
                font-size: 0.9rem;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: var(--color-white-60);
            }

            .legal-lead {
                margin: 1rem auto 0;
                max-width: 40rem;
            }
        }

        h1,
        .legal-eyebrow,
        .legal-lead {
            color: var(--color-black);
        }

        .legal-content {
            background-color: var(--color-neutral-900);

            .container {
                display: flex;
                flex-direction: column;
                gap: 2.5rem;
                margin: 0 auto;
                padding: 3rem 1.5rem 6rem;
                max-width: 56.25rem;

                .legal-block {
                    display: flex;
                    flex-direction: column;
                    gap: 0.75rem;

                    h2 {
                        overflow-wrap: anywhere;
                        word-break: break-word;
                        color: var(--color-accent-yellow-bright);
                    }

                    h3 {
                        font-size: 1.5rem;
                        line-height: 1.3;
                        overflow-wrap: anywhere;
                        word-break: break-word;
                        color: var(--color-white);
                    }

                    .legal-list {
                        display: flex;
                        flex-direction: column;
                        gap: 0.5rem;
                        padding-left: 1.25rem;
                        list-style: disc;
                    }

                    .legal-note {
                        font-size: 0.95rem;
                        color: var(--color-white-60);
                    }
                }
            }
        }
    }

    footer .legal-information span,
    footer .legal-information a {
        color: var(--color-black);
    }
}

main {
    background-color: var(--color-primary);
    height: 100svh;
    min-height: 620px;

    .container {
        background:
            linear-gradient(0deg,
                var(--color-primary-100) 0%,
                var(--color-primary-0) 100%),
            url(/assets/img/render-1.png), url(/assets/img/raster-1.png);
        background-position: center, top, center;
        background-repeat: no-repeat, no-repeat;
        background-size: cover, cover;
        height: 100%;
        width: 100%;

        .logo-container,
        #myVideo {
            position: absolute;
        }

        .logo-container {
            height: 100%;
            width: 100%;

            h1 {
                width: 100%;
                text-align: center;
                left: 50%;
                position: absolute;
                top: 50%;
                z-index: 2;
                transform: translate(-50%, -50%);
            }

            #myVideo {
                height: 100%;
                width: 100%;
                z-index: 1;
                scale: 0.7;
            }
        }

        .details-container {
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: end;
            gap: 20px;
            padding-bottom: 30px;
            height: 100%;

            .location {
                font-size: 1.5rem;
                color: var(--color-white);
            }
        }
    }
}

.sponsor-section {
    --sponsor-duration: 30s;
    --sponsor-gap: 80px;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    height: auto;
    width: 100%;
    overflow: hidden;

    .sponsor-slider {
        width: 100%;
        overflow: hidden;
    }

    .sponsor-track {
        align-items: center;
        display: flex;
        width: max-content;
        animation: none;
        will-change: transform;
    }

    .sponsor-track[data-cloned="true"] {
        animation: sponsor-scroll var(--sponsor-duration) linear infinite;
    }

    .sponsor-list {
        align-items: center;
        display: flex;
        flex: 0 0 auto;
        flex-wrap: nowrap;
        gap: var(--sponsor-gap);
        padding-right: var(--sponsor-gap);
        width: max-content;
    }

    img {
        display: block;
        flex: 0 0 auto;
        height: 40px;
        max-height: 40px;
        max-width: 180px;
        width: auto;
        object-fit: contain;
    }
}

.sponsor-grid-section {
    background-color: var(--color-black);
    padding: 80px 20px;

    .container {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        margin: 0 auto;
        max-width: 1200px;
        width: 100%;
    }

    h2 {
        grid-column: 1 / -1;
        margin: 0 0 20px;
        text-align: center;
    }

    .sponsor-grid-item {
        background-color: rgba(255, 255, 255, 0.03);
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 24px;
        min-height: 110px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        transition:
            border-color 0.2s ease,
            background-color 0.2s ease;
    }

    .sponsor-grid-item:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.35);
    }

    img {
        display: block;
        height: auto;
        max-height: 40px;
        max-width: 150px;
        width: 100%;
        object-fit: contain;
    }
}

@keyframes sponsor-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--sponsor-shift, 50%)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-section {
        .sponsor-track {
            animation: none;
            transform: translateX(0);
        }
    }
}

.introduction-section {
    background: url(/assets/img/arrows.png), var(--color-accent-yellow);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 200px 0;

    .container {
        max-width: 800px;
        text-align: center;

        span,
        p {
            color: var(--color-black);
        }

        h2 {
            margin: 30px 0;
            color: var(--color-black);
        }
    }
}

.qualification-section {
    background:
        url(/assets/img/render-2.png), url(/assets/img/raster-2.png),
        var(--color-neutral-900);
    background-position:
        bottom right,
        center,
        center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain, cover, cover;
    display: flex;
    justify-content: center;
    padding: 200px 0;
    width: 100%;

    .container {
        max-width: 1200px;
        width: 100%;
        text-align: justify;
        color: var(--color-white);
        padding: 20px;

        p {
            padding: 40px 0;
            max-width: 550px;
        }

        .btn-container {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }
    }
}

.format-section {
    background: url(assets/img/arrows.png), var(--color-accent-indigo);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    display: flex;
    justify-content: center;

    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        padding: 100px 20px;
        max-width: 1200px;
        width: 100%;

        .card {
            background: var(--color-black);
            display: flex;
            flex: 1 1 260px;
            flex-direction: column;
            gap: 30px;
            padding: 30px;
            border-radius: 20px;

            ul {
                display: flex;
                flex-direction: column;
                gap: 20px;
                list-style: inside;

                li {
                    color: var(--color-white);
                }
            }
        }

        .card-1 h2 {
            color: var(--color-accent-yellow-bright);
        }

        .card-2 h2 {
            color: var(--color-primary-soft);
        }

        .card-3 h2 {
            color: var(--color-accent-green);
        }
    }
}

.vice-city-section {
    background: url(assets/img/raster-1.png), var(--color-accent-indigo-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 100px 20px;

    .container {
        max-width: 1200px;
        width: 100%;
    }

    .vice-city-hero {
        background: var(--color-black);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: end;
        width: 100%;
        gap: 50px;
        padding: 40px;
        border-radius: 24px;
    }

    .vice-city-open-btn {
        background-color: #f2d34f;
        border: 0;
        border-radius: 999px;
        bottom: 24px;
        color: #0a0a0a;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 14px 28px;
        transition:
            background-color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.2s ease;
    }

    .vice-city-open-btn:hover {
        background-color: #ffe27a;
        box-shadow: 0 12px 24px rgba(242, 211, 79, 0.2);
        transform: translateY(-1px);
    }
}

.vice-city-overlay {
    background-color: #ffffff;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    visibility: hidden;
    z-index: 4000;
}

.vice-city-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.vice-city-back-btn {
    background-color: #111111;
    border: 1px solid #111111;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    left: 24px;
    padding: 12px 20px;
    position: absolute;
    top: 24px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    z-index: 2;
}

.vice-city-back-btn:hover {
    background-color: #ffffff;
    border-color: #111111;
    color: #111111;
}

.vice-city-overlay-scroll {
    display: flex;
    align-items: stretch;
    gap: clamp(20px, 2.4vw, 40px);
    height: 100svh;
    overscroll-behavior: contain;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px;
    scroll-padding-left: 0;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
}

.vice-city-overlay-scroll::-webkit-scrollbar {
    height: 10px;
}

.vice-city-overlay-scroll::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 999px;
}

.vice-city-overlay-scroll::-webkit-scrollbar-track {
    background: #ececec;
}

.vice-city-panel {
    background-color: transparent;
    flex: 0 0 clamp(900px, 122vw, 1600px);
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(260px, 42%);
    align-items: center;
    column-gap: clamp(18px, 3vw, 56px);
    min-height: 100svh;
    padding: clamp(84px, 10svh, 112px) clamp(18px, 5vw, 72px) clamp(26px, 4svh, 40px);
    scroll-snap-align: none;
    width: auto;
}

.vice-city-panel-content {
    max-width: 65ch;
    max-height: calc(100svh - clamp(120px, 14svh, 170px));
    min-width: 0;
    overflow-y: auto;
    padding-right: 12px;
    align-self: center;
    -webkit-overflow-scrolling: touch;
}

.vice-city-panel-content::-webkit-scrollbar {
    width: 8px;
}

.vice-city-panel-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
}

.vice-city-panel h2 {
    font-family: "transducer-condensed", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.8rem) !important;
    color: #111111;
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.vice-city-panel h3 {
    font-family: "transducer", sans-serif;
    color: #be9f55;
    font-weight: 500;
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    line-height: 1.35;
    margin: 20px 0 16px;
}

.vice-city-panel p {
    color: #222222;
    line-height: 1.55;
    max-width: 60ch;
}

.vice-city-panel ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    margin-top: 16px;
    padding-left: 20px;
}

.vice-city-panel li {
    color: #222222;
    font-size: 1rem;
    line-height: 1.5;
}

.vice-city-panel li a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.federlight-logo {
    width: 100%;
    max-width: min(100%, 400px);
}

.vice-city-panel .branding-image {
    border: 0;
    align-self: center;
    height: auto;
    justify-self: end;
    max-width: 800px;
    max-height: calc(100svh - clamp(120px, 14svh, 170px));
    object-fit: contain;
    width: 100%;
}

.vice-city-panel--contact {
    flex: 0 0 auto;
    grid-template-columns: minmax(280px, 450px);
    column-gap: 0;
    padding-right: clamp(8px, 2vw, 24px);
}

.vice-city-panel--contact .vice-city-panel-content {
    max-width: 100%;
}

footer {
    background: url(/assets/img/dot-raster-1.svg) var(--color-primary);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;

    .container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 150px;
        padding: 150px 20px 20px 20px !important;

        .footer-logo {
            max-width: 488px;
            width: 100%;
        }

        ul {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
        }

        .icon-list {
            a {
                display: inline-block;
                padding: 20px;
            }
        }

        .legal-information {
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;

            .legal-copy span,
            .legal-links a,
            .legal-links a span {
                color: var(--color-black);
            }

            .legal-links {
                align-items: center;
                display: flex;
                gap: 30px;
            }
        }
    }
}

.swiper {
    background: url(/assets/img/raster-2.png), var(--color-neutral-900);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    height: 100%;
    min-height: 900px;
    width: 100%;

    .parallax-bg {
        background: url(/assets/img/knifes.png);
        background-position: center Top;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
        height: 100%;
        width: 130%;
        left: 0;
        position: absolute;
        top: 0;
    }

    .swiper-slide {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        height: 100% !important;
        min-height: 900px;
        font-size: 1.125rem;
        color: var(--color-white);
        cursor: grab;

        .swiper-content-wrapper {
            background: var(--color-neutral-900-20);
            padding: 100px;
            border-radius: 30px;
            backdrop-filter: blur(150px);
        }

        p {
            margin: 0 auto;
            max-width: 800px;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.8;
        }

        .title {
            margin-top: 30px;
            font-size: 1.2rem;
            font-weight: 400;
        }

        .subtitle {
            margin-top: 10px;
            font-size: 1rem;
            font-weight: 200;
            color: var(--color-white-60);
        }

        .sponsor-container {
            align-items: end;
            display: flex;
            justify-content: space-between;
            margin-top: 30px;

            .sponsor-logo-container {
                margin-top: 20px;
                height: auto;
                max-width: 200px;
                width: 100%;

                img {
                    height: auto;
                    width: 100%;
                }
            }
        }
    }

    .swiper-pagination-bullet {
        background: var(--color-primary-30);
        margin: 0 6px !important;
        height: 12px;
        width: 12px;
        opacity: 1;
        transition: all 0.25s ease;
    }

    .swiper-pagination-bullet-active {
        background: var(--color-primary);
        width: 24px;
        border-radius: 999px;
    }
}

.about-section {
    width: 100%;

    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;

        .wrapper-1,
        .wrapper-2 {
            background: url(assets/img/particle.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 70px;
            min-width: 320px;
            width: 100%;
        }

        .wrapper-1 {
            background-color: var(--color-accent-cyan);
            align-items: end;
            gap: 30px;

            h2,
            p {
                max-width: 600px;
                width: 100%;
                color: var(--color-black);
            }
        }

        .wrapper-2 {
            background-color: var(--color-primary-soft);
            gap: 60px;

            .card-1,
            .card-2 {
                display: flex;
                flex-direction: column;
                gap: 20px;
                max-width: 600px;
                width: 100%;

                .profil-picture {
                    background-color: var(--color-accent-cyan);
                    height: auto;
                    max-width: 100px;
                    width: 100%;
                    border-radius: 999px;
                    object-fit: cover;
                }

                h3 {
                    margin-bottom: 5px;
                    font-size: 1.5rem;
                    font-weight: 500;
                    color: var(--color-black);
                }

                .title-wrapper span,
                p {
                    font-size: 1rem;
                    color: var(--color-black);
                }

                .social-icon-container {
                    display: flex;
                    flex-direction: row;
                    gap: 20px;

                    .social-icon {
                        img {
                            max-width: 32px;
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}

.broadcast-section {
    background: url(/assets/img/raster-2.png) var(--color-neutral-900);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 150px 20px;

    .container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 1200px;
        width: 100%;

        .broadcast-item-wrapper {
            background-color: var(--color-primary-soft);
            align-items: center;
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            gap: 1rem;
            padding: 5px;
            border-radius: 50px;
            transition: all 0.2s ease;

            &:hover {
                cursor: pointer;
                transform: scale(1.01);
            }

            .broadcaster-text {
                align-items: center;
                display: flex;
                gap: 20px;
                padding-left: 30px;
                min-width: 0;

                h4 {
                    font-size: 1.3rem;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    color: var(--color-black);
                    overflow: hidden;
                }

                .online {
                    background-color: var(--color-accent-green);
                    height: 12px;
                    width: 12px;
                    border-radius: 999px;
                }
            }

            span {
                background-color: var(--color-black);
                flex: 0 0 auto;
                padding: 20px 40px;
                font-weight: 600;
                color: var(--color-primary-soft);
                border-radius: 50px;
            }
        }
    }
}

.ticket-section {
    background:
        url(assets/img/dot-raster-2.svg),
        linear-gradient(180deg,
            var(--color-accent-yellow-bright) 0%,
            var(--color-primary-soft) 100%);
    background-position:
        bottom center,
        center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    display: flex;
    justify-content: center;
    width: 100%;

    .container {
        padding: 100px 20px;
        max-width: 1200px;
        width: 100%;

        .info-container {
            align-items: flex-start;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 100px;
            margin-bottom: 100px;

            .text-wrapper {
                flex: 2;
                min-width: 340px;

                h2 {
                    margin-bottom: 20px;
                    color: var(--color-black);
                }

                p {
                    color: var(--color-black);
                }
            }

            img {
                flex: 0 0 300px;
                height: auto;
                max-width: 300px;
                width: 100%;
            }
        }

        .indoor-three-day-ticket,
        .outdoor-three-day-ticket {
            background: linear-gradient(180deg,
                    var(--color-accent-indigo-deep) 0%,
                    var(--color-black) 100%);
        }

        .indoor-day-ticket .btn,
        .outdoor-day-ticket .btn {
            background-color: var(--color-primary-soft);

            &:hover {
                background-color: var(--color-primary-light);
            }
        }

        .ticket-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;

            .ticket-card {
                background-color: var(--color-black);
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 10px;
                padding: 20px;
                border-radius: 20px;

                h3,
                span,
                p,
                a {
                    color: var(--color-white);
                }

                h3 {
                    font-size: 2rem;
                    font-weight: 500;
                }

                .price {
                    margin: 10px 0;
                    font-size: 1.5rem;
                    font-weight: 400;
                    text-align: end;
                }
            }
        }
    }
}

.faq-section {
    background:
        url(assets/img/arrows.png),
        linear-gradient(180deg, rgb(153, 0, 255) 0%, rgba(0, 0, 0, 1) 100%);
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    display: flex;
    justify-content: center;
    color: var(--color-white);

    .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 100px 20px;
        max-width: 900px;
        width: 100%;

        h2 {
            text-align: center;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(28, 28, 28, 0.3);
            padding: 18px 22px;
            border-radius: 18px;
            -webkit-backdrop-filter: blur(150px);
            backdrop-filter: blur(150px);
            cursor: pointer;

            summary {
                display: block;
                font-size: 1.25rem;
                font-weight: 500;
                list-style: none;
                cursor: pointer;
            }

            summary::-webkit-details-marker {
                display: none;
            }

            p {
                margin-top: 12px;
                font-weight: 400;
                color: #eab6ff;
            }

            .faq-content {
                height: 0;
                opacity: 0;
                overflow: hidden;
                transition:
                    height 0.35s ease,
                    opacity 0.35s ease;
                will-change: height, opacity;
            }

            .faq-item[open] .faq-content {
                opacity: 1;
            }
        }
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .title-huge {
        white-space: nowrap;
        font-size: 6rem;
        line-height: 0.85;
        font-family: "transducer-condensed", sans-serif;
    }

    p,
    li,
    span {
        font-size: 1.0625rem;
    }

    main {
        min-height: 35rem;
    }

    main .container .details-container .location {
        font-size: 1.375rem;
    }

    .sponsor-section {
        --sponsor-gap: 3.75rem;

        img {
            height: 2.25rem;
            max-width: 10rem;
        }
    }

    .sponsor-grid-section {
        padding: 4rem 1.5rem;

        .container {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .sponsor-grid-item {
            padding: 20px;
            min-height: 100px;
        }

        img {
            max-height: 46px;
        }
    }

    .introduction-section,
    .qualification-section {
        padding: 8rem 1.5rem;
    }

    .format-section .container {
        gap: 2rem;
        padding: 4rem 1.5rem;
    }

    .swiper,
    .swiper-slide {
        min-height: 43.75rem;
    }

    .swiper-slide {
        .swiper-content-wrapper {
            padding: 3rem !important;
        }

        p {
            font-size: 1rem;
        }

        .title {
            font-size: 1rem;
        }

        .subtitle {
            font-size: 0.95rem;
        }

        .sponsor-container {
            align-items: center !important;
        }
    }

    .broadcast-section {
        padding: 6rem 1.5rem;

        .container {
            flex-direction: column;

            .wrapper-1,
            .wrapper-2 {
                padding: 4rem 2rem;
                min-width: 100%;
            }

            .wrapper-1 {
                align-items: flex-start;
            }
        }
    }

    .ticket-section {
        .container {
            padding: 5rem 1.5rem;

            .info-container {
                gap: 3rem;
                margin-bottom: 3rem;

                .text-wrapper {
                    min-width: 320px;
                }

                img {
                    flex-basis: 260px;
                    max-width: 260px;
                }
            }
        }
    }

    .faq-section .container {
        padding: 5rem 1.5rem;
    }

    .vice-city-section {
        padding: 4.5rem 1.5rem;
    }

    .vice-city-overlay-scroll {
        gap: 80px;
        padding: 0 0 10px;
    }

    .vice-city-panel {
        flex-basis: max(900px, 20vw);
        grid-template-columns: minmax(360px, 1fr) minmax(220px, 40%);
        column-gap: 20px;
        padding: 84px 24px 30px;
    }

    .vice-city-panel-content {
        max-width: min(100%, 450px);
    }

    .vice-city-panel p {
        max-width: 450px;
    }

    .vice-city-panel .branding-image {
        max-height: calc(100svh - 150px);
    }

    footer .container {
        gap: 4rem;
        padding: 6rem 0 1.5rem;
    }
}

@media (max-width: 900px) {
    .vice-city-panel {
        flex-basis: max(860px, 10vw);
        grid-template-columns: minmax(340px, 1fr) minmax(200px, 40%);
        column-gap: 16px;
        align-items: start;
        padding: 80px 16px 24px;
    }

    .vice-city-panel-content {
        max-width: min(100%, 450px);
        max-height: calc(100svh - 110px);
        align-self: start;
    }

    .vice-city-panel p {
        max-width: 450px;
    }

    .vice-city-panel .branding-image {
        align-self: start;
        max-height: calc(100svh - 130px);
    }

    .vice-city-panel--contact {
        grid-template-columns: minmax(260px, 450px);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p,
    li,
    span {
        font-size: 1rem;
    }

    header {
        padding: 1rem;
    }

    .ticket-btn,
    .btn {
        padding: 0.75rem 1.5rem;
    }

    main {
        min-height: 32rem;
    }

    main .container .logo-container #myVideo {
        scale: 0.6;
    }

    main .container .details-container {
        gap: 0.75rem;
        padding-bottom: 1.5rem;
    }

    main .container .details-container .location {
        font-size: 1.25rem;
    }

    .sponsor-section {
        --sponsor-gap: 2.5rem;

        img {
            height: 2rem;
            max-width: 8.75rem;
        }
    }

    .sponsor-grid-section {
        padding: 3rem 1rem;

        .container {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem;
        }

        .sponsor-grid-item {
            padding: 16px;
            min-height: 88px;
            border-radius: 12px;
        }

        img {
            max-height: 38px;
            max-width: 100%;
        }
    }

    .introduction-section,
    .qualification-section {
        padding: 5rem 1.25rem;
    }

    .qualification-section .container {
        text-align: left;
    }

    .qualification-section .container p {
        padding: 2rem 0;
        max-width: 100%;
    }

    .format-section .container {
        gap: 1.5rem;
        padding: 3.5rem 1.25rem;
    }

    .format-section .container .card {
        flex: 1 1 100%;
        padding: 1.5rem;
    }

    .about-section .container {
        flex-direction: column;
    }

    .about-section .container .wrapper-1,
    .about-section .container .wrapper-2 {
        padding: 3rem 1.5rem;
        min-width: 100%;
    }

    .about-section .container .wrapper-1 {
        align-items: flex-start;
    }

    .swiper,
    .swiper-slide {
        min-height: 37.5rem;
    }

    .swiper-slide .swiper-content-wrapper {
        padding: 2rem !important;
    }

    .swiper-slide p {
        font-size: 1.2rem;
    }

    .swiper-slide .title {
        font-size: 1rem;
    }

    .swiper-slide .subtitle {
        font-size: 0.9rem;
    }

    .swiper-slide .sponsor-container {
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .broadcast-section {
        padding: 4rem 1rem;
    }

    .broadcast-section .container .broadcast-item-wrapper {
        gap: 0.75rem;
        padding: 0.4rem;
    }

    .broadcast-section .container .broadcast-item-wrapper .broadcaster-text {
        gap: 0.75rem;
        padding-left: 1rem;
    }

    .broadcast-section .container .broadcast-item-wrapper span {
        padding: 0.6rem 1.25rem;
    }

    .ticket-section .container {
        padding: 4rem 1rem;
    }

    .faq-section .container {
        padding: 4rem 1rem;
    }

    .vice-city-section {
        padding: 3.5rem 1rem;
    }

    .vice-city-section .vice-city-hero img {
        min-height: 260px;
    }

    .vice-city-section .vice-city-open-btn {
        bottom: 16px;
        left: 16px;
        padding: 12px 20px;
    }

    .vice-city-back-btn {
        left: 16px;
        padding: 10px 16px;
        top: 16px;
    }

    .vice-city-overlay-scroll {
        gap: 100px;
        padding: 0 0 8px;
        scroll-padding-left: 0;
    }

    .vice-city-panel {
        flex-basis: max(520px, 10vw);
        grid-template-columns: minmax(300px, 1fr) minmax(170px, 38%);
        column-gap: 20px;
        min-height: 100svh;
        padding: 74px 12px 20px;
    }

    .vice-city-panel h2 {
        font-size: clamp(1.25rem, 4.8vw, 1.65rem) !important;
    }

    .vice-city-panel h3 {
        font-size: clamp(0.95rem, 3.6vw, 1.15rem);
        margin: 16px 0 12px;
    }

    .vice-city-panel .branding-image {
        max-height: calc(100svh - 130px);
        width: min(100%, 800px);
    }

    .vice-city-panel p,
    .vice-city-panel li {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .vice-city-panel-content,
    .vice-city-panel p {
        max-width: min(100%, 400px);
    }

    .vice-city-panel h2,
    .vice-city-panel h3,
    .vice-city-panel p {
        max-width: 400px;
    }

    .federlight-logo {
        max-width: 400px;
    }

    .vice-city-panel--contact {
        grid-template-columns: minmax(240px, 400px);
    }

    .faq-item {
        padding: 16px 18px;
    }

    .ticket-section .info-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .ticket-section .info-container .text-wrapper {
        flex: 0 1 auto;
        min-width: 0;
        width: 100%;
    }

    .ticket-section .info-container img {
        flex-basis: auto;
        margin: 0 auto;
        max-width: 240px;
    }

    .ticket-section .ticket-container {
        grid-template-columns: 1fr;
    }

    .ticket-section .ticket-container .ticket-card h3 {
        font-size: 2rem;
    }

    .ticket-section .ticket-container .ticket-card .price {
        font-size: 1.25rem;
    }

    footer .container {
        gap: 3rem;
        padding: 4rem 0 1.5rem;
    }

    footer .container ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    footer .container .icon-list a {
        padding: 0.75rem;
    }

    footer .legal-information {
        align-items: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    footer .legal-information .legal-links {
        justify-content: center;
    }
}