:root {
    --primary-color: #770196;
    --secondary-color: #e12ce8;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-bg: #e5e7eb;
    --light-gray-bg: #f4f4f4;
    --yellow-bg: #ffd20b;
    --dark-bg: #170e14;
    --text-color: #252c32;
    --border-dark: #252c32;
    --text-gray: #77787b;
    --text-red: #f00;
    --text-yellow: #ffd20b;
    --header-height: 90px;
}

@media (min-width: 991px) {
    :root {
        --header-height: 110px;
    }
}

@media (min-width: 1280px) {
    :root {
        --header-height: 120px;
    }
}

@media (min-width: 1370px) {
    :root {
        --header-height: 135px;
    }
}

html {
    scroll-behavior: smooth;
}

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

@font-face {
    font-family: Lieberuth-Regular;
    src: url('../fonts/lieberuth-regular.otf');
    font-weight: normal;
}

body {
    font-family: "Noto Sans", sans-serif;
    width: 100%;
    min-height: 100vh;
    background-color: var(--yellow-bg);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.auto-container {
    width: 100%;
    max-width: 1450px;
    margin: auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .auto-container {
        padding: 0 20px;
    }
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
}

.section-title .title {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    color: var(--black-color);
}

@media (max-width: 380px) {
    .section-title .title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .section-title .title {
        font-size: 28px;
    }
}

@media (min-width: 450px) {
    .section-title .title {
        font-size: 34px;
    }
}

@media (min-width: 991px) {
    .section-title .title {
        font-size: 36px;
        text-transform: capitalize;
    }
}

@media (min-width: 1024px) {
    .section-title .title {
        font-size: 38px;
    }
}

@media (min-width: 1199px) {
    .section-title .title {
        font-size: 40px;
    }
}

@media (min-width: 1280px) {
    .section-title .title {
        font-size: 42px;
    }
}

@media (min-width: 1370px) {
    .section-title .title {
        font-size: 44px;
    }
}

@media (min-width: 1480px) {
    .section-title .title {
        font-size: 46px;
    }
}

@media (min-width: 1550px) {
    .section-title .title {
        font-size: 48px;
    }
}

.section-title .title.color-secondary {
    color: var(--secondary-color);
}

.section-title .description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black-color);
    margin-top: 5px;
}

@media (min-width: 1280px) {
    .section-title .description {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 1370px) {
    .section-title .description {
        font-size: 22px;
        line-height: 32px;
    }
}

.section-title .description.fs_16 {
    font-size: 16px;
    line-height: 26px;
}

@media (min-width: 1280px) {
    .section-title .description.fs_16 {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 1370px) {
    .section-title .description.fs_16 {
        font-size: 20px;
        line-height: 30px;
    }
}

a {
    text-decoration: none;
}

a:focus-visible {
    outline: none;
}

.btn {
    width: 100%;
    height: 68px;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-bg);
    color: var(--black-color);
    padding: 4px 20px;
    border: 0;
    border-radius: 60px;
    letter-spacing: 0.1px;
    transition: all .25s ease-in-out;
}

@media (max-width: 390px) {
    .btn {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .btn {
        height: 58px;
        font-size: 18px;
    }
}

@media (max-width: 340px) {
    .btn {
        height: 54px;
    }
}

@media (min-width: 991px) {
    .btn {
        font-weight: 600;
    }
}

@media (min-width: 1199px) {
    .btn {
        height: 70px;
        font-weight: 700;
    }
}

@media (min-width: 1370px) {
    .btn {
        font-weight: 800;
    }
}

@media (min-width: 1550px) {
    .btn {
        font-weight: 900;
    }
}

.btn:hover,
.btn:focus,
.btn:focus-visible,
.btn:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
}

.btn--theme1 {
    background-color: var(--yellow-bg);
    color: var(--black-color);
}

.btn--theme1:hover,
.btn--theme1:focus,
.btn--theme1:focus-visible,
.btn--theme1:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
}

.btn--theme2 {
    background-color: var(--secondary-color);
    color: var(--text-yellow);
}

.btn--theme2:hover,
.btn--theme2:focus,
.btn--theme2:focus-visible,
.btn--theme2:active {
    background-color: #b520bb !important;
    color: var(--text-yellow) !important;
}

.btn--theme3 {
    background-color: var(--yellow-bg);
    color: var(--black-color);
    border: 1px solid var(--border-dark);
}

.btn--theme3:hover,
.btn--theme3:focus,
.btn--theme3:focus-visible,
.btn--theme3:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
    border: 1px solid var(--border-dark) !important;
}

.btn--theme4 {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn--theme4:hover,
.btn--theme4:focus,
.btn--theme4:focus-visible,
.btn--theme4:active {
    background-color: #b520bb !important;
    color: var(--white-color) !important;
}

.btn--theme5 {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn--theme5:hover,
.btn--theme5:focus,
.btn--theme5:focus-visible,
.btn--theme5:active {
    background-color: #a502cf !important;
    color: var(--white-color) !important;
}

.mx-auto_10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

p {
    margin: 0;
}

.page-main {
    position: relative;
    width: 100%;
    max-width: 450px;
    background-color: var(--white-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 450px) {
    .page-main {
        max-width: 100%;
        box-shadow: none;
    }
}

/* ===== Header Section ===== */
.header-main {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .header-main {
        z-index: 10;
    }
}

body:has(.main-content__home) .header-main {
    background-color: transparent;
}

body:has(.main-content__home[style*="display: none;"]) .header-main {
    background-color: var(--primary-color);
}

.header-main .header__container {
    width: 100%;
    height: 100%;
    padding-right: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
}

@media (min-width: 991px) {
    .header-main .header__container {
        padding-right: 0;
    }
}

.header-main .header__logo img {
    width: 94px;
    height: auto;
}

@media (min-width: 768px) {
    .header-main .header__logo img {
        width: 100px;
    }
}

@media (min-width: 991px) {
    .header-main .header__logo img {
        width: 120px;
    }
}

@media (min-width: 1280px) {
    .header-main .header__logo img {
        width: 140px;
    }
}

@media (min-width: 1480px) {
    .header-main .header__logo img {
        width: 160px;
    }
}

@media (min-width: 1550px) {
    .header-main .header__logo img {
        width: 165px;
    }
}

.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100vh;
        background-color: var(--primary-color);
        z-index: 10;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 50px 30px 30px;
    }

    .header__nav.header__nav-close {
        width: 0;
        opacity: 0;
        visibility: hidden;
        transition: .6s;
    }

    .header__nav.header__nav-toggler {
        opacity: 1;
        visibility: visible;
        width: 280px;
        transition: .8s;
        overflow-x: hidden;
    }
}

.header__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

@media (max-width: 991px) {
    .header__nav-list {
        flex-direction: column;
    }
}

.header__nav-list li {
    margin: 0 20px;
}

@media (max-width: 991px) {
    .header__nav-list li {
        margin: 0;
    }
}

.header__nav-list li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    transition: all .25s ease-in-out;
    white-space: nowrap;
}

.header__nav-list li a:hover {
    color: var(--text-yellow);
}

.header__nav .btn {
    min-width: 180px;
    height: 42px;
    font-size: 16px;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .header__nav .btn {
        font-size: 18px;
    }
}

.header__humburger {
    display: none;
}

@media (max-width: 991px) {
    .header__humburger {
        position: relative;
        display: grid;
        place-content: center;
        grid-column: 3 / -1;
        grid-row: 1 / -1;
        width: 32px;
        height: 32px;
        justify-self: start;
        cursor: pointer;
        z-index: 10;
    }
}

.header__humburger .humburger-open {
    width: 32px;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: all .6s ease-out;
    position: relative;
    z-index: 2;
}

.header__humburger.humburger__toggler .humburger-open {
    background-color: rgba(0, 0, 0, 0);
}

.header__humburger .humburger-open::before,
.header__humburger .humburger-open::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: all .6s ease-out;
}

.header__humburger .humburger-open::before {
    transform: translateY(-8px);
}

.header__humburger .humburger-open::after {
    transform: translateY(8px);
}

.header__humburger.humburger__toggler .humburger-open::before {
    transform: rotate(45deg);
}

.header__humburger.humburger__toggler .humburger-open::after {
    transform: rotate(-45deg);
}


/* Hero Banner */
.hero-banner {
    background-image: url('../images/hero-bg-mobile.jpg');
    padding: 110px 0 110px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -90px;
    background-attachment: fixed;
}

@media (min-width: 480px) {
    .hero-banner {
        background-image: url('../images/hero-bg-desktop.jpg');
    }
}

@media (min-width: 991px) {
    .hero-banner {
        margin-top: -110px;
    }
}

@media (min-width: 1280px) {
    .hero-banner {
        padding-bottom: 150px;
        margin-top: -120px;
        padding-top: 130px;
        overflow: hidden;
    }
}

@media (min-width: 1370px) {
    .hero-banner {
        padding-top: 150px;
        margin-top: -135px;
    }
}

@media (min-width: 1480px) {
    .hero-banner {
        padding-bottom: 170px;
    }
}

.hero-banner .hero-banner__inner {
    text-align: center;
}

