:root {
    --main-font: 'Noto Sans', sans-serif;
    --info-title-font: clamp(11px, calc(2vw + 2vh), 32px);
    --adaptive-font: clamp(16px, calc(1.5vw + 0.5vh), 26px);
    --info-h2-font: clamp(9px, calc(2vw + 2vh), 30px);
}

#menu-overlay {
    background: rgba(0, 26, 60, 0.8);
}

#info {
    margin-bottom: 0 !important;
    padding-bottom: clamp(5vh, calc(3vw + 3vh), 10vh);
}

/* endregion */
/* region INFO-PAGE */
#info-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 2% 5%;
    color: white;
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.paytable-title {
    font-family: var(--main-font);
    font-size: var(--info-title-font);
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.title-underline {
    width: clamp(300px, 50vw, 800px);
    height: clamp(2px, calc(0.5vw + 0.5vh), 4px);
    background: linear-gradient(90deg, rgba(147, 154, 187, 0.00) 0%, #E03B2A 47.5%, rgba(147, 154, 187, 0.00) 97.81%);
    margin-top: 1%;
}

@media (orientation: portrait) {
    .title-underline {
        height: 2px;
    }
}

.h2-container {
    display: flex;
    align-items: baseline;
    gap: clamp(0.5vw, 1vw, 1.5vw);
    padding-block: clamp(1vh, 2vh, 3vh);
}

.triangle {
    display: flex;
    align-items: baseline;
    height: auto;
    transform: translateY(0.1em);
}
.triangle svg {
    display: block;
    height: 100%;
    width: auto;
}

#info-page h2 {
    font-size: var(--info-h2-font);
    color: #9fe1ff;
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-variant: all-small-caps;
    margin: 0;
}

.header {
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(1rem, calc(1.7vw + 1.5vh), 2.3rem);
    letter-spacing: .02em;

    color: transparent;
    text-align: center;
    background: linear-gradient(to bottom, #ecff26 30%, #a6f10b 50%, #2bd100 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.3px #00ff3f;
    text-stroke: 1.3px #00ff3f;
    filter:
            drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.2))
            drop-shadow(0px 0px 10px rgba(43, 0, 70, 0.2))
            drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2)) !important;

    text-shadow: none !important;
}

.text-gold {
    position: relative;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: transparent;
    text-align: center;
    font-size: clamp(1.3rem, calc(1.7vw + 1vh), 2.7rem);
    
    filter:
            drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.5))
            drop-shadow(0px 0px 10px rgba(43, 0, 70, 0.3))
            drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.3)) !important;

    text-shadow: none !important;
}

.text-gold span {
    display: inline;
    background: linear-gradient(
            to bottom,
            #ffe426 40%,
            #f14c0b 70%,
            #ff7f21 30%,
            #f14c0b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #eeed13;
    text-stroke: 1px #eeed13;

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.text-sub-title {
    position: relative;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-align: center;
    font-size: clamp(1.3rem, calc(1.5vw + 1vh), 2.7rem);

    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.2))
    drop-shadow(0 0 6px rgba(0, 128, 255, 0.1));
}

.text-sub-title span {
    display: inline;
    background-image: linear-gradient(
            to bottom,
            #50e3c2 0%,
            #eb76ff 35%,
            #ffcc00 90%,
            #0095ff 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    -webkit-text-stroke: 0.5px #c3fff4;
    text-stroke: 0.5px #c3fff4;

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.number-pay {
    font-size: clamp(0.85rem, calc(0.8vw + 0.8vh), 1.3rem);
    font-weight: 700;
    color: #a6ff27;
}

.arrow {
    display: inline-block;
    color: #ffeb3b;
    font-weight: bold;
    margin: 0 6px;
    animation: arrowPulse 1.2s infinite;
    text-shadow: 0 0 4px #ff9800, 0 0 8px #ffee22;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(3px);
        opacity: 0.7;
    }
}

#info-page .game-name {
    font-size: clamp(1rem, calc(2vw + 2vh), 3rem);
    margin: 2%;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ecff26 30%, #a6f10b 50%, #2bd100 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.3px #00ff3f;
    text-stroke: 1.3px #00ff3f;
    filter:
            drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.2))
            drop-shadow(0px 0px 10px rgba(43, 0, 70, 0.2))
            drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2)) !important;

    text-shadow: none !important;
}

