@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,600;1,600&display=swap');

:root {
    --index: calc(1vh + 1vw);
    --main-black: #030303;
    --black: #000;
    --white: #fff;
    --white-bg: #FBFCFF;

    --accent: #FFB800;

    --main-button-gradient: linear-gradient(86deg, #CF9738 0.64%, #FFC159 21.48%, #D69830 46.08%, #FFC159 77.03%, #E1AA4E 97.39%), #FFF;
    --main-gradient: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
    --cards-gradient: linear-gradient(120deg, #CF9738, #FFC974, #AF843A, #FFCE7C, #E1AA4E);
    
    --layer-bg: var(--main-black);
    --text-primary-color: var(--white);
    --section-padding: 50px 0;
    --main-padding: 20px 0;

}

input:-webkit-autofill,
input:-webkit-autofill-and-obscured,
input:-webkit-autofill-strong-password,
input:-webkit-autofill-strong-password-viewable,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: var(--color, var(--text-primary)) !important;
    background-color: var(--field-01) !important;
    border: 1px solid var(--text-primary) !important;
    -webkit-box-shadow: inset 0 0 0 1000px var(--bg, var(--field-01)) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

::-moz-placeholder {
    font-family: 'Montserrat', sans-serif;
}

::placeholder,
button,
input,
textarea {
    font-family: 'Montserrat', sans-serif;
}

*,
:after,
:before {
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus-visible,
a,
button,
input,
select,
textarea {
    outline: none
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body,
html {
    overscroll-behavior: none
}

body {
    background-color: var(--layer-bg);
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin: 0;
    width: 100%
}

h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

a,
p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    padding-bottom: 40px;
}
img {
    max-width: 100%;
}
.absolute {
    position: absolute;
    width: 100%;
    height: 100%;
}

.relative {
    position: relative;
}

.container {
    max-width: 1340px;
    padding-inline: 20px;
    width: 100%;
    margin: 0 auto;
}

section {
    padding: var(--section-padding);
    scroll-margin-block-start: 20px
}
.section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 128.023%;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: 0;
}
.description {
    color: var(--text-primary-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
}
@property --dark-gradient {
    syntax: '<color>';
    initial-value: #CF9738;
    inherits: false;
}

@property --light-gradient {
    syntax: '<color>';
    initial-value: #FFC159;
    inherits: false;
}
.btn-primary {
    color: var(--main-black);
    font-size: 32px;
    font-weight: 700;
    display: inline-flex;
    padding: 25px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: linear-gradient(86deg, var(--dark-gradient) 0.64%, var(--light-gradient) 21.48%, #D69830 46.08%, var(--light-gradient) 77.03%, var(--dark-gradient) 97.39%), #FFF;
    box-shadow: 0px 4px 9px 0px #A07938;
    transition: all 450ms ease-in-out, --light-gradient 500ms ease, --dark-gradient 500ms ease, transform 250ms ease-in-out;
}
.btn-primary:hover {
    background-position-x: 50px;
    box-shadow: 0px 4px 25px 0px #FFC159;
    --dark-gradient: #fcc76d;
    --light-gradient: #f1bc60;
    color: #fff;
}
.btn-primary:active {
    transform: scale(0.97);
}
main {
    overflow: hidden;
}
/* description-card */
.description-card {
    position: relative;
    width: 90%;
    max-width: 1080px;
    border-radius: 15px;
    background: var(--layer-bg);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.10);
    padding: 30px 42px;
}

.description-card::before {
    content: '';
    position: absolute;
    display: flex;
    border-radius: 15px;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: var(--cards-gradient);
    z-index: -1;
}

.description-card .description {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
}

.grid {
    display: grid;
}
.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center
}
.items-start {
    align-items: flex-start;
}
.text-center {
    text-align: center;
}

.gap20 {
    gap: 20px
}

/* header */
.header, .footer {
    padding: 40px;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 50;
}
.header-bg {
    position: absolute;
    width: 813px;
    height: 813px;
    right: -400px;
    top: calc(-813px / 2);
    border-radius: 813px;
    background: var(--main-gradient);
    filter: blur(400px);
    pointer-events: none;
}
.header::after, .footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-gradient);
}
.logo {
    position: relative;
    display: inline-flex;
}
/* intro */
.intro {
    position: relative;
    padding-block: 120px 0;
    overflow: hidden;
}
.intro__inner {
    padding-block-end: 120px;
}
.intro__bg-image {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    display: flex;
}
.intro__bg-image::after, .intro__bg-image::before, .intro__image::after {
    content: '';
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, var(--layer-bg), transparent 80%);
    pointer-events: none;
}
.intro__bg-image::before {
    background: linear-gradient(to top, var(--layer-bg), transparent 20%);
}
.intro__image::after {
    background: linear-gradient(to top, var(--layer-bg), transparent 20%);
}
.intro__image::before {
    content: '';
    display: flex;
    position: absolute;
    width: 565px;
    height: 565px;
    left: 55%;
    bottom:0;
    border-radius: 565px;
    opacity: 0.4;
    filter: blur(50px);
    background: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
}
.intro__bg-image img {
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
}
.intro h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 140%;
}
.vip-letters {
    color: #FFB800;
    font-size: 128px;
    font-style: italic;
    font-weight: 900;
    line-height: 100%;
    position: relative;
    background: radial-gradient(#fdd87a, #d2941f 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
}
.intro-vip {
    transition: 400ms ease-in-out;
}
.intro-vip:hover, .vipmc.vip-letters:hover {
    filter: drop-shadow(0 0 5px #fdd87a);
}
.vip-exclamation {
    font-style: normal;
    font-weight: 800;
}
.mpcircles {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-inline: 8px;
}
.mpcircles::before, .mpcircles::after {
    content: '';
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #E6352B;
}
.mpcircles::before {
    background-color: #1B9DD9;
    margin-left: 5px;
}
.intro .description {
    font-size: 32px;
    max-width: 50%;
    margin-block: 60px 80px;
}
.intro__image {
    display: flex;
    z-index: 5;
}
.intro__image img {
    position: absolute;
    height: 100%;
    left: 45%;
    top: 0;
}
.faq__girl, .intro__image img {
    pointer-events: none;
}
/* video */
.video {
    position: relative;
    cursor: pointer;
}
.video:hover::after {
    transform: scale(0.85);
    filter: drop-shadow(0 0 10px var(--accent));
}
.video::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    position: absolute;
    background-image: radial-gradient(transparent, var(--layer-bg) 70%);
    opacity: .8;
}
.video::after {
    content: '';
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-image: url('img/intro/play-button.webp');
    background-repeat: no-repeat;
    background-position: center;
    transition: all 450ms ease-in-out;
}
.video.ready::after{
    display: none
}
.video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* cards */
.cards__bg {
    position: absolute;
    background-color: var(--layer-bg);
    top: 20%;
    left: -73px;
    z-index: -1;
}
.cards__bg img {
    mix-blend-mode: overlay;
}
.cards__bg::before {
    content: '';
    display: flex;
    position: absolute;
    width: 813px;
    height: 813px;
    left: -343px;
    top: 125px;
    border-radius: 813px;
    background: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
    filter: blur(400px);
}
.cards__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card__item {
    display: grid;
    justify-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 40px 30px;
    height: fit-content;
    position: relative;
    overflow: hidden;
}
.card__item::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    z-index: -1;
}
.card__item::after {
    content: '';
    position: absolute;
    background: #000;
    border-radius: 15px;
    inset: 5px;
    z-index: 1;
}
.card__item.card__vip::before {
    background: linear-gradient(135deg, #1B9DD9, #FAAD2C, #FFD58F, #FAAD2C, #E6352B);

}
.card__item.card__gold::before {
    background: var(--cards-gradient);
}
.card__item.card__platinum::before {
    background: linear-gradient(135deg, #6D6D6D, #D0D0D0, #979797, #7E7E7E, #FFFFFF);
}
.card__item.card__diamond::before {
    background: linear-gradient(135deg, #B9B9B9, #FFFFFF, #979797, #FFFFFF, #E3E3E3);
    width: 60%;
    height: 150%;
    animation: gradient-moving 5s linear infinite;
}
.card__item.card__diamond {
    box-shadow: 0 0 20px #E3E3E3;
}
@keyframes gradient-moving {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.card__item > * {
    z-index: 5;
}
.card__vip img{
    transform: rotate(30deg);
}
.card__diamond img {
    margin-block: 24px 11px;
}
.card__name {
    line-height: 100%;
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 600;
}

.card__advantages-list {
    padding: 0;
    margin: 0;
}
.card__advantage {
    display: flex;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    list-style: none;
    margin-inline-start: 38px;
    margin-block-end: 20px;
    position: relative;
}
.card__advantage::before {
    content: '';
    display: flex;
    width: 18px;
    height: 1px;
    left: -38px;
    top: 12px;
    position: absolute;
    background-color: #FFC159;
}
.card__subtext {
    font-size: 16px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
}
.card__platinum .card__advantage::before, .card__diamond .card__advantage::before {
    background: linear-gradient(163deg, #B9B9B9 -3.99%, #FFF 27.43%, #979797 53.61%, #FFF 91.93%, #E3E3E3 111.99%);
}

.howtovip__wrapper {
    border-radius: 30px;
    background: var(--layer-bg);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.10);
    padding: 60px 110px;
    position: relative;
}
.howtovip__wrapper::before {
    content: '';
    display: flex;
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: var(--main-gradient);
    border-radius: 30px;
    z-index: -1;
}
.howtovip__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.howtovip__item:not(:last-child) {
    margin-block-end: 50px;
}
.howtovip__title {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
}

.item__variables {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.variable, .variable__description {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.variable {
    text-align: center;
    justify-content: space-between;
}
.variable::after, .variable__description::after {
    content: '';
    height: 100%;
    width: 1px;
    right: 0;
    position: absolute;
    background: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
}
.variable__description .description{
    max-width: 90%;
}
.variable:last-child::after {
    content: none;
}
.variable .description {
    font-weight: 400;
}
.variable .description.bold{
    font-size: 20px;
    font-weight: 600;
}
.variable .description span {
    color: var(--accent);
    font-weight: 400;
}

.advantages .section__title {
    margin-block-end: 60px;
}

.advantages__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.advantage .description {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 140%;
}

.advantages-image {
    position: absolute;
    top: -150px;
    right: -50px;
    z-index: 1;
}
.advantages-image::before {
    content: '';
    position: absolute;
    top: 200px;
    right: 100px;
    width: 608px;
    height: 193px;
    border-radius: 608px;
    background: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
    filter: blur(100px);
    z-index: -1;
}
.advantage {
    align-items: flex-start;
}
.advantage:nth-child(3) {align-items: center;}

/* infocard */
.infocard {
    position: relative;
    z-index: 5;
}

.vipmc.vip-letters {transition: all 400ms ease-in-out;}
.vipmc-description {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1080px;
    margin-block-start: 40px;
    z-index: 5;
}
.vipmc-description .vipmc:first-child {
    color: var(--accent);
}
.vipmc-description .vipmc {
    font-size: 48px;
    font-style: italic;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}
.vipmc-description .vipmc:nth-child(2) {
    justify-content: center;
}
.vipmc-description .vipmc:last-child {
    justify-content: flex-end;
}
.vipmc .mpcircles {
    margin: 2px;
    gap: 3px;
}
.vipmc .mpcircles::after, .vipmc .mpcircles::before {
    width: 14px;
    height: 14px;
}

/* faq */
.faq {
    position: relative;
    z-index: 2;
    padding-block-end: 0;
}
.faq__inner {
    padding-block-end: 60px;
}
.faq__description {
    max-width: 66%;
}
.faq__list {
    margin-block-start: 30px;
}
.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    --font-size: 24px;
    padding-block: 30px;
    transition: all 550ms ease;
}
.faq__question h3 {
    margin: 0;
    padding: 12px;
    border-radius: var(--small-border-radius);
    font-size: var(--font-size, 28px);
    background: rgba(43, 75, 198, 0.20);
}
.faq__item.active .faq__question {
    padding-block-end: 0;
}
.faq__item {
    overflow: hidden;
    height: auto;
    transition: all .3s ease;
}
.faq__item::after, .faq__item:first-child:before {
    content: '';
    display: flex;
    width: 100%;
    height: 1px;
    background: var(--main-gradient);
}
.faq__title {
    font-size: 24px;
    font-weight: 700;
    max-width: 85%;
}
.faq__answer {
    color: var(--color, var(--light-gray-primary));
    font-size: var(--font-size, 20px);
    --font-size: 20px;
    line-height: 150%;
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition: all 400ms ease-in-out;
}
.faq__answer .description{
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    padding-block: 20px 30px;
}
.answer__inner {
    min-height: 0;
}
.faq__item.active .faq__answer {
    transform: rotateZ(0deg);
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    margin-bottom: 10px;
}
.closebuttonfaq {
    border: none;
    background: transparent;
    transition: transform 800ms ease, scale 250ms ease;
    margin: 0;
    margin-inline-end: 30px;
    padding: 0;
}
.closebuttonfaq:hover {
    scale: 0.9;
}
.closebuttonfaq img {
    display: flex;
    width: 32px;
    height: 32px;
    max-width: unset;
}
.faq__item.active .closebuttonfaq {
    --color: var(--accent);
    transform: rotateZ(180deg);
}
.faq__girl {
    position: absolute;
    bottom: 0;
    right: -15%;
}
.faq__bg {
    position: absolute;
    background-color: var(--layer-bg);
    z-index: -1;
    right: 0;
    bottom: -15%;
}

.faq__bg img {
    mix-blend-mode: overlay;
}

.faq__bg::before {
    content: '';
    display: flex;
    position: absolute;
    width: 813px;
    height: 813px;
    border-radius: 813px;
    right: -50%;
    bottom: -20%;
    background: radial-gradient(675.36% 111.82% at 55.06% 56.8%, rgba(255, 255, 253, 0.50) 0%, rgba(144, 80, 20, 0.50) 100%), #FFB800;
    filter: blur(400px);
}

/* footer */
.footer {
    background: var(--layer-bg);
}
.footer::before {
    top: 0;
    bottom: unset;
}
.footer__text {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
}