.hero-banner .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 140%;
    margin-bottom: 30px;
}

@media (max-width: 365px) {
    .hero-banner .title {
        font-size: 20px;
    }
}

@media (min-width: 450px) {
    .hero-banner .title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .hero-banner .title {
        font-size: 26px;
    }
}

@media (min-width: 991px) {
    .hero-banner .title {
        font-size: 28px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .title {
        font-size: 30px;
        line-height: 125%;
        padding-top: 5px;
        font-weight: 600;
    }
}

@media (min-width: 1280px) {
    .hero-banner .title {
        font-size: 34px;
    }
}

@media (min-width: 1370px) {
    .hero-banner .title {
        font-size: 36px;
    }
}

@media (min-width: 1480px) {
    .hero-banner .title {
        font-size: 38px;
    }
}

.hero-banner .title span {
    display: block;
}

@media (max-width: 500px) {
    .hero-banner .title span {
        display: inline;
    }
}

.hero-banner .subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 140%;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .hero-banner .subtitle {
        font-size: 26px;
    }
}

@media (min-width: 991px) {
    .hero-banner .subtitle {
        font-size: 28px;
        margin-bottom: 6px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .subtitle {
        font-size: 30px;
    }
}

.hero-banner .description {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    line-height: 26px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-banner .description {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .description {
        font-size: 22px;
    }
}

.hero-banner .btn {
    max-width: 275px;
    height: 49px;
}

@media (min-width: 1199px) {
    .hero-banner .btn {
        height: 68px;
        max-width: 380px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .btn {
        max-width: 440px;
    }
}

@media (min-width: 1370px) {
    .hero-banner .btn {
        font-size: 22px;
    }
}

@media (min-width: 1480px) {
    .hero-banner .btn {
        font-size: 24px;
    }
}

.hero-banner .hero-banner__container {
    overflow: hidden;
    margin: 0 -15px;
}

@media (min-width: 768px) {
    .hero-banner .hero-banner__container {
        margin: 0 -20px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .hero-banner__container {
        margin: 0;
    }
}

.slider-wrapper {
    position: relative;
}

.slider-nav {
    display: none;
}

@media (min-width: 1280px) {
    .slider-nav {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 15px;
        pointer-events: none;
        z-index: 2;
    }

    .slider-nav__btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.85);
        background: var(--secondary-color);
        color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s ease, transform .2s ease;
        pointer-events: auto;
    }

    .slider-nav__btn:hover {
        background: #b520bb;
    }

    .slider-nav--choose {
        padding: 0 35px;
    }
}

.hero-banner .banner-ticket__msg {
    max-width: 325px;
    margin: auto;
}

@media (min-width: 768px) {
    .hero-banner .banner-ticket__msg {
        max-width: 360px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .banner-ticket__msg {
        max-width: 100%;
    }
}

@media (min-width: 1480px) {
    .hero-banner .banner-ticket__msg {
        margin: 0;
    }
}

.hero-banner .banner-ticket__msg .title {
    margin-bottom: 8px;
}

.hero-banner .banner-ticket__msg .description:not(:last-child) {
    margin-bottom: 15px;
}

/*  */
.hero-banner__slider,
.ticket-price__slider {
    padding-top: 10px;
    padding-bottom: 25px;
}

.ticket-price__slider {
    padding-top: 0;
    padding-bottom: 15px;
}

@media (min-width: 450px) {
    .hero-banner__slider {
        padding-bottom: 30px;
    }
}

@media (min-width: 991px) {
    .ticket-price__slider {
        padding-top: 10px;
        padding-bottom: 30px;
    }
}

@media (min-width: 1250px) {

    .hero-banner__slider,
    .ticket-price__slider {
        max-width: 1340px;
    }
}

@media (min-width: 1280px) {

    .hero-banner__slider,
    .ticket-price__slider {
        max-width: 1260px;
        overflow: hidden;
        padding-left: 10px;
    }
}

.hero-banner__slider .swiper-wrapper,
.ticket-price__slider .swiper-wrapper {
    align-items: center;
    /* justify-content: center !important; */
    width: 0;
}

/* .hero-banner__slider .swiper-slide,
.ticket-price__slider .swiper-slide {
    flex: 0 0 auto;
} */

.ticket-price__content {
    position: relative;
    width: 274px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: width, transform;
}

@media (min-width: 500px) {
    .ticket-price__content {
        margin: 0 10px !important;
    }
}

.ticket-price__content.swiper-slide-active {
    width: 274px;
    border-radius: 18px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (min-width: 1280px) {
    .ticket-price__content.swiper-slide {
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* @media (min-width: 1280px) {
    .ticket-price__content.swiper-slide {
        width: 199px;
        height: auto;
        transform: skew(0deg, 2.2deg) translateY(7px) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .ticket-price__content.swiper-slide-active~.swiper-slide {
        transform: skew(0deg, -2.2deg) translateY(7px) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .ticket-price__content.swiper-slide-active {
        width: 224px;
        transform: skew(0deg, 0deg) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .ticket-price__content.swiper-slide-prev {
        width: 224px;
        height: auto;
        transform: skew(0deg, 1.2deg) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .ticket-price__content.swiper-slide-next {
        width: 224px;
        height: auto;
        transform: skew(0deg, -1.2deg) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .ticket-price__content.swiper-slide-active~.swiper-slide-next {
        transform: skew(0deg, -1.2deg) !important;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
} */

/* .ticket-price__content img {
    width: 100%;
    height: auto;
} */

.ticket-price__content .ticket__img {
    width: 100%;
    height: auto;
}

.ticket-price__content .ticket__logo {
    position: absolute;
    top: 7%;
    left: 50%;
    width: 90%;
    height: auto;
    transform: translateX(-50%);
}

@media (max-width: 1370px) {
    .ticket-price__content .ticket__logo {
        top: 8%;
        width: 85%;
    }
}

@media (max-width: 991px) {
    .ticket-price__content .ticket__logo {
        top: 8%;
        width: 82%;
    }
}

@media (max-width: 440px) {
    .ticket-price__content .ticket__logo {
        width: 72%;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket__logo {
        top: 9%;
    }
}

.ticket-price__content .ticket__icon {
    position: absolute;
    left: 6%;
    bottom: 30%;
    width: 71px;
    height: auto;
    animation: moveRightAnimation 2s ease-in-out infinite;
    transition: all .25s ease-in-out;
}

@media (min-width: 1280px) {
    .ticket-price__content .ticket__icon {
        width: 80px;
    }
}

@media (min-width: 1550px) {
    .ticket-price__content .ticket__icon {
        width: 85px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket__icon {
        left: 5%;
        width: 65px;
    }
}

@keyframes moveRightAnimation {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.ticket-price__content-left {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}

.ticket-price__content-right {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1;
}

.ticket-price__content-left.small {
    left: 15px;
    top: 8px;
}

.ticket-price__content-right.small {
    right: 15px;
    top: 10px;
}

.ticket-price__content-left span,
.ticket-price__content-right span {
    display: block;
}

.ticket-price__content-left .top {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-red);
    margin-bottom: 6px;
}

.ticket-price__content-left .bottom {
    font-family: Lieberuth-Regular;
    font-size: 24px;
    line-height: 1;
    color: var(--text-yellow);
}

@media (max-width: 400px) {
    .ticket-price__content-left .bottom {
        font-size: 22px;
    }
}

.ticket-price__content-left.small .top {
    font-size: 10px;
    margin-bottom: 6px;
    margin-left: -10px;
}

.choose-ticket__container .ticket-price__content-left.small .top {
    margin-left: 0;
}

.ticket-price__content-left.small .bottom {
    font-size: 20px;
}

.ticket-price__content-right .top {
    font-size: 28px;
    font-weight: 600;
    line-height: 28.848px;
    letter-spacing: -1.563px;
    color: var(--white-color);
}

@media (max-width: 400px) {
    .ticket-price__content-right .top {
        font-size: 24px;
    }
}

.ticket-price__content-right .top sup {
    font-size: 20px;
    top: -0.37em;
    margin-right: 2px;
}

.ticket-price__content-right.small .top {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -1.3px;
}

.ticket-price__content-right.small .top sup {
    font-size: 16px;
    top: -0.45em;
}

.ticket-price__content .ticket-price__content-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--white-color);
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

@media (max-width: 1024px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 991px) {
    .ticket-price__content .ticket-price__content-circle {
        bottom: 30px;
    }
}

@media (max-width: 420px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 360px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 340px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 140px;
        height: 140px;
        bottom: 20px;
    }
}

@media (min-width: 1550px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 225px;
        height: 225px;
    }
}

.ticket-price__content .ticket-price__content-circle.circle-bg {
    overflow: unset;
    background-color: transparent;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-price__content .ticket-price__content-circle.circle-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/circle-bg.png) center / 110% no-repeat;
    border-radius: 50%;
    filter: blur(3.6059603691101074px);
    z-index: -1;
}

.ticket-price__content-circle .buy__text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 8px;
    font-size: 17.02px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    animation: moveUpAnimation 2s ease-in-out infinite;
    transition: all .25s ease-in-out;
    padding-top: 5px;
}

.ticket-price__content-circle .buy__text span {
    display: block;
    font-size: 22px;
}

@media (max-width: 420px) {
    .ticket-price__content-circle .buy__text svg {
        width: 28px;
    }

    .ticket-price__content-circle .buy__text span {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content-circle .buy__text {
        font-size: 14px;
        row-gap: 8px;
    }

    .ticket-price__content-circle .buy__text svg {
        width: 24px;
    }

    .ticket-price__content-circle .buy__text span {
        font-size: 17px;
    }
}

@keyframes moveUpAnimation {

    0%,
    100% {
        transform: translateY(10);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*  */
.galleryview {
    overflow: hidden;
    margin-top: -80px;
}

@media (min-width: 1280px) {
    .galleryview {
        margin-top: -110px;
    }
}

@media (min-width: 1480px) {
    .galleryview {
        margin-top: -120px;
    }
}

.galleryview .galleryview__slider {
    padding: 20px 0 20px 20px;
}

@media (min-width: 768px) {
    .galleryview .galleryview__slider {
        padding: 20px 20px;
    }

    .galleryview .galleryview__slider .swiper-wrapper {
        justify-content: center;
    }
}

.galleryview .galleryview__content {
    width: 155px;
    height: 155px;
}

@media (min-width: 991px) {
    .galleryview .galleryview__content {
        width: 170px;
        height: 170px;
    }
}

@media (min-width: 1280px) {
    .galleryview .galleryview__content {
        width: 190px;
        height: 190px;
    }
}

@media (min-width: 1480px) {
    .galleryview .galleryview__content {
        width: 205px;
        height: 205px;
    }
}

.galleryview .galleryview__content img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 991px) {
    .galleryview .galleryview__content img {
        border-radius: 22px;
    }
}

@media (min-width: 1280px) {
    .galleryview .galleryview__content img {
        border-radius: 25px;
    }
}

@media (min-width: 1480px) {
    .galleryview .galleryview__content img {
        border-radius: 28px;
    }
}

/*  */
.how-it-works {
    padding: 20px 0 50px;
}

@media (min-width: 991px) {
    .how-it-works {
        padding: 30px 0 60px;
    }
}

.how-it-works .section-title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 450px) {
    .how-it-works .section-title {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .how-it-works .section-title {
        max-width: 540px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .section-title {
        max-width: 580px;
    }
}

@media (min-width: 1370px) {
    .how-it-works .section-title {
        max-width: 630px;
    }
}

.how-it-works .how-works__container {
    display: grid;
    row-gap: 35px;
    padding-top: 10px;
}

@media (min-width: 1050px) {
    .how-it-works .how-works__container {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 25px;
    }
}

.how-it-works .how-works__content {
    text-align: center;
}

.how-it-works .how-works__content .icon {
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 1050px) {
    .how-it-works .how-works__content .icon {
        min-height: 80px;
    }
}

.how-it-works .how-works__content img {
    width: auto;
    height: auto;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
}

@media (min-width: 991px) {
    .how-it-works .how-works__content img {
        min-height: 70px;
        max-width: 122px
    }
}

.how-it-works .how-works__content .title {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

@media (max-width: 380px) {
    .how-it-works .how-works__content .title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .how-it-works .how-works__content .title {
        font-size: 28px;
    }
}

@media (max-width: 340px) {
    .how-it-works .how-works__content .title {
        font-size: 26px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .how-works__content .title {
        font-size: 34px;
    }
}

@media (min-width: 1480px) {
    .how-it-works .how-works__content .title {
        margin-bottom: 6px;
    }
}

.how-it-works .how-works__content p {
    max-width: 275px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black-color);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 991px) {
    .how-it-works .how-works__content p {
        max-width: 320px;
        font-size: 18px;
        line-height: 28px;
    }
}

.how-it-works .how-works__content p strong {
    font-weight: 600;
}

.how-it-works .btn-grp {
    margin-top: 45px;
    text-align: center;
}

@media (min-width: 1050px) {
    .how-it-works .btn-grp {
        margin-top: 35px;
    }
}

.how-it-works .btn-grp .btn {
    max-width: 315px;
    height: 53px;
}

@media (max-width: 340px) {
    .how-it-works .btn-grp .btn {
        height: 50px;
    }
}

@media (min-width: 1199px) {
    .how-it-works .btn-grp .btn {
        height: 68px;
        max-width: 380px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .btn-grp .btn {
        max-width: 440px;
    }
}

@media (min-width: 1370px) {
    .how-it-works .btn-grp .btn {
        height: 70px;
        font-size: 22px;
    }
}

@media (min-width: 1480px) {
    .how-it-works .btn-grp .btn {
        font-size: 24px;
    }
}

/*  */
.packed-prizes {
    background-color: var(--yellow-bg);
    padding: 40px 0 40px;
}

@media (min-width: 991px) {
    .packed-prizes {
        padding: 50px 0 60px;
    }
}

.packed-prizes .section-title {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .packed-prizes .section-title {
        max-width: 380px;
    }
}

@media (min-width: 1199px) {
    .packed-prizes .section-title {
        max-width: 420px;
    }
}

@media (min-width: 1370px) {
    .packed-prizes .section-title {
        max-width: 620px;
    }
}

.packed-prizes .packed-prizes__container {
    display: grid;
    row-gap: 7px;
    overflow-y: auto;
    max-height: 590px;
}

@media (min-width: 768px) {
    .packed-prizes .packed-prizes__container {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }
}

@media (min-width: 1050px) {
    .packed-prizes .packed-prizes__container {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        max-height: 400px;
    }
}

@media (min-width: 1199px) {
    .packed-prizes .packed-prizes__container {
        max-width: 1100px;
        margin: auto;
    }
}

.packed-prizes .packed-prizes__content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    column-gap: 10px;
}

.packed-prizes .packed-prizes__content-left {
    flex: 1;
}

.packed-prizes .packed-prizes__content-right {
    text-align: left;
    min-width: 100px;
}

.packed-prizes .packed-prizes__content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: var(--black-color);
    margin-bottom: 5px;
}

@media (max-width: 380px) {
    .packed-prizes .packed-prizes__content .title {
        font-size: 18px;
        line-height: 24px;
    }
}

.packed-prizes .packed-prizes__content .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black-color);
    font-style: italic;
}

@media (min-width: 991px) {
    .packed-prizes .packed-prizes__content .subtitle {
        font-weight: 500;
    }
}

.packed-prizes .packed-prizes__status,
.packed-prizes .packed-prizes__view {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(----text-gray);
}

.packed-prizes .btn-grp {
    text-align: center;
}

.packed-prizes .btn-grp .link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    transition: all .25s ease-in-out;
    margin-top: 25px;
}

@media (min-width: 991px) {
    .packed-prizes .btn-grp .link {
        font-size: 18px;
    }
}

.packed-prizes .btn-grp .link svg {
    display: block;
    width: 30px;
    height: auto;
    margin: auto auto 6px;
}

.packed-prizes .btn-grp .link:hover {
    color: var(--secondary-color);
}

/*  */
.where-buy {
    padding: 50px 0;
    display: none;
}

@media (min-width: 991px) {
    .where-buy {
        padding: 60px 0;
    }
}

.where-buy .where-buy__container {
    width: 100%;
    min-height: 610px;
    background-color: var(--secondary-color);
    border: 8px solid var(--yellow-bg);
    border-radius: 28px;
    padding: 35px 40px;
    margin: auto;
    background-image: url('../images/where-buy-bg.png');
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 420px) {
    .where-buy .where-buy__container {
        padding: 35px 30px;
    }
}

@media (max-width: 380px) {
    .where-buy .where-buy__container {
        padding: 30px 15px;
        min-height: 570px;
    }
}

@media (max-width: 360px) {
    .where-buy .where-buy__container {
        padding: 25px 15px;
        min-height: 520px;
    }
}

@media (min-width: 480px) {
    .where-buy .where-buy__container {
        min-height: 650px;
    }
}

@media (min-width: 520px) {
    .where-buy .where-buy__container {
        background-image: url('../images/where-buy-bg-desktop.png');
        min-height: 465px;
    }
}

@media (min-width: 768px) {
    .where-buy .where-buy__container {
        min-height: 540px;
    }
}

@media (min-width: 991px) {
    .where-buy .where-buy__container {
        padding: 50px 60px 60px;
        min-height: auto;
        background-size: 58%;
        background-position: bottom right;
    }

    .where-buy .where-buy__container .section-title {
        max-width: 380px;
        text-align: left;
    }

    .where-buy .where-buy__container .btn {
        max-width: 295px;
        height: 60px;
    }
}

@media (min-width: 1370px) {
    .where-buy .where-buy__container {
        padding: 55px 60px 60px 90px;
        min-height: auto;
        background-size: 58%;
        background-position: bottom right;
    }

    .where-buy .where-buy__container .section-title {
        max-width: 440px;
        text-align: left;
        margin-bottom: 35px;
    }

    .where-buy .where-buy__container .btn {
        max-width: 295px;
        height: 60px;
    }
}

.where-buy .section-title .title {
    color: var(--text-yellow);
}

@media (min-width: 1199px) {
    .where-buy .section-title .title {
        color: var(--white-color);
        text-transform: unset;
        line-height: 110%;
        margin-bottom: 12px;
    }
}

.where-buy .section-title .description {
    color: var(--white-color);
}

@media (min-width: 1199px) {
    .where-buy .section-title .description {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (min-width: 1280px) {
    .where-buy .section-title .description {
        font-size: 22px
    }
}

@media (min-width: 1370px) {
    .where-buy .section-title .description {
        font-size: 26px
    }
}

/*  */
.testimonials-main {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

@media (min-width: 991px) {
    .testimonials-main {
        padding: 60px 0 55px;
    }
}

.testimonials-main .testimonials-content {
    max-width: 335px;
    text-align: center;
    margin: auto;
}

.testimonials-main .avatar {
    margin-bottom: 12px;
}

.testimonials-main .avatar img {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-main .title {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    color: var(--text-yellow);
    margin-bottom: 10px;
}

.testimonials-main .subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--white-color);
}

.testimonials-main .subtitle span {
    display: block;
}

.testimonials-main .icon {
    display: block;
    margin-top: 35px;
    margin-bottom: 15px;
}

.testimonials-main .icon svg {
    width: 125px;
    height: auto;
}

.testimonials-main p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--white-color);
}

/*  */
.faqs-main {
    padding: 40px 0 50px;
    background-color: var(--white-color);
}

@media (min-width: 991px) {
    .faqs-main {
        padding: 55px 0 60px;
    }
}

.faqs-main .section-title {
    margin-bottom: 15px;
}

.faqs-main .faqs__container .card {
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid var(--yellow-bg);
}

@media (min-width: 1199px) {
    .faqs-main .faqs__container {
        max-width: 1040px;
        margin: auto;
    }
}

.faqs-main .faqs__container .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black-color);
    padding: 13px 20px 13px 28px;
    cursor: pointer;
}

@media (max-width: 380px) {
    .faqs-main .faqs__container .title {
        padding: 13px 0 13px 26px;
    }
}

@media (min-width: 450px) {
    .faqs-main .faqs__container .title {
        padding: 13px 20px 13px 30px;
    }
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title {
        font-size: 20px;
    }
}

@media (min-width: 1370px) {
    .faqs-main .faqs__container .title {
        padding: 15px 20px 15px 30px;
    }
}

.faqs-main .faqs__container .title::before {
    content: '–';
    position: absolute;
    left: 0;
    top: 17px;
    width: 17px;
    height: 17px;
    padding-bottom: 5px;
    border-radius: 50%;
    background-color: var(--yellow-bg);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title::before {
        top: 19px;
        width: 18px;
        height: 18px;
        padding-left: 1px;
        line-height: normal;
    }
}

.faqs-main .faqs__container .title.collapsed::before {
    content: '+';
    padding-bottom: 0;
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title.collapsed::before {
        padding-bottom: 1px;
    }
}

.faqs-main .faqs__container .text-content {
    padding: 0 20px 13px 28px;
    margin-top: -5px;
}

@media (max-width: 380px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 0 13px 26px;
    }
}

@media (min-width: 450px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 20px 18px 30px;
    }
}

@media (min-width: 1370px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 20px 20px 30px;
    }
}

.faqs-main .faqs__container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black-color);
}

.faqs-main .faqs__container p:not(:last-child) {
    margin-bottom: 12px;
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container p {
        font-size: 18px;
    }
}

/*  */
.choose-ticket {
    display: none;
    padding: 40px 0 50px;
    background-color: var(--text-yellow);
}

@media (max-width: 991px) {
    .choose-ticket {
        min-height: calc(100vh - 90px);
        padding: 30px 0 30px;
    }

    .choose-ticket .section-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .choose-ticket .section-title .title {
        font-size: 28px;
    }
}

.choose-ticket .choose-ticket__container {
    overflow: hidden;
    margin: 0 -15px;
}

@media (min-width: 768px) {
    .choose-ticket .choose-ticket__container {
        margin: 0 -20px;
    }
}

@media (min-width: 1280px) {
    .choose-ticket {
        overflow: hidden;
    }
}

.choose-ticket .choose-ticket__text-content {
    max-width: 336px;
    text-align: center;
    padding-top: 15px;
    margin: auto;
    display: grid;
    row-gap: 15px;
}

@media (max-width: 991px) {
    .choose-ticket .choose-ticket__text-content {
        row-gap: 8px;
    }

    .choose-ticket .choose-ticket__text-content .btn {
        height: 54px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .choose-ticket .choose-ticket__text-content .btn {
        height: 50px;
        font-size: 18px;
    }
}

.choose-ticket .choose-ticket__text-content .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black-color);
}

@media (max-width: 768px) {
    .choose-ticket .choose-ticket__text-content .description {
        font-size: 18px;
        line-height: 26px;
    }
}

.choose-ticket .choose-ticket__msg {
    max-width: 325px;
    margin: auto;
}

.choose-ticket .choose-ticket__msg .section-title {
    margin-bottom: 0;
}

.choose-ticket .choose-ticket__msg .section-title p:not(:last-child) {
    margin-bottom: 15px;
}

/*  */
.unlock-ticket {
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (max-width: 991px) {
    .unlock-ticket {
        min-height: calc(100vh - 90px);
        padding: 30px 0 30px;
    }
}

.unlock-ticket .auto-container {
    position: relative;
    max-width: 500px;
}

@media (min-width: 1370px) {
    .unlock-ticket .auto-container {
        max-width: 570px;
    }
}

.unlock-ticket .section-title {
    margin-bottom: 25px;
}

.unlock-ticket .section-title .title {
    position: relative;
}

@media (max-width: 991px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 340px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 340px);
        object-fit: cover;
        border-radius: 20px;
        object-position: top;
    }

    .unlock-ticket .section-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 300px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 300px);
    }

    .unlock-ticket .section-title .title {
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 330px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 330px);
    }
}

