:root {
    --primary: #FFB800;
    --on-primary: #422C00;
    --on-primary-rgb: 66, 44, 0;
    --on-primary-container: #FFDEAA;
    --on-surface: #E4E2E1;
    --on-surface-variant: #C8C6C5;
    --surface-container: #31363C;
    --surface-container-lowest: #0A0F14;
    --outline-variant: #3C3F47;
    --background: #000000;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2');
    src: url('../fonts/Satoshi-Light.woff') format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
    src: url('../fonts/Satoshi-Regular.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
    src: url('../fonts/Satoshi-Medium.woff') format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
    src: url('../fonts/Satoshi-Bold.woff') format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


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

a {
    outline: none;
}

h1 {
    font-size: clamp(2.5rem, 4.25vw, 4rem) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

h2, .h2 {
    font-size: clamp(2.5rem, 4.25vw, 4rem) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

h2.title {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
    font-weight: 500 !important;
}

h3 {
    font-size: clamp(2rem, 2.75vw, 3rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.025rem !important;
    font-weight: 500 !important;
}

h4 {
    font-size: clamp(1.75rem, 2.25vw, 2.5rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.05rem !important;
    font-weight: 600 !important;
}

h5 {
    font-size: clamp(1.375rem, 1.5vw, 2.25rem) !important;
    line-height: 1.375 !important;
    letter-spacing: 0.025rem !important;
    font-weight: 500 !important;
}

h6 {
    font-size: clamp(1rem, 1.25vw, 1.75rem) !important;
    line-height: clamp(1.5rem, 2vw, 2.5rem) !important;
    letter-spacing: 0.025rem !important;
    font-weight: 500 !important;
}

p {
    font-size: clamp(1rem, 1vw, 1.25rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.025rem !important;
    font-weight: 300 !important;
}

.app-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    overflow: hidden;
}

.app-button img {
    width: auto;
    height: 100%;
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border-radius: 1.5rem;
    font-weight: 600;
    height: 3rem;
    font-size: 1rem;
    letter-spacing: 0.0375rem;
    overflow: hidden;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
}

.app-button:before,
.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
    animation: shimmer 2.8s 1.4s ease-in-out infinite;
}

.button svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
}

@keyframes shimmer {
    0% {
        left: -120%
    }
    60%, 100% {
        left: 160%
    }
}

@media (min-width: 1280px) {
    .app-button {
        height: 4rem;
    }

    .button {
        height: 4rem;
        border-radius: 2rem;
        padding: 0 2rem;
        font-size: 1.25rem;
    }

    .button svg {
        width: 2rem;
        height: 2rem;
    }
}

.button.primary {
    background-color: var(--primary);
    color: var(--on-primary);
    fill: var(--on-primary);
}

.button.primary:hover {
    background-color: rgba(255, 184, 0, .72);
}

.button.purple {
    color: #FFFFFF;
    box-shadow: 0 .5rem 1.5rem 0 rgba(141, 29, 255, .2);
    background: linear-gradient(180deg, #6B00D7 100%, #8D1DFF 100%);
}

.button.purple:hover {
    box-shadow: 0 .6255rem 2rem 0 rgba(141, 29, 255, .36);
}

.icon-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: .5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
}

.icon-button svg {
    width: 100%;
    height: 100%;
}

.icon-button.primary svg {
    fill: var(--primary);
    transition: all .2s linear;
}

.icon-button.outline svg {
    fill: var(--on-surface);
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--background);
}

/* Header */
header {
    background-color: var(--background);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
    z-index: 1;
}

.hamburger span,
.hamburger span:before,
.hamburger span:after {
    position: absolute;
    height: 2px;
    width: 24px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
    background-color: var(--on-surface);
}

.hamburger span {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto 0;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.22s;
}

.hamburger span:before {
    content: "";
    top: -7px;
    transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger span:after {
    content: "";
    bottom: -7px;
    transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 1rem;
    right: 1rem;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: .5rem 0;
    border-radius: 1rem;
    visibility: hidden;
    height: auto;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: var(--surface-container-lowest);
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
}

.mobile-menu li {
    display: inline-flex;
    padding: .5rem 1rem;
    width: 100%;
}

.mobile-menu li a {
    display: inline-flex;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    color: var(--on-surface);
}

.mobile-menu li a.active {
    color: var(--primary);
}

/* Desktop menu */
.desktop-menu {
    align-items: center;
    justify-content: flex-end;
}

.desktop-menu li {
    display: inline-flex;
    padding: .5rem 1.25rem;
    width: auto;
}

.desktop-menu li a {
    position: relative;
    display: inline-flex;
    font-size: 1.125rem;
    letter-spacing: 0.025rem;
    font-weight: 500;
    width: 100%;
    color: var(--on-surface);
}

.desktop-menu li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -0.25rem;
    right: 0.25rem;
    width: calc(100% + 0.5rem);
    margin: 0 auto;
    height: 2px;
    opacity: 0;
    background-color: var(--primary);
    transform: translate(0, 10px);
    -webkit-transform: translate(0, 10px);
    transition: opacity 0.15s, transform 0.25s;
    -webkit-transition: opacity 0.15s, transform 0.25s;
}

.desktop-menu li a:hover:after {
    opacity: 1;
    transform: translate(0, 6px);
    -webkit-transform: translate(0, 6px);
    transition: opacity 0.15s, transform 0.25s;
    -webkit-transition: opacity 0.15s, transform 0.25s;
}

.desktop-menu li a.active:after {
    opacity: 1;
    transform: translate(0, 6px);
    -webkit-transform: translate(0, 6px);
}

/* Menu active */
.hamburger.active span {
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(225deg);
}

.hamburger.active span:before {
    top: 0;
    transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
    opacity: 0;
}

.hamburger.active span:after {
    bottom: 0;
    width: 24px;
    transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transform: rotate(-90deg);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s linear, visibility .4s linear;
    -webkit-transition: opacity .4s linear, visibility .4s linear;
}

/* Banner */
.banner {
    width: 100%;
    height: 100%;
}

.banner:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(107, 0, 215, .25) 100%);
    transition: height 5s 1s cubic-bezier(.175,.885,.32,1.275);
}

.banner.animated:before {
    height: 100%;
}

.banner .content h1,
.banner .content h6 {
    color: var(--on-surface);
}

.banner .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner .image-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 65%;
    object-fit: contain;
}

