/* Reset and base styles  */

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type='submit'] {
    display: inline-block;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

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

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

:root {
    --container-width: 1440px;
    --container-padding: 100px;
    --container-padding-tablet: 16px;
    --background: linear-gradient(0deg, #8e6426 0%, #343f45 100%);
    --font-color: #fff;
    --font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
    --font-family: Poppins, sans-serif;
    --laptop-size: 1199px;
    --tablet-size: 959px;
    --mobile-size: 599px;
}

h1,
h2,
h2,
h3,
.h3 {
    font-weight: normal;
    overflow-wrap: break-word;
    font-family: Revalia;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f9f664),
        to(#ab7300)
    );
    background: linear-gradient(180deg, #f9f664 0%, #ab7300 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.125rem, 0.7355769231rem + 1.7307692308vw, 2.25rem);
}

h2,
.h2 {
    font-size: clamp(1rem, 0.6538461538rem + 1.5384615385vw, 2rem);
}

h3,
.h3 {
    font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.125rem);
    text-transform: uppercase;
}

html {
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    background: var(--background);
    color: var(--font-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: 300;
}

html,
body {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.no-scroll {
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.items .item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.terms .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
    margin: 40px 0;
}

.btn,
.btn:focus {
    white-space: nowrap;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 12px 40px;
    border-radius: 20px;
    background: #a77700;
    -webkit-box-shadow: inset 0px -100px 30px -80px #8aad01;
    box-shadow: inset 0px -100px 30px -80px #8aad01;
    color: #fff !important;
    font-size: clamp(0.75rem, 0.6634615385rem + 0.3846153846vw, 1rem);
    font-weight: 400;
    font-family: Revalia;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.btn-active,
.btn:hover,
.btn:active {
    background: #886100;
}

.wrapper {
    border-radius: 20px;
    background: #206867;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(27, 30, 34, 0.3) inset;
    box-shadow: 0px 0px 25px 0px rgba(27, 30, 34, 0.3) inset;
    padding: 60px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.wrapper img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 360px;
}

.wrap {
    border-radius: 20px;
    background: #1b1d21;
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    max-width: 800px;
    font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.125rem);
}

.center {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    width: 100%;
}

/* Blocks */

.banner .btn {
    position: relative;
    overflow: hidden;
}

.banner .btn::after {
    content: '';
    opacity: 0.6;
    position: absolute;
    top: -100px;
    left: -100px;
    display: block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(transparent),
        color-stop(70%, rgba(255, 255, 255, 0.7))
    );
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7) 70%
    );
    width: 40px;
    height: 320px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: slide;
    animation-name: slide;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: translateX(0) rotate(45deg);
        transform: translateX(0) rotate(45deg);
    }

    30%,
    100% {
        -webkit-transform: translateX(500px) rotate(45deg);
        transform: translateX(500px) rotate(45deg);
    }
}

@keyframes slide {
    0% {
        -webkit-transform: translateX(0) rotate(45deg);
        transform: translateX(0) rotate(45deg);
    }

    30%,
    100% {
        -webkit-transform: translateX(500px) rotate(45deg);
        transform: translateX(500px) rotate(45deg);
    }
}

.contact .btn {
    width: 100%;
    max-width: 434px;
    margin-inline: auto;
}

.contact form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.contact form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.contact input,
.contact textarea {
    background: transparent;
    border-radius: 20px;
    background: #206867;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) inset;
    padding: 16px 20px;
    color: #fff;
    font-weight: 400;
}