.unlock-ticket__container {
    max-width: 380px;
    margin: auto;
}

.scratch-now__container {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}


@media (min-width: 1024px) {
    .unlock-ticket__container {
        max-width: 400px;
        margin: auto;
    }

    .scratch-now__container {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1550px) {
    .unlock-ticket__container {
        max-width: 460px;
    }

    .scratch-now__container {
        max-width: 460px
    }
}

.unlock-ticket .ticket-price__content {
    margin: 0 !important;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.unlock-ticket .unlock-ticket__btn-grp {
    margin-top: 30px;
}

.unlock-ticket .unlock-ticket__btn-grp {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scratch-now .scratch-now__details {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 991px) {
    .unlock-ticket .unlock-ticket__btn-grp {
        max-width: 400px;
    }

    .scratch-now .scratch-now__details {
        max-width: 400px;
    }
}

@media (min-width: 1550px) {
    .unlock-ticket .unlock-ticket__btn-grp {
        max-width: 460px;
    }

    .scratch-now .scratch-now__details {
        max-width: 460px;
    }
}

@media (max-width: 991px) {
    .unlock-ticket .unlock-ticket__btn-grp .btn {
        height: 54px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .unlock-ticket .unlock-ticket__btn-grp .btn {
        height: 50px;
        font-size: 18px;
    }
}

.unlock-ticket .unlock-ticket__btn-grp .btn:not(:last-child) {
    margin-bottom: 15px;
}

.unlock-ticket .unlock-ticket__btn-link {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all.25s ease-in-out;
}

@media (max-width: 390px) {
    .unlock-ticket .unlock-ticket__btn-link {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .unlock-ticket .unlock-ticket__btn-link {
        font-size: 18px;
    }
}

@media (min-width: 991px) {
    .unlock-ticket .unlock-ticket__btn-link {
        font-weight: 600;
    }
}

@media (min-width: 1199px) {
    .unlock-ticket .unlock-ticket__btn-link {
        font-weight: 700;
    }
}

.unlock-ticket .unlock-ticket__btn-link:hover {
    color: #b520bb !important;
}

/*  */
.footer-main {
    padding: 50px 0 40px;
    background-color: var(--dark-bg);
}

@media (min-width: 991px) {
    .footer-main {
        padding: 60px 0 55px;
    }
}

.footer-main .footer__inner {
    max-width: 315px;
    margin: auto;
    text-align: center;
}

@media (min-width: 991px) {
    .footer-main .footer__inner {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .footer__top {
        min-width: 315px;
    }
}

@media (min-width: 1199px) {
    .footer-main .footer__inner {
        max-width: 1040px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin: auto;
    }
}

@media (min-width: 1280px) {
    .footer__top {
        min-width: 440px;
    }
}

.footer-main .footer__link {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 0;
}

.footer-main .footer__link li {
    padding-bottom: 20px;
    display: block;
}

.footer-main .footer__link li .link {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    transition: all .25s ease-in-out;
}

.footer-main .footer__link li .link:hover {
    color: var(--text-yellow);
}

.footer-main .footer__logo {
    margin-bottom: 30px;
}

.footer-main .footer__logo span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.footer-main .footer__logo svg {
    width: 118px;
    height: auto;
}

.footer-main .footer__address {
    font-size: 16px;
    font-weight: 400;
    color: #9d9d9e;
    line-height: 1.5;
    margin-bottom: 18px;
}

.footer-main .footer__address strong {
    display: block;
}

.footer-main .footer__address a {
    color: var(--white-color);
    font-weight: 700;
    transition: all .25s ease-in-out;
}

.footer-main .footer__address a:hover {
    color: var(--yellow-bg);
    text-decoration: underline;
}

.footer-main .footer__top .footer__address {
    color: var(--secondary-color);
}

.footer-main .footer__top .footer__address a {
    color: var(--yellow-bg);
}

.footer-main .site-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    transition: all .25s ease-in-out;
}

.footer-main .site-link:hover {
    color: var(--text-yellow);
}

.footer-main .footer__copyright {
    font-size: 16px;
    font-weight: 400;
    color: #9d9d9e;
    line-height: 1.5;
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .footer-main .footer__bottom {
        margin-top: 60px;
    }

    .footer-main .footer__copyright {
        margin-top: 0;
    }
}

/*  */
.common-scratch-view .ticket-price__content {
    margin: 0 !important;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.scratch-now {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (max-width: 991px) {
    .scratch-now {
        min-height: calc(100vh - 90px);
        padding: 30px 0 30px;
    }
}

.scratch-now .section-title {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 340px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 340px);
        object-fit: cover;
        border-radius: 20px;
        object-position: top;
    }

    .scratch-now .section-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 300px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 300px);
    }

    .scratch-now .section-title .title {
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 330px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 330px);
    }
}

.scratch-now .scratch-now__details {
    position: relative;
    text-align: center;
    margin-top: 25px;
    z-index: 1;
}

.scratch-now .scratch-now__details .subtitle {
    max-width: 230px;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: var(--black-color);
    margin: auto;
}

@media (max-width: 991px) {
    .scratch-now .scratch-now__details .subtitle {
        font-size: 20px;
    }

    .scratch-now .scratch-now__details .btn {
        height: 54px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .scratch-now .scratch-now__details .subtitle {
        font-size: 18px;
    }

    .scratch-now .scratch-now__details .btn {
        height: 50px;
        font-size: 18px;
    }
}

.scratch-now #scratchCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: var(--black-color);
    touch-action: none;
}

.scratch-now .scratch__result {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

@media (max-width: 360px) {
    .scratch-now .scratch__result {
        padding: 10px;
    }
}

.scratch-now .scratch__more {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: rgba(0, 0, 0, 0.4);
    opacity: 0;
}

.scratch-now .winner__text span {
    display: block;
}

.scratch-now .winner__text .show-name,
.scratch-now .winner__text .show-msg,
.scratch-now .loss__text .show-name,
.scratch-now .loss__text .show-msg {
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 1024px) {

    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 24px;
    }
}

@media (max-width: 400px) {

    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 22px;
    }
}

@media (max-width: 380px) {

    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 20px;
    }
}