.banner .image-wrapper img:nth-child(1) {
    transform: translateX(30%);
    z-index: 2;
    animation-delay: 2.5s;
    animation: leftFloat 6s ease-in-out infinite;
}

.banner .image-wrapper img:nth-child(2) {
    transform: translateX(-30%);
    z-index: 1;
    animation: rightFloat 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes leftFloat {
    0%, 100% {
        transform: translate3d(30%, 0, 0) rotate(-3deg);
    }

    50% {
        transform: translate3d(30%, -22px, 0) rotate(0deg) scale(1.015);
    }
}

@keyframes rightFloat {
    0%, 100% {
        transform: translate3d(-30%, 0, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(-30%, -18px, 0) rotate(6deg) scale(1.015);
    }
}

/* Category */
.category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    background: transparent;
}

.category-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) -10%, rgba(107, 0, 215, .2) 100%);
    transition: height .2s linear;
}

.category-item .icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 3.5rem;
    z-index: 1;
}

.category-item .icon-wrapper img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.category-item h5 {
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.category-item p {
    position: relative;
    z-index: 1;
    color: var(--on-surface);
}

.category-item .icon-button.primary svg {
    position: relative;
    z-index: 1;
}

.category-item .icon-button.primary:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all .2s linear;
    background-color: var(--primary);
}

.category-item:hover:before {
    height: 100%;
}

.category-item:hover .icon-button.primary:before {
    height: 100%;
}

.category-item:hover .icon-button.primary svg {
    fill: var(--on-primary);
}

/* Banner Jame DoDo */
.left-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(70, 0, 111, 1) 20%, rgba(46, 0, 73, 1) 60%, rgba(46, 0, 73, .1) 100%)
}

.game-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.game-item .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.game-item .image-wrapper img {
    transition: all .2s linear;
}

.game-item:before, .game-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 1;
}

.game-item:before {
    width: 100%;
    background: var(--outline-variant);
}

.game-item:after {
    width: 0;
    transition: width .2s linear;
    background: var(--on-surface);
}

.game-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.game-item:hover:after {
    width: 100%;
}

.game-item:hover .icon-button {
    border-color: var(--on-surface);
}

@media (min-width: 1024px) {
    .game-item {
        max-width: 100%;
    }
}

.parallax-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-wrapper .prize-layer {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 94%;
    max-width: 880px;
    object-fit: contain;
    height: auto;
    margin: 0 auto;
    z-index: 1;
}

@media (min-width: 1536px) {
    .parallax-wrapper .prize-layer {
        width: 100%;
        max-width: 1200px;
    }
}

footer {
    border-top: 1px solid var(--outline-variant);
}

footer ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

footer ul li {
    display: inline-flex;
    padding: .5rem 0;
    width: auto;
}

footer ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 1rem;
    line-height: 1.75rem;
    opacity: .86;
}

footer ul li a.link {
    transition: transform .2s linear;
}

footer ul li a.link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--on-surface);
    transition: width .2s linear;
    -webkit-transition: width .2s linear;
}

footer ul li a.link:hover {
    transform: translateX(.5rem);
    -webkit-transform: translateX(.5rem);
    transition: transform .2s linear;
    -webkit-transition: transform .2s linear;
}

footer ul li a.link:hover:before {
    width: 100%;
}

footer ul li a svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5rem;
    fill: var(--on-surface);
}

footer ul li a span {
    font-size: 1rem;
    letter-spacing: 0.025rem;
    font-weight: 500;
    color: var(--on-surface);
}

footer ul li a:not(.link):hover span,
footer ul li a:hover svg {
    fill: var(--primary);
    color: var(--primary);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.social-icon:not(:last-child) {
    margin-right: .75rem;
}

.social-icon svg {
    width: 2rem;
    height: 2rem;
    fill: var(--on-surface);
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
}

.social-icon:hover svg {
    fill: var(--primary);
}

.faq-list li {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--outline-variant);
}

.faq-list li .title-wrapper,
.policy-list li .title-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-list li .number,
.policy-list li .number {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 50%;
    margin-right: .75rem;
    color: var(--primary);
    background-color: var(--on-primary);
    border: 1px solid var(--primary);
}

.faq-list li .title,
.policy-list li .title {
    color: var(--on-surface);
}

.faq-list li p,
.policy-list li p,
.policy-list li ol *,
.policy-list li ul * {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    color: var(--on-surface-variant);
}

.faq-list li p:not(:last-child),
.policy-list li p:not(:last-child) {
    margin-bottom: .25rem;
}

.faq-list li .content {
    padding-left: 2.75rem;
    margin-top: .5rem;
}

.policy-list li .content {
    margin-top: .5rem;
}

@media (min-width: 1536px) {
    .faq-list li{
        padding: 1.25rem;
    }

    .faq-list li .number,
    .policy-list li .number {
        margin-right: 1rem;
    }

    .faq-list li .content {
        padding-left: 3rem;
    }
}
