/* 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;
}

: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: Roboto, sans-serif;
    --laptop-size: 1199px;
    --tablet-size: 959px;
    --mobile-size: 599px;
}

h1,
h2,
h2,
h3,
.social__h3 {
    font-weight: normal;
    overflow-wrap: break-word;
    font-family: Roboto;
    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,
.social__h2 {
    font-size: clamp(1rem, 0.6538461538rem + 1.5384615385vw, 2rem);
}

h3,
.social__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;
}

.social__no-scroll {
    overflow: hidden;
}

.social__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;
}

.social__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;
}

.social__items .social__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%;
}

.social__terms .social__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;
}

.social__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;
}

.social__btn,
.social__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: Roboto;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

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

.social__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;
}

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

.social__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);
}

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

.social__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 */

.social__banner .social__btn {
    position: relative;
    overflow: hidden;
}

.social__banner .social__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);
    }
}

.social__contact .social__btn {
    width: 100%;
    max-width: 434px;
    margin-inline: auto;
}

.social__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;
}

.social__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;
}

.social__contact input,
.social__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;
}

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

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

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

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

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

.social__contact textarea {
    resize: none;
}

.social__contact label {
    font-family: Roboto;
}

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

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

.social__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;
}

.social__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: Roboto;
    text-transform: uppercase;
    font-size: 14px;
}

.social__footer a:hover {
    opacity: 0.6;
}

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

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

.social__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;
}

.social__footer .social__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;
}

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

.social__game {
    padding: 20px 0;
}

.social__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/social__loading.gif');
    background-position: center center;
    background-size: 60px 60px;
    background-repeat: no-repeat;
}

.social__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;
}

.social__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;
}

.social__header .social__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;
}

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

.social__header .social__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);
}

.social__header .social__nav__list a:hover {
    border-color: #f1ce2e;
}

.social__header .social__active {
    border-color: #f1ce2e !important;
}

.social__header a {
    color: #f2f2f2;
    font-family: Roboto;
}

.social__header .social__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;
}

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

.social__header .social__dropdown {
    position: relative;
    font-family: Roboto;
    font-size: clamp(0.625rem, 0.4951923077rem + 0.5769230769vw, 1rem);
}

.social__header .social__dropdown button {
    text-transform: uppercase;
}

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

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

.social__header .social__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;
}

.social__header .social__dropdown.social__active .social__dropdown-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social__header .social__dropdown.social__active button::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

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

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

.social__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;
}

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

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

.social__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;
}

.social__mobile-nav__list .social__active {
    opacity: 0.5;
}

/* Nav Icon */

.social__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;
}

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

.social__nav-icon::before,
.social__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;
}

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

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

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

.social__nav-icon.social__nav-icon--active::before,
.social__nav-icon.social__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;
}

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

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

/* Layout */

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

.social__top img {
    border-radius: 20px;
}

.social__top .social__btn {
    width: 100%;
    max-width: 434px;
    margin-inline: auto;
}

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

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

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

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

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

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

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

    .social__wrapper img {
        height: 200px;
    }

    .social__banner .social__btn {
        width: 100%;
        max-width: 434px;
    }

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

    .social__contact .social__img {
        height: 65px;
    }

    .social__footer {
        padding: 30px 0;
    }

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

    .social__footer .social__age {
        padding-right: 0;
    }

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

    .social__header {
        padding: 8px 0;
    }

    .social__header .social__nav {
        gap: 0px;
    }

    .social__header .social__nav__list {
        gap: 16px;
    }

    .social__header .social__nav__list li:first-child {
        display: none;
    }

    .social__header .social__logo {
        gap: 4px;
    }

    .social__header .social__dropdown-menu {
        left: -10px;
        padding: 10px;
        width: 60px;
    }

    .social__top img {
        height: 260px;
    }
}