@media (max-width: 360px) {

    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 18px;
    }
}

.scratch-now .winner__text .show-text,
.scratch-now .loss__text .show-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 30.05px;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 360px) {

    .scratch-now .winner__text .show-text,
    .scratch-now .loss__text .show-text {
        font-size: 16px;
    }
}

/* Chechout CSS */
.scratch-checkout {
    background: var(--light-gray-bg);
}

.scratch-checkout .scratch-checkout__wrapper {
    max-width: 530px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.scratch-checkout .back-btn {
    position: absolute;
    left: 15px;
    top: 3.8%;
}

@media (max-width: 768px) {
    .scratch-checkout .back-btn {
        top: 3.7%;
    }
}

@media (max-width: 380px) {
    .scratch-checkout .back-btn {
        left: 5px;
    }
}

.scratch-checkout .checkout-cart {
    background: var(--light-gray-bg);
    padding: 40px 15px 50px;
    box-shadow: none;
}

.scratch-checkout .checkout-cart__summary {
    display: none;
    height: 0;
    opacity: 0;
}

.scratch-checkout .checkout-cart__fields {
    height: auto;
    max-height: unset;
}

.scratch-checkout .checkout-cart__inner {
    padding: 0;
}

.scratch-checkout .checkout-cart__heading {
    font-family: "Noto Sans";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .scratch-checkout .checkout-cart__heading {
        font-size: 24px;
    }
}

@media (max-width: 1370px) {
    .scratch-checkout .checkout-cart__heading {
        font-size: 26px;
    }
}

.scratch-checkout .checkout-cart__summary-info {
    margin-bottom: 30px;
}

.scratch-checkout .cart__title.js-cart-summary-amount {
    font-family: "Noto Sans";
    font-size: 55px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -1.3px;
    text-align: center;
    color: var(--text-color);
}

@media (max-width: 380px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 50px;
    }
}