.rtp-info .game-name {
    margin: 2% auto;
    padding: 0;
    text-align: center;
    width: auto;
    max-width: 100%;
    align-self: center;
}

.rtp-info p {
    text-align: center;
}

#info-image11.feature-preview {
    margin: 0;
    padding: 0;
    display: block;
}

.triangle {
    display: flex;
    align-items: stretch;
    height: clamp(12.7px, calc(1.4vw + 1.4vh), 21px);
}

#info-page #paytable {
    grid-template-columns: repeat(auto-fit, 340px);
    gap: 3%;
    padding: 10px;
    justify-content: center;
}

#info-page .symbol {
    width: clamp(120px, calc(10vw + 10vh), 380px);
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

#info-page .special-symbols img {
    width: clamp(100px, 15vw, 180px);
    object-fit: contain;
    margin-bottom: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    gap: clamp(16px, 3vh, 40px);
    max-width: 100%;
    margin: 0 auto;
}

.feature-content.no-bottom-padding {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;

    padding-bottom: 20px;
    margin: 0 auto;
    overflow: visible;
}

.feature-previews.with-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
}

.feature-previews.with-text .arrow2-img {
    display: block;
    object-fit: contain;
    width: clamp(40px, 5vw, 7vw);
    height: auto;
    margin: 1.5vh auto;
    animation: arrow2Pulse 1.4s ease-in-out infinite;
}

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

.three-scatters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    transform: translateY(-2vh);
    white-space: nowrap;
}

.three-scatters p {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    padding-bottom: 3%;
    white-space: normal;
    line-height: 1.3;
}

.adaptive-image {
    width: auto;
    height: auto;
    max-height: 45vh;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.feature-preview.adaptive-image2 {
    width: auto;
    height: auto;
    max-width: 85vw;
    max-height: 55vh;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.feature-block img.feature-preview.adaptive-image2 {
    flex-shrink: 0;
    flex-grow: 1;
    align-self: center;
    justify-self: center;
}

.feature-preview.adaptive-image {
    display: block;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: width 0.3s ease, transform 0.3s ease;
    backface-visibility: hidden;
}

@media (orientation: landscape) {
    #info-page .special-symbols .symbol {
        width: clamp(300px, 30vw, 400px);
    }
}

#info-page .high-symbols img {
    width: clamp(45px, calc(13vw + 12vh), 200px);
    height: clamp(45px, calc(13vw + 12vh), 200px);
    object-fit: contain;
    margin-bottom: 0;
}

#info-page .low-symbols img {
    width: clamp(55px, 11vw, 125px);
    height: clamp(55px, 11vw, 125px);
    object-fit: contain;
    margin-bottom: 0;
}

/*@media (orientation: landscape) {*/
/*    .high-symbols {*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));*/
/*        gap: 20px;*/
/*        justify-content: center;*/
/*        margin-bottom: 40px;*/
/*    }*/
/*    .low-symbols{*/
/*        display: grid;*/
/*        grid-template-columns: repeat(*/
/*      auto-fit,*/
/*      minmax(clamp(64px, 12vmin, 120px), 1fr)*/
/*    );*/
/*        gap: clamp(8px, 2vmin, 20px);*/
/*        justify-items: center;*/
/*        margin-bottom: 40px;*/
/*    }*/
/*}*/
/*@media (orientation: landscape) and (max-height: 420px),*/
/*(orientation: landscape) and (max-width: 740px){*/
/*    .low-symbols{*/
/*        grid-template-columns: repeat(*/
/*      auto-fit,*/
/*      minmax(clamp(56px, 10vmin, 100px), 1fr)*/
/*    );*/
/*        gap: clamp(6px, 1.6vmin, 14px);*/
/*    }*/
/*}*/

#info-page .symbol p {
    font-family: var(--main-font);
    margin: 4px 0;
    text-align: center;
}

p {
    font-weight: 400;
    font-family: var(--main-font);
    font-size: var(--adaptive-font);
    margin: 30px 0;
    text-align: justify;
}

.play-mode {
    display: block;
    text-align: center;
}

