@media only screen and (min-width: 1921px) {

    /* ================================================================== */
    /* ============================= NAVBAR ============================= */
    /* ================================================================== */

    nav {
        width: 100%;
        height: 160px;

        margin: 0 auto;

        position: absolute;
        top: 0;
        left: 0;

        z-index: 100;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5vw;

        padding: 0 340px;
    }

    .nav-left {
        width: 514px;
        height: 80.2px;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-left img {
        width: 136px;
        height: auto;

        transform: translateX(-40px);
        transition: 0.3s;
    }

    .nav-left img:hover {
        cursor: pointer;
        scale: 1.02;
    }

    .nav-left-text {
        display: flex;
        flex-direction: column;
    }

    .nav-left-text h4 {
        font-family: "Rubik Mono One", monospace;
        font-size: 24px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .nav-left-text p {
        font-family: 'Nova Flat', system-ui;
        font-size: 15.6px;
        font-weight: 500;
        color: #FFAC15;
    }

    .nav-right {
        width: 752px;
        height: 80.2px;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 0 50px;
    }

    .nav-right ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        list-style-type: none;
    }

    .dropdown-toggle .arrow {
        margin-left: 5px;
        font-size: 12px;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: #333;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 12px;
        top: 140%;
        left: 0;
        padding: 5px 0;
        transform: translateY(5px);
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .dropdown-menu.show {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

    .dropdown-menu a {
        color: #fff;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .dropdown-menu a:hover {
        background-color: #555;
        border-radius: 0;
    }

    .nav-right ul li a {
        font-size: 15.6px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
    }

    .nav-right ul li:nth-of-type(1) a {
        color: rgba(255, 255, 255, 1);
    }

    .nav-right ul li a:hover {
        text-decoration: underline;
    }

    .nav-right ul li button {
        width: 218px;
        height: 52px;

        border-radius: 11px;
        background: linear-gradient(to bottom right, #FF5900, #FFD325);
        outline: none;
        border: none;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;

        font-size: 15.6px;
        font-weight: 500;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .nav-right ul li button img {
        width: 20px;
        height: auto;
    }

    .nav-right ul li button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .ham {
        display: none;
    }

    /* ================================================================== */
    /* ============================= HEADER ============================= */
    /* ================================================================== */

    .header {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        position: relative;

        padding: 200px 340px 100px 340px;
    }

    .header-container {
        width: 100%;
        height: 520px;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        
        position: relative;
    }

    .header-image img {
        width: 1554px;
        height: auto;
    }

    .header-resp {
        display: none;
    }

    .header-buttons {
        position: absolute;

        width: 484px;
        height: 80.2px;

        background: rgba(13, 13, 13, 0.8);
        border-radius: 20px;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        
        bottom: -3%;
        left: 50%;

        transform: translate(-50%, -50%);
    }

    .header-buttons button {
        width: 218px;
        height: 52px;

        border-radius: 12.5px;

        outline: none;
        border: none;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;

        font-size: 16px;
        font-weight: 500;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .header-buttons button img {
        width: 19px;
        height: auto;
    }

    .header-buttons button:nth-of-type(1) {
        background: #1867CF;
    }

    .header-buttons button:nth-of-type(2) {
        background: linear-gradient(to bottom right, #FF5900, #FFD325);
    }

    .header-buttons button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    /* ================================================================== */
    /* ============================== DATES ============================= */
    /* ================================================================== */

    .dates {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        scroll-margin-top: 200px;

        padding: 0 300px;
    }

    .dates-headline {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .dates-headline h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 40px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .dates-headline p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .dates-tiles {
        margin-top: 40px;
        width: 100%;
        height: auto;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 25px;
    }

    .dates-tile {
        width: 310px;
        height: 398px;

        border-radius: 20px;

        position: relative;
        
        border: 2px solid rgba(255, 255, 255, 0.07);

        display: flex;
        justify-content: space-between;
        flex-direction: column;

        padding: 20px 0 20px 0;
    }

    .dates-tile:nth-of-type(1) {
        border: 2px solid #FF9A0D;
    }

    .dates-tile-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .dates-tile-background img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .dates-tile:nth-of-type(1) .dates-tile-background img {
        border: 5px solid rgba(255, 154, 13, 0.15);
    }

    .dates-tile-text {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

    .dates-tile-text h3 {
        font-family: "Rubik Mono One", monospace;
        font-size: 27px;
        font-weight: 500;
        color: #FFFFFF;
    }

    .dates-tile-text h5 {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .dates-tile-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .dates-tile-button button {
        width: 268px;
        height: 52px;

        border-radius: 12.5px;
        border: none;
        outline: none;

        background: linear-gradient(to bottom right, #FF5900, #FFD325);

        font-size: 17px;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .dates-tile-button button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    /* ================================================================== */
    /* ============================== FILMS ============================= */
    /* ================================================================== */

    .films {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        padding: 140px 300px;
    }

    .films-headline {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .films-headline h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 40px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .films-headline p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .swiper-container-wrapper {
        position: relative;
        margin-top: 40px;
        width: 100%;
    }

    .swiper {
        width: 100%; 
        height: 100%;
    }

    .swiper-slide {
        width: 412px;
        height: 350px !important;

        border-radius: 12.5px !important;
        position: relative;
        overflow: hidden;
    }

    .swiper-slide .slide-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #444;
        border-radius: 12.5px !important;
        overflow: hidden;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12.5px !important;
        transition: transform 0.3s ease;
    }

    .swiper-slide .slide-link:hover img {
        transform: scale(1.05);
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background-color: rgba(0, 0, 0, 0.6); 
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .play-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
        border-left: 36px solid #FFFFFF;
        margin-left: 10px;
    }

    .swiper-slide .slide-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color 0.3s ease;
        border-radius: 12.5px !important;
        z-index: 1;
    }

    .swiper-slide .slide-link:hover::before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .play-button {
        z-index: 2;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 40px !important;
    }

    .swiper-button-prev {
        transform: translateX(-40px) !important;
        left: -40px !important;
    }

    .swiper-button-next {
        transform: translateX(40px) !important;
        right: -40px !important;
    }

    /* ================================================================== */
    /* ============================== FOOTER ============================ */
    /* ================================================================== */

    footer {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        padding: 40px 300px;
    }

    .footer-container {
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 40px 60px;
    }

    .footer-left {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .footer-left img {
        width: 136px;
        height: auto;
    }

    .footer-left-text {
        display: flex;
        flex-direction: column;
    }

    .footer-left-text h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 40px;
        font-weight: 500;
        color: #FFFFFF;
    }

    .footer-left-text p {
        font-size: 16px;
        font-weight: 400;
        color: #6F6F6F;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .footer-right img {
        opacity: 0.7;

        transition: 0.3s;
    }

    .footer-right img:nth-of-type(1) {
        width: 32px;
        height: auto;
    }

    .footer-right img:nth-of-type(2) {
        width: 26px;
        height: auto;
    }

    .footer-right img:nth-of-type(3) {
        width: 34px;
        height: auto;
    }

    .footer-right img:hover {
        opacity: 1;
        cursor: pointer;
    }

    .footer-copyright {
        width: 100%;
        height: auto;
        margin-top: 40px;
        text-align: center;

        font-size: 16px;
        font-weight: 400;
        color: #AFAEAF;
    }

    .madeby {
        width: 100%;
        height: 70px;

        background: #000000;

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .madeby p {
        font-size: 16px;
        font-weight: 400;
        color: #C7C7C7;
    }

    .madeby p span {
        text-decoration: underline;
    }

    /* ================================================================== */
    /* ============================== SHOP ============================== */
    /* ================================================================== */

    .shop {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        padding: 220px 340px 100px 340px;
    }

    .shop-headline {
        width: 100%;
        height: auto;
    }

    .shop-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 40px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .shop-sections {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        gap: 120px;
    }

    .shop-section:nth-of-type(1) {
        margin-top: 60px;
    }

    .shop-section-name {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
    }

    .shop-section-name h4 {
        width: 260px;
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .shop-section-line {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 4px;
    }

    .shop-section-tiles {
        margin-top: 40px;
        width: 100%;
        height: auto;
        display: grid;
        justify-items: flex-start;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 20px;
    }

    .shop-section-tile {
        width: 320px;
        height: 440px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        position: relative;
        border-radius: 10px;

        padding: 20px 0;
    }

    .shop-section-tile img {
        width: 460px;
        max-width: 500px;
        height: auto;
        flex-shrink: 0;
        margin-bottom: 20px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .shop-section-tile-text {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .shop-section-tile h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
    }

    .shop-section-tile button {
        margin-top: 10px;
        width: 100%;
        height: 53px;

        border: none;
        outline: none;
        background: #FF9D00;
        border-radius: 12.5px;

        display: flex;
        justify-content: space-between;
        align-items: center;

        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        text-transform: uppercase;

        padding: 0 24px;

        transition: 0.3s;
    }

    .shop-section-button-line {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0 10px;
    }

    .shop-section-tile button span {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        letter-spacing: -0.5px;
    }

    .shop-section-tile button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .shop-section-tile-discount {
        width: 240px;
        height: 40px;

        transform: translate(-50%, -50%);

        border: 1px solid #FF3F3F;
        border-radius: 30px;

        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;

        position: absolute;
        bottom: -13%;
        left: 50%;

        padding: 0 22px;
    }

    .shop-section-tile-discount p {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 15px;
        font-weight: 400;
        color: #FF3F3F;
    }

    .shop-section-tile-discount svg {
        width: 20px;
        height: auto;
    }

    /* ================================================================== */
    /* ============================== SLOT ============================== */
    /* ================================================================== */

    .slot {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        padding: 220px 340px 100px 340px;
    }

    .slot-left {
        display: flex;
        flex-direction: column;
    }

    .slot-left-headline {
        display: flex;
        flex-direction: column;
    }

    .slot-left-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 40px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-headline h5 {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-form {
        width: 600px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }

    .slot-left-form h5 {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-form input {
        margin-top: 12px;
        width: 100%;
        padding: 20px 24px;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 12.5px;
        font-family: 'Nova Flat', sans-serif;
        font-size: 20px;
        color: #FFFFFF;
        outline: none;
    }

    .slot-left-form input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .slot-left-form button {
        margin-top: 20px;

        width: 238px;
        height: 53px;

        outline: none;
        border: none;
        background: #FF9D00;
        border-radius: 12.5px;

        font-size: 17px;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .slot-left-form button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .reservation-info {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .reservation-info p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.5;
    }

    .slot-right {
        width: 358px;
        height: 472px;
        border-radius: 12.5px;
        position: relative;
    }

    .slot-right-text {
        position: absolute;
        text-align: center;
        top: 13%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slot-right-text h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 32px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-right-text h5 {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-right img {
        width: 100%;
        height: 100%;
        border-radius: 12.5px;
    }

    /* ================================================================== */
    /* ============================ PAYMENTS ============================ */
    /* ================================================================== */

    .payments {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        padding: 220px 300px 60px 300px;
    }

    .payments-left {
        width: 600px;
        height: auto;

        display: flex;
        flex-direction: column;
    }

    .payments-left-offer {
        width: 100%;
        height: 168px;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;

        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;

        padding: 0 60px 0 30px;
    }

    .payments-left-offer img {
        width: 240px;
        max-width: 240px;
        height: auto;
        transform: translateX(-40px);
        flex-shrink: 0;
    }

    .payments-left-offer h1 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 30px;
        font-weight: 400;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .payments-left-include {
        margin-top: 30px;
        width: 100%;
        height: auto;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;

        padding: 30px 50px;
    }

    .payments-left-include h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-left-include ul {
        height: 180px;
        max-height: 180px;
        overflow-y: auto;
        margin-top: 14px;
        margin-left: 12px;
    }

    .payments-left-include ul::-webkit-scrollbar {
        width: 4px;
    }
    
    .payments-left-include ul::-webkit-scrollbar-track {
        background: #161616;
    }

    .payments-left-include ul::-webkit-scrollbar-thumb {
        background: white;
    }

    .payments-left-include ul li {
        font-size: 16px;
        font-weight: 400;
        color: #909090;
    }

    .payments-left-code {
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-left-code h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-left-code-tiles {
        margin-top: 16px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
    }

    .payments-left-code-tiles input {
        width: 284px;
        height: 53px;
        padding: 0 24px;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 12.5px;
        font-family: 'Nova Flat', sans-serif;
        font-size: 16px;
        color: #FFFFFF;
        outline: none;
    }

    .payments-left-code-tiles input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .payments-left-code-tiles button {
        width: 284px;
        height: 53px;

        outline: none;
        border: none;
        background: #FF9D00;
        border-radius: 12.5px;

        font-size: 17px;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .payments-left-code-tiles button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .payments-right {
        width: 640px;
        height: auto;

        display: flex;
        flex-direction: column;
    }

    .payments-right-forms {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .payments-right-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-right-form h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-form input {
        margin-top: 12px;
        width: 100%;
        height: 53px;
        padding: 0 24px;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 12.5px;
        font-family: 'Nova Flat', sans-serif;
        font-size: 16px;
        color: #FFFFFF;
        outline: none;
    }

    .payments-right-form input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .payments-right-methods {
        margin-top: 5px;

        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-right-methods h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-methods-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    .payments-right-method {
        margin-top: 12px;
        width: 320px;
        height: 68px;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 12.5px;

        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;

        padding: 0 40px;

        transition: 0.3s;
    }

    .payments-right-method svg {
        width: 30px;
        height: auto;
        filter: brightness(0) saturate(100%) invert(60%) sepia(13%) saturate(15%) hue-rotate(1deg) brightness(93%) contrast(87%);
        opacity: 0.5;
    }

    .payments-right-method-line {
        width: 36px;
        border: 1px solid #909090;
        rotate: 90deg;
        opacity: 0.5;
    }

    .payments-right-method p {
        font-size: 17px;
        font-weight: 400;
        color: #909090;
        opacity: 0.5;
    }

    .payments-right-method:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .terms-checkbox-container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-top: 20px;
    }

    .custom-checkbox {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-label {
        position: relative;
        padding-left: 50px;
        font-size: 16px;
        font-weight: 400;
        color: #909090;
        cursor: pointer;
        user-select: none;
        text-align: left;
        line-height: 1.4;
    }

    .checkbox-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: -4.5px;
        width: 30px;
        height: 30px;
        background-color: #2D2D2D;
        border-radius: 5px;
    }

    .checkbox-label::after {
        content: '\2713';
        position: absolute;
        left: 6px;
        top: -4.3px;
        font-size: 24px;
        color: #FFFFFF;
        opacity: 0;
    }

    .custom-checkbox:checked + .checkbox-label::before {
        background: #FF7308;
    }

    .custom-checkbox:checked + .checkbox-label::after {
        opacity: 1;
    }

    .payments-right-summary {
        width: 100%;
        margin-top: 68px;
        display: flex;
        flex-direction: column;
    }

    .payments-right-summary-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .payments-right-summary-top p {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary-top h4 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary button {
        margin-top: 16px;
        width: 100%;
        height: 53px;

        border-radius: 12.5px;
        background: #FF9D00;
        outline: none;
        border: none;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;

        font-size: 17px;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .payments-right-summary button span {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 17px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .payments-right-summary h5 {
        margin-top: 10px;
        font-size: 15px;
        font-weight: 400;
        color: #909090;
    }

    /* ================================================================== */
    /* ============================== RULES ============================= */
    /* ================================================================== */

    .rules {
        width: 100%;
        height: auto;

        max-width: 1920px;
        margin: 0 auto;

        padding: 220px 340px 60px 340px;
    }

    .rules-headline {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .rules-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 40px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .rules-buttons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 48px;
    }

    .rules-buttons p {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .rules-buttons p:nth-of-type(1) {
        color: rgba(255, 255, 255, 1);
    }

    .rules-buttons p:hover {
        cursor: pointer;
        text-decoration: underline;
    }

    .rules-container {
        margin-top: 40px;
        width: 100%;
        height: auto;
    }

    .rules-tile:not(.rules-tile:nth-of-type(1)) {
        display: none;
    }

    .rules-tile h3 {
        margin-top: 40px;
        font-family: 'Rubik Mono One', system-ui;
        font-size: 21px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .rules-tile p {
        margin-top: 20px;
        line-height: 140%;
        letter-spacing: 1px;
        font-size: 15px;
        font-weight: 400;
        color: #858585;
    }

    .rules-tile h5 {
        letter-spacing: 1px;
        font-size: 15px;
        font-weight: 400;
        color: #858585;
    }

    .rules-tile h5:nth-of-type(1) {
        margin-top: 40px;
    }

    .rules-tile h5:nth-of-type(2) {
        margin-bottom: 40px;
    }

    .rules-container span {
        display: flex;
        flex-direction: column;
        font-size: 15px;
        font-weight: 400;
        color: #858585;
    }

}

@media only screen and (max-width: 500px) {

    /* ================================================================== */
    /* =============================== NAVBAR =========================== */
    /* ================================================================== */

    nav {
        height: 22vw;
        padding: 0 8vw;
    }

    .nav-left {
        background: none;
        border-radius: 0;
        backdrop-filter: unset;
        -webkit-backdrop-filter: blur(0);
    }

    .nav-left img {
        width: 13vw;
        height: auto;
    }

    .nav-left-text {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .ham {
        display: flex;
    }

    .ham svg {
        width: 7vw;
        height: auto;
        filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(863%) hue-rotate(17deg) brightness(115%) contrast(100%);
    }

    /* ================================================================== */
    /* =============================== HEADER =========================== */
    /* ================================================================== */

    .header {
        width: 100%;
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        position: relative;

        padding: 15vw 8vw 5vw 8vw;
    }

    .header-container {
        margin-top: 8vw;
        width: 100%;
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-shrink: 1;
        
        position: relative;
    }

    .header-image {
        width: 84vw;
        height: 120vw;
        
        border-radius: 8vw;

        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: cover;
        flex-shrink: 0;

        overflow: hidden;
    }

    .header-image img {
        display: none;
    }

    .header-resp {
        width: 140vw !important;
        height: auto;
        object-fit: cover;
        flex-shrink: 0;
        display: flex !important;
    }

    .header-buttons {
        position: absolute;

        width: 70vw;
        height: auto;

        background: rgba(13, 13, 13, 0.8);
        border-radius: 5vw;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2vw;
        
        bottom: -10%;
        left: 50%;

        transform: translate(-50%, -50%);

        padding: 4vw 2vw;
    }

    .header-buttons button {
        width: 60vw;
        height: 14vw;
        gap: 5vw;
        border-radius: 3vw;

        font-size: 4vw;
    }

    .header-buttons button img {
        width: 5vw;
        height: auto;
    }

    .header-buttons button:nth-of-type(1) {
        background: #1867CF;
    }

    .header-buttons button:nth-of-type(2) {
        background: linear-gradient(to bottom right, #FF5900, #FFD325);
    }

    .header-buttons button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    /* ================================================================== */
    /* ============================== SHOP ============================== */
    /* ================================================================== */

    .shop {
        width: 100%;
        height: auto;

        padding: 28vw 8vw 5vw 8vw;
    }

    .shop-headline {
        width: 100%;
        height: auto;
    }

    .shop-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .shop-sections {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        gap: 25vw;
    }

    .shop-section:nth-of-type(1) {
        margin-top: 6vw;
    }

    .shop-section-name {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2vw;
    }

    .shop-section-name h4 {
        width: 50vw;
        font-size: 3vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .shop-section-line {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 0.2vw;
    }

    .shop-section-tiles {
        margin-top: 2vw;
        width: 100%;
        height: auto;
        display: grid;
        justify-items: flex-start;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 7vw;
    }

    .shop-section-tile {
        width: 100%;
        height: 85vw;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        position: relative;
        border-radius: 3vw;

        padding: 1vw 0;
    }

    .shop-section-tile img {
        width: 70vw;
        max-width: 70vw;
        height: auto;
        flex-shrink: 0;
        margin-bottom: 1vw;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .shop-section-tile-text {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .shop-section-tile h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 5vw;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
    }

    .shop-section-tile button {
        margin-top: 2vw;
        width: 95%;
        height: 12vw;

        border: none;
        outline: none;
        background: #FF9D00;
        border-radius: 3vw;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5vw;

        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
        text-transform: uppercase;

        padding: 0 4vw;

        transition: 0.3s;
    }

    .shop-section-button-line {
        font-size: 5vw;
        color: rgba(255, 255, 255, 0.5);
        margin: 0 0.5vw;
    }

    .shop-section-tile button span {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
        letter-spacing: -0.5px;
    }

    .shop-section-tile button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .shop-section-tile-discount {
        width: 50vw;
        height: 8vw;

        transform: translate(-50%, -50%);

        border: 1px solid #FF3F3F;
        border-radius: 3vw;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6vw;

        position: absolute;
        bottom: -16%;
        left: 50%;

        padding: 0 1.1vw;
    }

    .shop-section-tile-discount p {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 3vw;
        font-weight: 400;
        color: #FF3F3F;
    }

    .shop-section-tile-discount svg {
        width: 3.5vw;
        height: auto;
    }

    /* ================================================================== */
    /* ============================== FOOTER ============================ */
    /* ================================================================== */

    footer {
        width: 100%;
        height: auto;

        padding: 5vw 8vw;
    }

    .footer-container {
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3vw;
        backdrop-filter: blur(10.4px);
        -webkit-backdrop-filter: blur(10.4px);

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding: 5vw 6vw;
    }

    .footer-left {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5vw;
    }

    .footer-left img {
        width: 18vw;
        height: auto;
    }

    .footer-left-text {
        display: flex;
        flex-direction: column;
        gap: 1vw;
    }

    .footer-left-text h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 4vw;
        font-weight: 500;
        color: #FFFFFF;
    }

    .footer-left-text p {
        font-size: 3vw;
        font-weight: 400;
        color: #6F6F6F;
    }

    .footer-right {
        margin-top: 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3vw;
    }

    .footer-right img {
        opacity: 0.7;

        transition: 0.3s;
    }

    .footer-right img:nth-of-type(1) {
        width: 6vw;
        height: auto;
    }

    .footer-right img:nth-of-type(2) {
        width: 5vw;
        height: auto;
    }

    .footer-right img:nth-of-type(3) {
        width: 6vw;
        height: auto;
    }

    .footer-right img:hover {
        opacity: 1;
        cursor: pointer;
    }

    .footer-copyright {
        width: 100%;
        height: auto;
        margin-top: 4vw;
        text-align: center;

        font-size: 3vw;
        font-weight: 400;
        color: #AFAEAF;
    }

    .madeby {
        width: 100%;
        height: 12vw;

        background: #000000;

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .madeby p {
        font-size: 3vw;
        font-weight: 400;
        color: #C7C7C7;
    }

    .madeby p span {
        text-decoration: underline;
    }
    
    /* ================================================================== */
    /* ============================ PAYMENTS ============================ */
    /* ================================================================== */

    .payments {
        width: 100%;
        height: auto;

        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;

        padding: 25vw 8vw 7vw 8vw;
    }

    .payments-left {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
    }

    .payments-left-offer {
        width: 100%;
        height: 32vw;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 3vw;

        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;

        padding: 0 7vw 0 2.5vw;
    }

    .payments-left-offer img {
        width: 38vw;
        max-width: 38vw;
        height: auto;
        transform: translateX(-5vw);
        flex-shrink: 0;
    }

    .payments-left-offer h1 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .payments-left-include {
        margin-top: 4vw;
        width: 100%;
        height: auto;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 1vw;

        padding: 6vw 5vw;
    }

    .payments-left-include h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-left-include ul {
        height: 20vw;
        max-height: 20vw;
        overflow-y: auto;
        margin-top: 2vw;
        margin-left: 0.6vw;
    }

    .payments-left-include ul::-webkit-scrollbar {
        width: 4px;
    }
    
    .payments-left-include ul::-webkit-scrollbar-track {
        background: #161616;
    }

    .payments-left-include ul::-webkit-scrollbar-thumb {
        background: white;
    }

    .payments-left-include ul li {
        font-size: 3.5vw;
        font-weight: 400;
        color: #909090;
    }

    .payments-left-code {
        margin-top: 4vw;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-left-code h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-left-code-tiles {
        margin-top: 1vw;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2vw;
    }

    .payments-left-code-tiles input {
        width: 100%;
        height: 10vw;
        padding: 0 4vw;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 0.625vw;
        font-family: 'Nova Flat', sans-serif;
        font-size: 3.4vw;
        color: #FFFFFF;
        outline: none;
    }

    .payments-left-code-tiles input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .payments-left-code-tiles button {
        width: 30vw;
        height: 10vw;

        outline: none;
        border: none;
        background: #FF9D00;
        border-radius: 0.625vw;

        font-size: 3.2vw;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .payments-left-code-tiles button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .payments-right {
        margin-top: 4vw;
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
    }

    .payments-right-forms {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4vw;
    }

    .payments-right-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-right-form h2 {
        width: max-content;
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-form input {
        margin-top: 2vw;
        width: 100%;
        height: 10vw;
        padding: 0 4vw;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 0.625vw;
        font-family: 'Nova Flat', sans-serif;
        font-size: 3.4vw;
        color: #FFFFFF;
        outline: none;
    }

    .payments-right-form input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .payments-right-methods {
        margin-top: 4vw;

        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .payments-right-methods h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-methods-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 4vw;
    }

    .payments-right-method {
        margin-top: 2vw;
        width: 100%;
        height: 25vw;

        background: rgba(255, 255, 255, 0.05);
        border-radius: 0.625vw;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3vw;

        padding: 0 2vw;

        transition: 0.3s;
    }

    .payments-right-method svg {
        width: 10vw;
        height: auto;
        filter: brightness(0) saturate(100%) invert(60%) sepia(13%) saturate(15%) hue-rotate(1deg) brightness(93%) contrast(87%);
        opacity: 0.5;
    }

    .payments-right-method-line {
        display: none;
    }

    .payments-right-method p {
        font-size: 4vw;
        font-weight: 400;
        color: #909090;
        opacity: 0.5;
    }

    .payments-right-method:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .terms-checkbox-container {
        display: flex;
        align-items: flex-start;
        gap: 1vw;
        margin-top: 4vw;
    }

    .custom-checkbox {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-label {
        position: relative;
        padding-left: 6vw;
        font-size: 2.7vw;
        font-weight: 400;
        color: #909090;
        cursor: pointer;
        user-select: none;
        text-align: left;
        line-height: 1.4;
    }

    .checkbox-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4vw;
        height: 4vw;
        background-color: #2D2D2D;
        border-radius: 0.25vw;
    }

    .checkbox-label::after {
        content: '\2713';
        position: absolute;
        left: 0.8vw;
        top: -0.1vw;
        font-size: 3.3vw;
        color: #FFFFFF;
        opacity: 0;
    }

    .custom-checkbox:checked + .checkbox-label::before {
        background: #FF7308;
    }

    .custom-checkbox:checked + .checkbox-label::after {
        opacity: 1;
    }

    .payments-right-summary {
        width: 100%;
        margin-top: 4vw;
        display: flex;
        flex-direction: column;
    }

    .payments-right-summary-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .payments-right-summary-top p {
        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary-top h4 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary button {
        margin-top: 2vw;
        width: 100%;
        height: 10vw;

        border-radius: 0.625vw;
        background: #FF9D00;
        outline: none;
        border: none;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4vw;

        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .payments-right-summary button span {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .payments-right-summary button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .payments-right-summary h5 {
        margin-top: 2vw;
        font-size: 3vw;
        font-weight: 400;
        color: #909090;
    }

    /* ================================================================== */
    /* ============================== SLOT ============================== */
    /* ================================================================== */

    .slot {
        width: 100%;
        height: auto;

        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;

        padding: 25vw 8vw 5vw 8vw;
    }

    .slot-left {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .slot-left-headline {
        display: flex;
        flex-direction: column;
    }

    .slot-left-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 6vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-headline h5 {
        font-size: 3vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-form {
        width: 100%;
        margin-top: 8vw;
        display: flex;
        flex-direction: column;
    }

    .slot-left-form h5 {
        font-size: 3.5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-left-form input {
        margin-top: 2vw;
        width: 100%;
        height: 10vw;
        padding: 0 4vw;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 0.625vw;
        font-family: 'Nova Flat', sans-serif;
        font-size: 3.4vw;
        color: #FFFFFF;
        outline: none;
    }

    .slot-left-form input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .slot-left-form button {
        margin-top: 3vw;

        width: 100%;
        height: 10vw;

        outline: none;
        border: none;
        background: #FF9D00;
        border-radius: 0.625vw;

        font-size: 3.7vw;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .slot-left-form button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    .reservation-info {
        margin-top: 5vw;
        display: flex;
        flex-direction: column;
        gap: 1vw;
    }

    .reservation-info p {
        font-size: 2.8vw;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.5;
    }

    .slot-right {
        margin-top: 5vw;
        width: 100%;
        height: auto;
        border-radius: 0.625vw;
        position: relative;
    }

    .slot-right-text {
        position: absolute;
        text-align: center;
        top: 12%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slot-right-text h3 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 6vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-right-text h5 {
        font-size: 5vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .slot-right img {
        width: 100%;
        height: 100%;
        border-radius: 0.625vw;
    }

    /* ================================================================== */
    /* ============================== RULES ============================= */
    /* ================================================================== */

    .rules {
        width: 100%;
        height: auto;

        padding: 25vw 8vw 3vw 8vw;
    }

    .rules-headline {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .rules-headline h2 {
        font-family: 'Rubik Mono One', system-ui;
        font-size: 6vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .rules-buttons {
        margin-top: 5vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 2vw;
    }

    .rules-buttons p {
        font-size: 3.2vw;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .rules-buttons p:nth-of-type(1) {
        color: rgba(255, 255, 255, 1);
    }

    .rules-buttons p:hover {
        cursor: pointer;
        text-decoration: underline;
    }

    .rules-container {
        margin-top: 7vw;
        width: 100%;
        height: auto;
    }

    .rules-tile:not(.rules-tile:nth-of-type(1)) {
        display: none;
    }

    .rules-tile h3 {
        margin-top: 5vw;
        font-family: 'Rubik Mono One', system-ui;
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .rules-tile p {
        margin-top: 3vw;
        line-height: 150%;
        letter-spacing: 0.05vw;
        font-size: 2.5vw;
        font-weight: 400;
        color: #858585;
    }

    .rules-container span {
        display: flex;
        flex-direction: column;
        font-size: 0.75vw;
        font-weight: 400;
        color: #858585;
    }

    /* ================================================================== */
    /* ============================== DATES ============================= */
    /* ================================================================== */

    .dates {
        width: 100%;
        height: auto;

        scroll-margin-top: 200px;

        padding: 0 8vw;
    }

    .dates-headline {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .dates-headline h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 6vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .dates-headline p {
        font-size: 3.5vw;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .dates-tiles {
        margin-top: 5vw;
        width: 100%;
        height: auto;

        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 6vw;
    }

    .dates-tile {
        width: 100%;
        height: 100vw;

        border-radius: 1vw;

        position: relative;
        
        border: 2px solid rgba(255, 255, 255, 0.07);

        display: flex;
        justify-content: space-between;
        flex-direction: column;

        padding: 8vw 0 8vw 0;
    }

    .dates-tile:nth-of-type(1) {
        border: 2px solid #FF9A0D;
    }

    .dates-tile-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .dates-tile-background img {
        width: 100%;
        height: 100%;
        border-radius: 1vw;
    }

    .dates-tile:nth-of-type(1) .dates-tile-background img {
        border: 5px solid rgba(255, 154, 13, 0.15);
    }

    .dates-tile-text {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

    .dates-tile-text h3 {
        font-family: "Rubik Mono One", monospace;
        font-size: 5vw;
        font-weight: 500;
        color: #FFFFFF;
    }

    .dates-tile-text h5 {
        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .dates-tile-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .dates-tile-button button {
        width: 90%;
        height: 10vw;

        border-radius: 0.625vw;
        border: none;
        outline: none;

        background: linear-gradient(to bottom right, #FF5900, #FFD325);

        font-size: 4vw;
        font-weight: 400;
        color: #FFFFFF;

        transition: 0.3s;
    }

    .dates-tile-button button:hover {
        cursor: pointer;
        scale: 0.98;
    }

    /* ================================================================== */
    /* ============================== FILMS ============================= */
    /* ================================================================== */

    .films {
        width: 100%;
        height: auto;

        padding: 7vw 8vw;
    }

    .films-headline {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .films-headline h2 {
        font-family: "Rubik Mono One", monospace;
        font-size: 6vw;
        font-weight: 400;
        color: #FFFFFF;
    }

    .films-headline p {
        font-size: 4vw;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .swiper-container-wrapper {
        position: relative;
        margin-top: 2vw;
        width: 100%;
    }

    .swiper {
        width: 100%; 
        height: 100%;
    }

    .swiper-slide {
        width: 100%;
        height: 50vw !important;

        border-radius: 0.625vw !important;
        position: relative;
        overflow: hidden;
    }

    .swiper-slide .slide-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #444;
        border-radius: 3vw !important;
        overflow: hidden;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 3vw !important;
        transition: transform 0.3s ease;
    }

    .swiper-slide .slide-link:hover img {
        transform: scale(1.05);
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12vw;
        height: 12vw;
        background-color: rgba(0, 0, 0, 0.6); 
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .play-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-top: 3vw solid transparent;
        border-bottom: 3vw solid transparent;
        border-left: 4.7vw solid #FFFFFF;
        margin-left: 0.5vw;
    }

    .swiper-slide .slide-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color 0.3s ease;
        border-radius: 0.625vw !important;
        z-index: 1;
    }

    .swiper-slide .slide-link:hover::before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .play-button {
        z-index: 2;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 6vw !important;
    }

    .swiper-button-prev {
        transform: translateX(-6vw) !important;
        left: -2vw !important;
    }

    .swiper-button-next {
        transform: translateX(6vw) !important;
        right: -2vw !important;
    }
}