@media (max-width: 360px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 48px;
    }
}

@media (max-width: 340px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 46px;
    }
}

.scratch-checkout .cart__summary-block {
    display: none;
}

.scratch-checkout .checkout-form__sections {
    display: grid;
    gap: 15px;
}

.scratch-checkout .checkout-form__personal-info h4,
.scratch-checkout .checkout-form__billing-info h4,
.scratch-checkout .checkout-form__payment-info h4 {
    font-family: "Noto Sans";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: var(--black-color);
    border: 0;
    padding: 0;
}

@media (max-width: 991px) {

    .scratch-checkout .checkout-form__personal-info h4,
    .scratch-checkout .checkout-form__billing-info h4,
    .scratch-checkout .checkout-form__payment-info h4 {
        font-size: 24px;
    }
}

@media (max-width: 1370px) {

    .scratch-checkout .checkout-form__personal-info h4,
    .scratch-checkout .checkout-form__billing-info h4,
    .scratch-checkout .checkout-form__payment-info h4 {
        font-size: 26px;
    }
}

.scratch-checkout .checkout-form__payment-info:has(.saved-card-option.active) .checkout-form__checkbox {
    display: none !important;
}

.scratch-checkout .form-row {
    display: block;
    margin-bottom: 0;
}

.scratch-checkout .form-row__full {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
}

@media (max-width: 380px) {
    .scratch-checkout .form-row__full {
        display: block;
    }
}

.scratch-checkout .form-row .form-group {
    margin-bottom: 7px;
}

.scratch-checkout .form-group {
    margin-bottom: 15px;
}

.scratch-checkout .checkout-cart .form-control {
    font-family: "Noto Sans";
    width: 100%;
    height: 48px;
    padding: 4px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-bg);
    background: var(--white-color);
    color: var(--text-color);
}

@media (max-width: 360px) {
    .scratch-checkout .checkout-cart .form-control {
        height: 46px;
    }
}

.scratch-checkout .checkout-cart .form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: none;
}

.scratch-checkout .checkout-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    margin-bottom: 0;
    margin-top: 30px;
    background: transparent;
    padding: 0;
}

.scratch-checkout .checkout-form__checkbox input[type="checkbox"] {
    width: 25px;
    height: 25px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    border-radius: 5px;
}

.scratch-checkout .checkout-form__checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.scratch-checkout .checkout-form__currency {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.scratch-checkout .checkout-form__currency label {
    font-weight: 600;
    color: #1f2937;
}

.scratch-checkout .checkout-form__recurring {
    padding: 15px;
    background: var(--white-color);
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e5e7eb;
}

.scratch-checkout .checkout-form__submit-btn {
    width: 100%;
    height: 68px;
    font-size: 22px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-bg);
    color: var(--black-color);
    padding: 4px 20px;
    border: 0;
    border-radius: 60px;
    transition: all .25s ease-in-out;
}

@media (max-width: 390px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 58px;
        font-size: 18px;
    }
}

@media (max-width: 340px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 54px;
    }
}

.scratch-checkout .checkout-form__submit-btn:hover {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
    transform: unset;
}

.scratch-checkout .validation-message {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.scratch-checkout .validation-message .err-msg {
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-red);
    box-shadow: 1px 2px 11px 1px rgba(0, 0, 0, 0.1);
    background: #feebff;
    margin-top: 30px;
}

.scratch-checkout .checkout-form__payment-info .payment_tabs_checkbox {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0;
    border: 0;
}