.special-symbols {
    display: flex;
    justify-content: center;
    gap: clamp(5%, 15%, 30%);
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (orientation: portrait) {
    .triangle {
        display: flex;
        align-items: baseline;
    }

    .special-symbols {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        justify-items: center;
        align-items: start;
        gap: clamp(15px, 4vw, 30px) clamp(20px, 6vw, 40px);
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .high .payout {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-left: auto;
        margin-right: auto;
    }

    .high .payout {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-left: auto;
        margin-right: auto;
        color: #fff997;
        text-shadow: 0 1px 4px rgba(33, 0, 48, 0.6);
    }

    .payout p {
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
        margin: 0 clamp(16px, 4vmin, 48px);
        text-align: left;
    }

    .high-symbols,
    .low-symbols {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: center;
        justify-items: center;
        align-items: start;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .high-symbols,
    .low-symbols {
        gap: clamp(8px, 2vw, 12px)
    }

    .high-symbols .symbol,
    .low-symbols .symbol {
        margin: 0;
        padding-top: 0;
    }

    #info-page .special-symbols {
        margin-bottom: 0;
        padding: 0;
    }

    #info-page .symbol {
        max-width: 100%;
        width: auto;
        box-sizing: border-box;
    }

    .symbol {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #info-page .high-symbols img {
        margin-bottom: 0;
    }

    #info-page .high-symbols img {
        width: clamp(80px, 40vw, 280px);
        height: clamp(10vmin, 18vh, 25vmin);
    }

    #info-page .low-symbols img {
        width: clamp(60px, 15vw, 140px);
        height: clamp(60px, 15vw, 140px);
        object-fit: contain;
        margin-bottom: clamp(0.5vh, 1.5vmin, 2vh);
    }
}

@media (orientation: landscape) {
    .high-symbols, .high-symbols, .low-symbols-two {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
    }
}

.separator {
    display: flex;
    align-items: center;
    width: clamp(300px, 50vw, 800px);
    height: clamp(2px, calc(0.5vw + 0.5vh), 4px);
    margin: 0 auto 0 auto;
    margin-bottom: 1vh;
    background: linear-gradient(90deg, rgba(147, 154, 187, 0.00) 0%, #939ABB 47.5%, rgba(147, 154, 187, 0.00) 97.81%);
}

@media (orientation: portrait) {
    .separator {
        height: 2px;
    }
}

.feature-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    color: white;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.feature-content.scatter {
    padding-bottom: 0;
    margin-bottom: 0;
    gap: 1vw;
    align-items: center;
}

.feature-preview {
    display: flex;
    justify-content: center;
    height: auto;
    object-fit: contain;
}

.feature-preview.no-margin {
    margin-bottom: 0 !important;
}

.h2-container.no-padding {
    padding-bottom: 0 !important;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    line-height: 1.4;
    font-family: var(--main-font);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    text-align: center;
    hyphens: auto;
    word-break: break-word;
}

.feature-text.up {
    transform: translateY(-5px);
}

.feature-text p {
    text-align: center;
}

#info {
    margin-bottom: 10%;
}

.paylines-container {
    margin-bottom: 50px;
}

.payline-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (orientation: landscape) {
    #info {
        padding-bottom: 10%;
    }
}

.payline {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--main-font);
    font-size: var(--adaptive-font);
    width: 100%;
}

.line-box {
    width: 100%;
    max-width: clamp(110px, 18vw, 180px);
    min-width: 100px;
    aspect-ratio: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.paylines-content {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 20px);
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
}

.payline { width: 100%; }

.line-box {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.payline-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.line-number {
    margin-bottom: 4px;
    font-size: clamp(10px, 1.6vw, 14px);
}
@media (min-width: 1200px) {
    .paylines-content {
        max-width: 1100px;
        margin: 0 auto;
    }
}

.line-number {
    margin-bottom: 4px;
    font-size: 0.9em;
    text-align: center;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payline-info p {
    margin-top: 20px;
    text-align: center;
    line-height: 1.4;
}

.rtp-info p {
    margin: 0;
}

.highlight {
    color: #ff5849;
    display: block;
    text-align: center;
    margin: 0;
}

.red-bold {
    color: #DB3928;
    font-weight: bold;
}

.info-button-container .button-info {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}
.info-button-container .button-info p {
    margin: 0 !important;
}
#info p {
    font-family: var(--main-font);
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 3% 0;
}

#btn-info {
    width: clamp(50px, 10vw, 96px);
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
}