.contact ::-webkit-input-placeholder {
    font-weight: 400;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact ::-moz-placeholder {
    font-weight: 400;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact :-ms-input-placeholder {
    font-weight: 400;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact ::-ms-input-placeholder {
    font-weight: 400;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact ::placeholder {
    font-weight: 400;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact textarea {
    resize: none;
}

.contact label {
    font-family: Revalia;
}

.contact .img {
    width: 100%;
    max-width: 800px;
    height: 173px;
    background-image: url('../images/mount-m-logo.avif');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.avif .contact .img {
    background-image: url('../images/mount-m-logo.avif');
}

.contact .warning {
    display: none;
    width: 100%;
    color: green;
    padding: 10px;
    border: 1px solid green;
    border-radius: 10px;
    background: #e0e0e0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer {
    margin-top: auto;
    background: #1b1d21;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.3) inset;
    box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.3) inset;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f9f664),
        to(#ab7300)
    );
    background: linear-gradient(180deg, #f9f664 0%, #ab7300 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Revalia;
    text-transform: uppercase;
    font-size: 14px;
}

.footer a:hover {
    opacity: 0.6;
}

.footer p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.footer img {
    -o-object-fit: contain;
    object-fit: contain;
}

.footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.footer .age {
    position: relative;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 50px;
}

.footer .age span {
    position: absolute;
    right: 0;
    top: -5px;
    width: 40px;
    aspect-ratio: 1/1;
    background-image: url('../images/18+.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.footer .responsible-gaming {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
    width: 100%;
}

.footer .responsible-gaming__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    height: 60px;
}

.footer .responsible-gaming__link:hover {
    opacity: 1;
}

.footer .responsible-gaming__link img {
    max-height: 100%;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.game {
    padding: 20px 0;
}

.game iframe {
    width: 100%;
    max-width: 900px;
    height: 560px;
    margin-inline: auto;
    border-radius: 20px;
    background: #1b1d21;
    -webkit-box-shadow: 0px 0px 20px 0px #0196a0 inset;
    box-shadow: 0px 0px 20px 0px #0196a0 inset;
    background-image: url('../images/loading.gif');
    background-position: center center;
    background-size: 60px 60px;
    background-repeat: no-repeat;
}

.header {
    padding: 16px 0;
    background: #1b1d21;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
    box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
}

.header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.header .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.header .nav__list a {
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: clamp(0.5rem, 0.3269230769rem + 0.7692307692vw, 1rem);
}

.header .nav__list a:hover {
    border-color: #f1ce2e;
}

.header .active {
    border-color: #f1ce2e !important;
}

.header a {
    color: #f2f2f2;
    font-family: Revalia;
}

.header .logo {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f9f664),
        to(#ab7300)
    );
    background: linear-gradient(180deg, #f9f664 0%, #ab7300 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: clamp(0.4375rem, 0.1995192308rem + 1.0576923077vw, 1.125rem);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

.header .logo img {
    width: clamp(0.875rem, 0.4855769231rem + 1.7307692308vw, 2rem);
    aspect-ratio: 1/1;
}

.header .dropdown {
    position: relative;
    font-family: Revalia;
    font-size: clamp(0.625rem, 0.4951923077rem + 0.5769230769vw, 1rem);
}

.header .dropdown button {
    text-transform: uppercase;
}

.header .dropdown button::after {
    content: '';
    width: 24px;
    aspect-ratio: 1/1;
    background-image: url('../images/arrow.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.header .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .dropdown-menu {
    width: 90px;
    position: absolute;
    left: -20px;
    display: none;
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 0;
    padding: 10px 20px;
    border-radius: 20px;
    background: #1b1d21;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
    box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
}

.header .dropdown.active .dropdown-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .dropdown.active button::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icons-wrapper {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.icon {
    fill: transparent;
    stroke: transparent;
    width: 62px;
    height: 62px;
}

.mobile-nav {
    position: fixed;
    top: -100%;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #000;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.mobile-nav--open {
    top: 0;
}

.mobile-nav a {
    color: #fff;
}

.mobile-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
    font-size: 28px;
}

.mobile-nav__list .active {
    opacity: 0.5;
}

/* Nav Icon */

.mobile-nav-btn {
    --time: 0.1s;
    --width: 26px;
    --height: 30px;
    --line-height: 3px;
    --spacing: 5px;
    --color: #ffffff;
    --radius: 4px;
    /* Fixed height and width */
    /* height: var(--height); */
    /* width: var(--width); */
    /* Dynamic height and width */
    height: calc(var(--line-height) * 2 + var(--spacing) * 4);
    width: var(--width);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-icon {
    position: relative;
    width: var(--width);
    height: var(--line-height);
    background-color: var(--color);
    border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: var(--width);
    height: var(--line-height);
    border-radius: var(--radius);
    background-color: var(--color);
    -webkit-transition: top var(--time) linear var(--time),
        -webkit-transform var(--time) ease-in;
    transition: top var(--time) linear var(--time),
        -webkit-transform var(--time) ease-in;
    transition: transform var(--time) ease-in,
        top var(--time) linear var(--time);
    transition: transform var(--time) ease-in,
        top var(--time) linear var(--time),
        -webkit-transform var(--time) ease-in;
}

.nav-icon::before {
    /* top: calc(var(--line-height) * -2); */
    top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
    /* top: calc(var(--line-height) * 2); */
    top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
    background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
    top: 0;
    -webkit-transition: top var(--time) linear,
        -webkit-transform var(--time) ease-in var(--time);
    transition: top var(--time) linear,
        -webkit-transform var(--time) ease-in var(--time);
    transition: top var(--time) linear,
        transform var(--time) ease-in var(--time);
    transition: top var(--time) linear,
        transform var(--time) ease-in var(--time),
        -webkit-transform var(--time) ease-in var(--time);
    background-color: #fff;
}

.nav-icon.nav-icon--active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
    z-index: 999;
    display: none;
}

.top img {
    height: 433px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.top .btn {
    width: 100%;
    max-width: 434px;
    margin-inline: auto;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-popup.active {
    opacity: 1;
    visibility: visible;
}

.age-popup__content {
    background: #1b1d21;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0px 0px 40px 0px rgba(1, 150, 160, 0.4) inset,
        0px 0px 60px 0px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.age-popup.active .age-popup__content {
    transform: scale(1);
}

.age-popup__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background-image: url('../images/18+.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.age-popup__title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    margin-bottom: 20px;
    font-family: Revalia;
    background: linear-gradient(180deg, #f9f664 0%, #ab7300 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.age-popup__text {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    margin-bottom: 40px;
    line-height: 1.6;
    color: #fff;
}

.age-popup__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-popup__btn {
    min-width: 180px;
    padding: 16px 40px;
    border-radius: 20px;
    font-family: Revalia;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.age-popup__btn--yes {
    background: #a77700;
    box-shadow: inset 0px -100px 30px -80px #8aad01;
    color: #fff;
}

.age-popup__btn--yes:hover {
    background: #886100;
    transform: translateY(-2px);
    box-shadow: inset 0px -100px 30px -80px #8aad01,
        0px 4px 15px rgba(167, 119, 0, 0.4);
}

.age-popup__btn--no {
    background: transparent;
    border: 2px solid #666;
    color: #fff;
}

.age-popup__btn--no:hover {
    border-color: #999;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 1220px) {
    .items {
        gap: 10px;
    }

    .container {
        padding: 0 var(--container-padding-tablet);
        gap: 20px;
    }

    .mobile-nav-btn {
        display: block;
    }
}

@media (max-width: 930px) {
    .footer .age span {
        position: static;
    }
}

@media (max-width: 820px) {
    .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main {
        margin: 20px 0;
        gap: 40px;
    }

    .wrapper {
        padding: 40px 16px;
        gap: 16px;
    }

    .wrapper img {
        height: 200px;
    }

    .banner .btn {
        width: 100%;
        max-width: 434px;
    }

    .contact input,
    .contact textarea {
        padding: 14px 20px;
    }

    .contact .img {
        height: 65px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .age {
        padding-right: 0;
    }

    .game iframe {
        height: auto;
        aspect-ratio: 1/1;
    }

    .header {
        padding: 8px 0;
    }

    .header .nav {
        gap: 0px;
    }

    .header .nav__list {
        gap: 16px;
    }

    .header .nav__list li:first-child {
        display: none;
    }

    .header .logo {
        gap: 4px;
    }

    .header .dropdown-menu {
        left: -10px;
        padding: 10px;
        width: 60px;
    }

    .top img {
        height: 260px;
    }

    .age-popup__content {
        padding: 40px 20px;
    }

    .age-popup__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .age-popup__buttons {
        flex-direction: column;
    }

    .age-popup__btn {
        width: 100%;
        min-width: auto;
    }

    .footer .responsible-gaming {
        gap: 20px;
        padding: 15px 0;
    }

    .footer .responsible-gaming__link {
        height: 50px;
    }
}