.scratch-checkout .checkout-form__payment-info .payment_tabs_checkbox .nav-link {
    width: 100%;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container {
    position: relative;
    min-height: 100px;
    padding: 10px 12px !important;
    background: var(--white-color);
    border: 1px solid var(--gray-bg);
    border-radius: 8px !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container p {
    display: none !important;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container input {
    position: absolute;
    left: 12px;
    top: 10px;
    accent-color: var(--secondary-color);
    width: 20px;
    height: 20px;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container img {
    min-width: 80px;
    max-width: 140px;
    width: auto !important;
    height: auto !important;
    max-height: 70px !important;
}

.scratch-checkout .checkout-form__payment-info .tab-content {
    margin-top: 30px !important;
    /* min-height: 48px;
    border-radius: 8px;
    background-color: var(--white-color);
    padding: 4px 16px !important; */
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div div {
    width: 100%;
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div #card-errors {
    display: none !important;
}

.scratch-checkout .saved-card-wrapper {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white-color);
    border: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .scratch-checkout .saved-card-wrapper {
        padding: 30px;
    }
}

.scratch-checkout #toggler__payments-methods .payment_tabs_checkbox {
    padding-top: 30px;
}

.scratch-checkout .saved-card-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.scratch-checkout .saved-card-list {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    gap: 15px;
}

.scratch-checkout .saved-card-option {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 8px;
    border-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .scratch-checkout .saved-card-option {
        padding: 12px 16px;
        font-size: 16px;
    }
}

.scratch-checkout .saved-card-option:hover,
.scratch-checkout .saved-card-option.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.scratch-checkout .saved-card-reset {
    height: 60px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    margin-top: 15px;
}

.scratch-checkout .saved-card-reset:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

/*  */
/*  */
/*  */


.scratch-checkout .card-view-details {
    display: block;
    border: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.scratch-checkout .cardpayment-details {
    width: 100%;
    /* height: 57px; */
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 16px 24px;
    border: 1px solid var(--gray-bg);
}

@media (max-width: 991px) {
    .scratch-checkout .cardpayment-details {
        padding: 15px 15px;
    }
}

.scratch-checkout .card-content .grecaptcha-badge {
    display: none;
}

.scratch-checkout .cardpayment-details input {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #676767;
    border: 0;
    padding: 0;
}

@media (max-width: 991px) {
    .scratch-checkout .cardpayment-details input {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .scratch-checkout .cardpayment-details input {
        font-size: 14px;
    }
}

.scratch-checkout .cardpayment-details input::placeholder {
    color: #cccccc;
}

.scratch-checkout .cardpayment-details input:focus,
.scratch-checkout .cardpayment-details input:focus-visible {
    outline: none;
    border: none;
}

.scratch-checkout .cardpayment-details__cardholder {
    margin-bottom: 12px;
}

.scratch-checkout .cardpayment-details__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    column-gap: 20px;
}

.scratch-checkout .cardpayment-details__box input {
    width: 100%;
}

.scratch-checkout .cardpayment-details__box input:first-child {
    min-width: 60%;
}

.scratch-checkout .cardpayment-details.StripeElement {
    padding: 18px 24px !important;
    background-color: var(--white-color) !important;
}

@media (max-width: 768px) {
    .scratch-checkout .cardpayment-details.StripeElement {
        padding: 16px 22px !important;
    }
}

.scratch-checkout .cardpayment-details .d-flex {
    column-gap: 10px;
}

.scratch-checkout .cardpayment-details .d-flex .form-input {
    height: 55px !important;
    color: rgb(51, 51, 51) !important;
    background-color: rgb(250, 250, 250) !important;
    border: 1px solid rgb(204, 204, 204) !important;
}

.scratch-checkout .cardpayment-details .d-flex input::placeholder {
    color: rgb(117, 117, 117) !important;
}

.scratch-checkout .cardpayment-details .cardpayment-details__box {
    padding: 15px 20px;
    background: var(--color-white);
    border-radius: 15px;
}

@media (max-width: 768px) {
    .scratch-checkout .cardpayment-details .cardpayment-details__box {
        border-radius: 10px;
    }
}

@media (max-width: 575px) {
    .scratch-checkout .cardpayment-details .cardpayment-details__box {
        flex-wrap: wrap;
        row-gap: 10px;
        padding: 10px 15px;
    }
}

.scratch-checkout #cardknox-card-element {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}

.scratch-checkout #cardknox-card-element .form-input {
    margin: 0 !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .scratch-checkout #cardknox-card-element {
        flex-direction: column;
    }

    .scratch-checkout #cardknox-card-element .d-flex {
        width: 100%;
    }

    .scratch-checkout #cardknox-card-element .form-input {
        width: 100% !important;
    }

    .scratch-checkout #cardknox-card-element .d-flex>div {
        width: 100% !important;
    }
}

@media (max-width: 420px) {
    .scratch-checkout #cardknox-card-element .form-input {
        width: 96% !important;
    }
}

.scratch-checkout #cardknox-card-element .d-flex {
    margin-top: 0;
}

.scratch-checkout #cardknox-card-element .d-flex iframe.placeHolder {
    height: 55px !important;
}

.scratch-checkout #cardknox-card-element iframe.placeHolder {
    margin-top: 0 !important;
}

.scratch-checkout .cardpayment-details__box input {
    padding: 0;
    border-radius: 5px;
}


/*  */
/*  */
/*  */

.scratch-checkout .btn__loading,
.btn.btn__loading {
    position: relative;
    font-size: 0 !important;
    background-color: #fcb2ff !important;
    border-color: #fcb2ff !important;
    color: #fcb2ff !important;
    cursor: not-allowed;
    pointer-events: none;
    transition: unset !important;
}

.scratch-checkout .btn__loading::after,
.btn.btn__loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid var(--white-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spinLoading 0.6s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/*  */
.after-scratch {
    padding: 40px 0 150px;
    position: relative;
    background-color: var(--secondary-color);
    min-height: calc(100vh - 90px);
}

@media (min-width: 991px) {
    .after-scratch {
        padding-top: 50px;
        min-height: calc(100vh - 110px);
    }
}

@media (min-width: 1280px) {
    .after-scratch {
        min-height: calc(100vh - 120px);
    }
}

@media (min-width: 1370px) {
    .after-scratch {
        min-height: calc(100vh - 135px);
    }
}

.after-scratch .after-scratch__inner {
    position: relative;
    text-align: center;
}

.after-scratch .space-divider {
    display: block;
    text-align: center;
    margin: 18px 0;
}

@media (min-width: 1550px) {
    .after-scratch .space-divider {
        margin: 25px 0;
    }
}

.after-scratch .section-title {
    max-width: 380px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.after-scratch .section-title .title span {
    display: inline;
}

@media (min-width: 768px) {
    .after-scratch .section-title {
        max-width: 480px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .section-title {
        max-width: 650px;
    }

    .after-scratch .section-title .title span {
        display: block;
    }
}

.after-scratch .section-title .title {
    font-weight: 700;
    color: var(--text-yellow);
}

.after-scratch .section-title .description {
    text-align: center;
    color: var(--white-color);
    font-weight: 500;
    margin-top: 18px;
}

.after-scratch .btn-grp {
    max-width: 300px;
    margin: auto;
}

@media (min-width: 1199px) {
    .after-scratch .btn-grp {
        max-width: 350px;
    }
}

.after-scratch .btn {
    font-size: 18px;
    height: 44px;
}

@media (min-width: 768px) {
    .after-scratch .btn {
        height: 46px;
    }
}

@media (min-width: 991px) {
    .after-scratch .btn {
        height: 48px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .btn {
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 1280px) {
    .after-scratch .btn {
        height: 54px;
        font-size: 22px;
    }
}

@media (min-width: 1370px) {
    .after-scratch .btn {
        height: 58px;
    }
}

.after-scratch .after-scratch__top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.after-scratch .after-scratch__bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 18px 20px;
    background-color: var(--primary-color);
}

@media (max-width: 400px) {
    .after-scratch .after-scratch__bottom {
        padding: 18px 15px;
    }
}

.after-scratch .after-scratch__bottom-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    max-width: 1450px;
    margin: auto;
}

@media (min-width: 450px) {
    .after-scratch .after-scratch__bottom-text {
        align-items: center;
        justify-content: flex-start;
    }
}

@media (min-width: 1050px) {
    .after-scratch .after-scratch__bottom-text {
        justify-content: center;
        column-gap: 30px;
    }
}

.after-scratch .after-scratch__bottom img {
    width: 60px;
    min-width: 60px;
    height: auto;
}

.after-scratch .after-scratch__bottom p {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    color: var(--white-color);
}

@media (min-width: 768px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 14px;
    }
}

@media (min-width: 991px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 700px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 17px;
    }
}

@media (min-width: 1370px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 18px;
        line-height: 1.5;
    }
}

.after-scratch .after-scratch__bottom p strong {
    font-weight: 700;
}

.after-scratch .win-title {
    position: relative;
    display: inline-block;
    color: var(--text-yellow);
    padding-bottom: 30px;
    margin-bottom: 22px;
}