.button-info p {
    flex: 1;
    line-height: 1.6;
    margin-top: 10px;
}

ul.menu-list-items {
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    list-style-type: disc;
    padding-left: 10%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: var(--adaptive-font);
    padding-bottom: 10px;
    text-align: justify;
}

ul.menu-list-items2 {
    line-height: 1.8;
    flex-wrap: wrap;
    list-style-type: disc;
    padding-left: 2%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: var(--adaptive-font);
    padding-bottom: 10px;
    text-align: justify;
}

ul.menu-list-items4 {
    line-height: 1.8;
    flex-wrap: wrap;
    list-style-type: disc;
    padding-left: 2%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: var(--adaptive-font);
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

ul.menu-list-items3 {
    line-height: 1.8;
    flex-wrap: wrap;
    list-style-type: circle;
    padding-left: 2%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: var(--adaptive-font);
    padding-bottom: 10px;
}

li. list {
    display: flex;
    align-items: center;
}

ul.menu-list-items li {
    color: #FFFFFF;
    margin-bottom: 10px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.inner-bullets {
    line-height: 1.8;
    flex-wrap: wrap;
    padding-left: 3%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--adaptive-font);
    list-style-type: none;
}

.inner-bullets li {
    position: relative;
    line-height: 1.8;
    flex-wrap: wrap;
    list-style-type: disc;
    padding-left: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--adaptive-font);
    padding-bottom: 10px;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
}

#info-up img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (orientation: portrait) {
    #menu-ui {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 40px;
        display: flex;
        background: linear-gradient(to bottom, rgba(1, 2, 16, 0) 0%, #010210 100%);
        justify-content: center;
        gap: 5px;
        margin: 0 auto;
    }

    #menu-ui-container {
        position: relative;
        width: 100%;
        height: 40px;
        border-radius: 0 12px 0 0;
        background: rgba(29, 26, 52);
        box-shadow: 0 -1.5px 1.5px rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .menu-button {
        width: 100%;
        height: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .menu-button.active {
        background: linear-gradient(to right, rgba(239, 66, 48, 1), rgba(136, 20, 8, 1));
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.80));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #info-icon.menu-button.active {
        border-top-left-radius: 0;
        cursor: pointer;
    }

    #menu-close-button {
        pointer-events: all !important;
        height: 40px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px 12px 0 0;
        background: rgba(57, 61, 86, 1);
        box-shadow: 0 -1.5px 1.5px rgba(0, 0, 0, 0.7);
        cursor: pointer;
        box-sizing: border-box;
    }

    .close-icon {
        height: 55%;
        width: auto;
        display: block;
        filter: drop-shadow(0px 1.59px 1.59px rgba(0, 0, 0, 0.50));
    }
    #info p.all-margin-content {
        margin-bottom: 3vh;
    }
    #info {
        padding-bottom: calc(6rem + env(safe-area-inset-bottom)) !important;
    }
}

@media (orientation: portrait) and (max-width: 660px) {
    .info-button-container .button-info {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
        align-items: flex-start;
    }
    .info-button-container .button-info p {
        margin-bottom: 3% !important;
    }
}

@media (orientation: landscape) {
    #menu-ui {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: clamp(40px, 6vh, 80px);
        display: flex;
        background: linear-gradient(to bottom, rgba(1, 2, 16, 0) 0%, #010210 100%);
        justify-content: center;
        gap: 5px;
        margin: 0 auto;
    }

    #menu-ui-container {
        position: relative;
        width: 80%;
        height: clamp(40px, 6vh, 80px);
        border-radius: 16px 16px 0 0;
        background: rgba(29, 26, 52);
        box-shadow: 0px -2.918px 2.918px 0px rgba(0, 0, 0, 0.80);
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .menu-button {
        width: 100%;
        height: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: background 0.3s ease;
        /*cursor: pointer;*/
    }

    .menu-button.active {
        background: linear-gradient(to right, rgba(239, 66, 48, 1), rgba(136, 20, 8, 1));
        border-radius: 16px 16px 0 0;
        filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.80));
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    #info-icon.menu-button.active {
        border-radius: 16px 0 16px 0;
        cursor: pointer;
    }

    #history-icon.menu-button.active {
        border-radius: 0 16px 0 16px;
        cursor: pointer;
    }

    #menu-close-button {
        pointer-events: all !important;
        height: clamp(40px, 6vh, 80px);
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(57,61,86,1);
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -2.918px 3px 0 rgba(0, 0, 0, 0.80);
        cursor: pointer;
        box-sizing: border-box;
    }

    .close-icon {
        height: 55%;
        width: auto;
        display: block;
        filter: drop-shadow(0px 1.59px 1.59px rgba(0, 0, 0, 0.50));
    }
    #info p.all-margin-content {
        margin-bottom: 3vh;
    }
    #info {
        padding-bottom: calc(4rem + env(safe-area-inset-bottom)) !important;
    }
}