.after-scratch .win-title::before {
    content: '';
    position: absolute;
    width: 285px;
    height: 25px;
    bottom: 7px;
    left: 50%;
    background-image: url('../images/icons/title-stroke.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

@media (max-width: 360px) {
    .after-scratch .win-title::before {
        width: 260px;
    }
}

.scratch-now #confettiCanvasFirst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.after-scratch #confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.after-scratch .after-scratch__content {
    max-width: 338px;
    margin: auto;
}

@media (min-width: 991px) {
    .after-scratch .after-scratch__content {
        max-width: 350px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__content {
        max-width: 650px;
    }
}

.after-scratch .after-scratch__content .subtext {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    color: var(--white-color);
    margin-bottom: 25px;
}

.after-scratch .after-scratch__content .subtext span.txt {
    display: inline;
    color: var(--white-color);
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__content .subtext span.txt {
        display: block;
        color: var(--white-color);
    }
}

.after-scratch .after-scratch__content .subtext.fs_16 {
    font-size: 16px;
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__content .subtext.fs_16 br {
        display: none;
    }
}

.after-scratch .after-scratch__content .subtext span {
    /* display: block; */
    color: var(--text-yellow);
}

.after-scratch .after-scratch__content .btn--link {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: var(--text-yellow);
    letter-spacing: 0.1px;
    transition: all .25s ease-in-out;
    text-decoration: underline;
    margin-left: -24px;
}

.after-scratch .after-scratch__content .btn--link:hover {
    transform: scale(1.05);
}

@media (max-width: 390px) {
    .after-scratch .after-scratch__content .btn--link {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .after-scratch .after-scratch__content .btn--link {
        font-size: 18px;
    }
}

.back-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .25s ease-in-out;
}

@media (min-width: 768px) {
    .back-btn {
        width: 50px;
        height: 50px;
        transform: unset;
    }
}

.unlock-ticket .back-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
}

@media (max-width: 768px) {
    .unlock-ticket .back-btn {
        left: 0;
    }
}

@media (max-width: 380px) {
    .unlock-ticket .back-btn {
        left: -10px;
    }
}

.back-btn:hover {
    background-color: #b520bb;
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .back-btn svg {
        width: 30px;
        height: 30px;
    }
}

/*  */
/*  */
/*  */
/*  */
/* Old CSS */
/*  */
/*  */
/*  */

/* ===== Message Modal ===== */
.message-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.message-box.hidden {
    display: none;
}

.message-box-content {
    background: var(--white-color);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 360px;
}

.message-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.message-button {
    background: #dc2626;
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 12px;
}

.message-button:hover {
    background: #b91c1c;
}

/*  */

.prize-share-cta {
    margin: 1.8rem 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 1199px) {
    .prize-share-cta {
        margin: 1rem 0 0;
    }
}

.prize-share-card {
    max-width: 640px;
    width: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    text-align: left;
    text-align: center;
}

.prize-share-card h2 {
    font-size: 1.4rem;
    margin: 0;
}

.prize-share-text {
    max-width: 525px;
    margin: 2rem auto 1rem;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-yellow);
}

@media (max-width: 1199px) {
    .prize-share-text {
        margin: 1.75rem auto 1rem;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .prize-share-text {
        font-size: 18px;
    }
}

.prize-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 1199px) {
    .prize-share-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.prize-share-btn {
    height: 34px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.prize-share-btn span {
    margin-left: 4px;
}

.prize-share-btn svg {
    display: none;
    width: 15px;
    height: 15px;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .prize-share-btn {
        font-size: 0.8rem;
    }

    .prize-share-btn svg {
        display: block;
    }

    .prize-share-btn span {
        display: none;
    }
}

.prize-share-btn--facebook {
    background: #1877f2;
    color: #fff;
}

.prize-share-btn--twitter {
    background: #000;
    color: #fff;
}

.prize-share-btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.prize-share-btn--outline {
    background: #fff;
    color: #444;
    border: 1px solid #ccc;
}

.prize-share-btn--outline:hover {
    border-color: #999;
}

.prize-share-note {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 600px) {
    .prize-share-card {
        padding: 1.25rem 1rem;
    }

    .prize-share-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .prize-share-btn {
        width: 100%;
    }
}

.repurchase-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.repurchase-confirm-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.repurchase-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1;
    pointer-events: none;
}

.repurchase-confirm-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.repurchase-confirm-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.repurchase-confirm-body {
    margin-bottom: 24px;
}

.repurchase-confirm-message {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 12px 0;
}

.repurchase-confirm-submessage {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.repurchase-card-info,
.repurchase-amount,
.repurchase-ticket-number {
    color: #6B46C1;
    font-weight: 600;
}

.repurchase-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.repurchase-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer !important;
    transition: all 0.2s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 100;
    user-select: none;
}

.repurchase-btn:hover {
    opacity: 0.9;
}

.repurchase-btn:active {
    transform: scale(0.98);
}

.repurchase-btn-cancel {
    background: #f3f4f6;
    color: #666;
}

.repurchase-btn-cancel:hover {
    background: #e5e7eb !important;
    color: #333;
}

.repurchase-btn-confirm {
    background: #6B46C1 !important;
    color: white !important;
}

.repurchase-btn-confirm:hover {
    background: #5a3aa0 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3) !important;
}

.repurchase-btn-confirm:active {
    transform: translateY(0) !important;
}

@media (max-width: 640px) {
    .repurchase-confirm-content {
        padding: 24px;
    }

    .repurchase-confirm-title {
        font-size: 20px;
    }

    .repurchase-confirm-message {
        font-size: 15px;
    }

    .repurchase-confirm-actions {
        flex-direction: column;
    }

    .repurchase-btn {
        width: 100%;
    }
}

.contact-main {
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (min-width: 991px) {
    .contact-main {
        padding: 50px 0 60px;
    }
}

.contact-main .section-title {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .contact-main .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .contact-main .section-title br {
        display: none;
    }
}

.contact-main .contact__inner {
    max-width: 600px;
    margin: auto;
}

@media (min-width: 768px) {
    .contact-main .contact__inner {
        max-width: 700px;
    }
}

@media (min-width: 991px) {
    .contact-main .contact__inner {
        max-width: 1200px;
        margin: auto;
    }
}

.contact__wrapper {
    height: 100%;
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

@media (min-width: 991px) {
    .contact__wrapper {
        padding: 50px 40px;
        border-radius: 20px;
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

.contact__info {
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 0;
}

@media (max-width: 991px) {
    .contact__info {
        flex: 1;
        max-width: 100%;
        padding-top: 30px;
        border-top: 2px dashed var(--gray-bg);
    }
}

.contact__info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 991px) {
    .contact__info-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact__info-content {
        gap: 20px;
    }
}

.contact__info-project {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-bg);
}

.contact__info-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

@media (min-width: 991px) {
    .contact__info-label {
        font-size: 20px;
    }
}

.contact__info-logo {
    display: block;
    width: 100%;
}

.contact__info-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}

@media (min-width: 991px) {
    .contact__info-logo img {
        max-width: 140px;
        margin: 0;
    }
}

.contact__info-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-bg);
}

@media (max-width: 600px) {
    .contact__info-details {
        gap: 8px;
        padding-bottom: 20px;
    }
}

.contact__info-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 5px;
}

@media (min-width: 991px) {
    .contact__info-name {
        font-size: 26px;
    }
}

.contact__info-address {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.contact__info-website {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 3px;
}

.contact__info-website:hover {
    color: var(--yellow-bg)
}

.contact__info-phone-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.contact__info-phone-text strong {
    font-weight: 700;
}

@media (max-width: 380px) {
    .contact__info-phone-text br {
        display: none;
    }
}

.contact__info-phone-link {
    display: inline;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--text-yellow);
    color: var(--black-color);
    padding: 4px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 3px;
}

@media (min-width: 991px) {
    .contact__info-phone-link {
        padding: 5px 12px;
    }
}

@media (max-width: 380px) {
    .contact__info-phone-link {
        display: block;
        margin-top: 12px;
    }
}

.contact__info-phone-link:hover {
    background-color: rgba(255, 210, 11, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.contact__form {
    width: 100%;
    min-width: 0;
}

@media (max-width: 990px) {
    .contact__form {
        flex: 1;
        max-width: 100%;
    }
}

.contact__form-content {
    width: 100%;
}

.contact__form .form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact__form .form__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 991px) {
    .contact__form .form__grid {
        gap: 25px;
        margin-bottom: 25px;
    }
}

.contact__form .form__grid .form__group {
    margin-bottom: 0;
}

.contact__form .form__group {
    margin-bottom: 20px;
}

@media (min-width: 991px) {
    .contact__form .form__group {
        margin-bottom: 25px;
    }
}

.contact__form .form__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 8px;
    font-family: "Noto Sans", sans-serif;
}

@media (min-width: 991px) {
    .contact__form .form__label {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.contact__form .form__label .required {
    color: var(--text-red);
    margin-left: 3px;
}

.contact__form .form__label .optional {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 5px;
}

.contact__form .form__control {
    width: 100%;
    height: 48px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    line-height: 1;
    border-radius: 10px;
    border: 1px solid var(--gray-bg);
    background: var(--white-color);
    color: var(--text-color);
    transition: all 0.25s ease-in-out;
}

@media (min-width: 991px) {
    .contact__form .form__control {
        height: 50px;
        font-size: 18px;
        padding: 8px 20px;
    }
}

@media (min-width: 1199px) {
    .contact__form .form__control {
        height: 52px;
    }
}

.contact__form .form__control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(225, 44, 232, 0.1);
}

.contact__form .form__control::placeholder {
    color: var(--text-gray);
    font-weight: 400;
}

.contact__form .form__control-textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding-top: 10px;
    line-height: 1.4;
}

@media (min-width: 991px) {
    .contact__form .form__control-textarea {
        min-height: 140px;
        padding-top: 12px;
    }
}

.contact__form .btn-grp {
    margin-top: 30px;
    text-align: center;
}

@media (min-width: 991px) {
    .contact__form .btn-grp {
        margin-top: 35px;
    }
}

.contact__form .btn {
    max-width: 400px;
}

/*  */
/* Affiliate Dashboard CSS */
/*  */
/* .affiliate-dashboard {
    background-color: var(--yellow-bg);
} */

.affiliate-dashboard__hero {
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (min-width: 991px) {
    .affiliate-dashboard__hero {
        padding: 50px 0 60px;
    }
}

@media (max-width: 600px) {
    .affiliate-dashboard__hero .section-title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .affiliate-dashboard__hero {
        padding: 30px 0 40px;
    }
}

.affiliate-card {
    background-color: var(--white-color);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .affiliate-card {
        padding: 20px;
        border-radius: 16px;
    }
}

@media (max-width: 575px) {
    .affiliate-card {
        padding: 15px;
    }
}

.affiliate-card .subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--black-color);
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 380px) {
    .affiliate-card .subtitle {
        font-size: 28px;
    }
}

@media (max-width: 340px) {
    .affiliate-card .subtitle {
        font-size: 26px;
    }
}

.affiliate-card__container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .affiliate-card__container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.affiliate-card__content {
    position: relative;
    background-color: var(--light-gray-bg);
    border-radius: 12px;
    padding: 20px;
    padding-right: 120px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .affiliate-card__content {
        padding: 15px;
        padding-right: 110px;
    }
}

@media (max-width: 480px) {
    .affiliate-card__content {
        padding-right: 15px;
    }
}

.affiliate-card__content:hover {
    border-color: var(--secondary-color);
    background-color: var(--white-color);
}

.affiliate-card__content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.affiliate-card__content .link {
    font-size: 14px;
    line-height: normal;
    color: var(--black-color);
    word-break: break-all;
    line-height: 1.6;
    padding-right: 50px;
    margin-bottom: 12px;
}

@media (max-width: 575px) {
    .affiliate-card__content .link {
        padding-right: 45px;
        margin-bottom: 10px;
        line-height: normal;
    }
}

@media (max-width: 480px) {
    .affiliate-card__content .link {
        display: block;
        margin-bottom: 0;
        padding: 0;
    }
}

.affiliate-card__content .link-copy__btn {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .affiliate-card__content .link-copy__btn {
        right: 15px;
        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .affiliate-card__content .link-copy__btn {
        right: 12px;
        padding: 6px 8px;
        font-size: 11px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .affiliate-card__content .link-copy__btn {
        position: unset;
        transform: unset;
        margin-top: 10px;
    }
}

.affiliate-card__content .link-copy__btn:hover {
    background-color: #b520bb;
    box-shadow: 0 4px 8px rgba(225, 44, 232, 0.3);
}

.affiliate-card__content .link-copy__btn.copied {
    background-color: green;
}

.affiliate-card__content .link-copy__btn svg {
    width: 16px;
    height: 16px;
}

.affiliate-stats {
    padding: 40px 0 50px;
    background-color: var(--white-color);
    position: relative;
    /* overflow: hidden; */
    top: 0;
    transition: all 0.3s ease;
}

@media (min-width: 991px) {
    .affiliate-stats {
        padding: 50px 0 60px;
    }
}

@media (min-width: 991px) {
    .affiliate-trigger {
        height: 1px;
    }

    .affiliate-stats.stats-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        padding: 15px 0;
        background-color: var(--white-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .affiliate-stats.stats-sticky .section-title {
        display: none;
    }

    .affiliate-stats.stats-sticky .affiliate-stats__container {
        gap: 15px;
    }

    .affiliate-stats.stats-sticky .stat-card {
        padding: 15px 20px;
        border-radius: 12px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .affiliate-stats.stats-sticky .stat-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .affiliate-stats.stats-sticky .stat-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .affiliate-stats.stats-sticky .stat-card__content {
        flex: 1;
        min-width: 0;
    }

    .affiliate-stats.stats-sticky .stat-card__label {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .affiliate-stats.stats-sticky .stat-card__value {
        font-size: 20px;
        margin-bottom: 0;
    }

    .affiliate-stats.stats-sticky .stat-card__decoration {
        display: none;
    }

    .affiliate-stats.stats-sticky .stat-card:hover {
        transform: none;
    }
}

.affiliate-stats__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 450px) {
    .affiliate-stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .affiliate-stats__container {
        gap: 25px;
    }
}

@media (min-width: 991px) {
    .affiliate-stats__container {
        gap: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1199px) {
    .affiliate-stats__container {
        max-width: 1050px;
        margin: auto;
    }
}

.stat-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 44, 232, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.stat-card--yellow {
    border-color: var(--yellow-bg);
    background: linear-gradient(135deg, var(--white-color) 0%, rgba(255, 210, 11, 0.05) 100%);
}

.stat-card--yellow:hover {
    border-color: var(--yellow-bg);
    box-shadow: 0 12px 35px rgba(255, 210, 11, 0.3);
}

.stat-card--secondary {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white-color) 0%, rgba(225, 44, 232, 0.05) 100%);
}

.stat-card--secondary:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 35px rgba(225, 44, 232, 0.3);
}

@media (max-width: 991px) {
    .stat-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
}

@media (max-width: 575px) {
    .stat-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
}

@media (max-width: 450px) {
    .affiliate-stats__container {
        gap: 15px;
    }

    .stat-card {
        padding: 18px 12px;
    }
}

.stat-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.stat-card--yellow .stat-card__icon {
    background-color: var(--yellow-bg);
    color: var(--black-color);
    box-shadow: 0 4px 15px rgba(255, 210, 11, 0.4);
}

.stat-card--secondary .stat-card__icon {
    background-color: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(225, 44, 232, 0.4);
}

.stat-card:hover .stat-card__icon {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 991px) {
    .stat-card__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
}

@media (max-width: 575px) {
    .stat-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
}

.stat-card__icon svg {
    width: 36px;
    height: 36px;
}

@media (max-width: 991px) {
    .stat-card__icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 575px) {
    .stat-card__icon svg {
        width: 28px;
        height: 28px;
    }
}

.stat-card__content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.stat-card__content span {
    display: block;
}

.stat-card__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 991px) {
    .stat-card__label {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

.stat-card__value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.stat-card--yellow .stat-card__value {
    color: var(--black-color);
}

.stat-card--secondary .stat-card__value {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .stat-card__value {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .stat-card__value {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

@media (min-width: 1199px) {
    .stat-card__value {
        font-size: 36px;
    }
}

@media (min-width: 1370px) {
    .stat-card__value {
        font-size: 40px;
    }
}

.stat-card__decoration {
    width: 60px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.stat-card--yellow .stat-card__decoration {
    background-color: var(--yellow-bg);
}

.stat-card--secondary .stat-card__decoration {
    background-color: var(--secondary-color);
}

.stat-card:hover .stat-card__decoration {
    width: 80px;
    height: 5px;
}

.affiliate-donations {
    padding: 0 0 50px;
    background-color: var(--white-color);
}

@media (min-width: 991px) {
    .affiliate-donations {
        padding: 0 0 60px;
    }
}

.affiliate-donations-table {
    background-color: var(--white-color);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--yellow-bg);
    max-width: 1050px;
    margin: auto;
}

@media (max-width: 991px) {
    .affiliate-donations-table {
        padding: 20px;
        border-radius: 16px;
    }
}

@media (max-width: 575px) {
    .affiliate-donations-table {
        padding: 15px;
        border-radius: 14px;
    }
}

.affiliate-donations-table__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.affiliate-donations-table__table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 15px;
}

@media (max-width: 991px) {
    .affiliate-donations-table__table {
        font-size: 14px;
    }
}

.affiliate-donations-table__table thead {
    background-color: var(--secondary-color);
}

.affiliate-donations-table__table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--white-color);
    font-size: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .affiliate-donations-table__table th {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .affiliate-donations-table__table th {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.affiliate-donations-table__table th.text-right {
    text-align: right;
}

.affiliate-donations-table__table tbody tr {
    border-bottom: 1px solid var(--gray-bg);
    transition: background-color 0.2s ease;
}

.affiliate-donations-table__table tbody tr:hover {
    background-color: var(--light-gray-bg);
}

.affiliate-donations-table__table tbody tr:last-child {
    border-bottom: none;
}

.affiliate-donations-table__table td {
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 991px) {
    .affiliate-donations-table__table td {
        padding: 12px 15px;
    }
}

@media (max-width: 575px) {
    .affiliate-donations-table__table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.affiliate-donations-table__table td.text-right {
    text-align: right;
    font-weight: 700;
    color: var(--secondary-color);
}

.affiliate-donor-anonymous {
    color: var(--text-gray);
    font-style: italic;
}

.affiliate-empty-state {
    background-color: var(--white-color);
    border-radius: 18px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--yellow-bg);
}

@media (max-width: 991px) {
    .affiliate-empty-state {
        padding: 40px 20px;
        border-radius: 16px;
    }
}

.affiliate-empty-state__text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 991px) {
    .affiliate-empty-state__text {
        font-size: 16px;
    }
}

.affiliate-divider .divider {
    width: 100%;
    height: 1px;
    background-color: var(--yellow-bg);
}

@media (min-width: 991px) {
    .affiliate-stats.stats-sticky + .affiliate-donations {
        margin-top: 160px;
    }
}