.info-button-container, .additional-margin {
    margin-bottom: 20px;
}

#info {
    margin-bottom: 0 !important;
    padding-bottom: clamp(5vh, calc(3vw + 3vh), 10vh);
}

ul.menu-list-items li {
    font-family: "Noto Sans", sans-serif !important;
    color: #FFFFFF;
}

.inner-bullets {
    font-family: "Noto Sans", sans-serif;
}

ul.menu-list-items3, ul.menu-list-items2, ul.menu-list-items  {
    font-family: "Noto Sans", sans-serif !important;
}

.info-button-container, .additional-margin {
    margin-bottom: 20px;
}

.no-margin {
    margin-bottom: 0!important;
    padding-bottom: 1.5%;
}

@media (orientation: portrait) {
    #info {
        padding-bottom: calc(6rem + env(safe-area-inset-bottom)) !important;
    }
}

@media (orientation: portrait) and (max-width: 700px) {
    .info-button-container .button-info {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
        align-items: flex-start;
    }
    .info-button-container .button-info p {
        margin-bottom: 3% !important;
    }
}

@media (orientation: landscape) {
    .info-button-container .button-info {
        align-items: center;
    }
    .info-button-container .button-info p {
        margin: 0 !important;
    }
    .button-info {
        margin-bottom: 1%;
    }
    #info {
        padding-bottom: calc(4rem + env(safe-area-inset-bottom)) !important;
    }
}

@media (orientation: portrait) {
    .feature-content {
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        padding: 0;
        margin-bottom: 3%;
        gap: 0;
    }

    .feature-text {
        font-size: clamp(1rem, 3.5vw, 1.5rem);
    }

    .rtp-info {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 0;
    }
}

@media (orientation: landscape) and (max-width: 900px) {
    .adaptive-image {
        max-height: 60vh;
    }

    .feature-preview.adaptive-image2 {
        max-height: 65vh;
        max-width: 90vw;
    }
}

@media (orientation: landscape) {
    .special-symbols,
    .high-symbols,
    .low-symbols {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        gap: clamp(20px, 4vw, 60px);
        margin: 0 auto 40px auto;
        width: 100%;
        max-width: 100%;
    }

    .special-symbols .symbol,
    .high-symbols .symbol,
    .low-symbols .symbol {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        width: clamp(120px, 16vw, 220px);
    }

    .special-symbols img,
    .high-symbols img,
    .low-symbols img {
        height: clamp(80px, 15vh, 180px);
        width: auto;
        object-fit: contain;
    }

    .number-pay {
        margin-top: 8px;
        font-weight: 700;
        text-align: center;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .number-pay {
        font-size: clamp(0.8rem, calc(0.6vw + 0.6vh), 0.95rem);
    }
}

@media (orientation: portrait) {
    .special-symbols {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(20px, 4vh, 40px);
        margin: 0 auto 40px auto;
        width: 100%;
    }

    .high-symbols,
    .low-symbols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: start;
        gap: clamp(20px, 4vw, 50px);
        width: 100%;
        margin: 0 auto 40px auto;
        max-width: 95%;
    }

    .special-symbols .symbol,
    .high-symbols .symbol,
    .low-symbols .symbol {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 180px;
    }

    .special-symbols img,
    .high-symbols img,
    .low-symbols img {
        height: clamp(80px, 14vh, 160px);
        width: auto;
        object-fit: contain;
    }

    .number-pay {
        margin-top: 8px;
        text-align: center;
    }
}

.feature-container .feature-content,
.feature-container .feature-content.with-margin,
.feature-container .feature-content.no-bottom-padding {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 5%;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0;
}

.feature-container .feature-content .feature-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    flex: none;
}

.feature-container .feature-content .feature-text p {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 0 1em 0;
}