        /* Consolidated styles */
        :root {
            --operator-main-color: #202900;
            --operator-main-dark-color: #344200;
            --operator-main-color-hex: #688500;
            --operator-main-color-secondary: rgba(32, 41, 0, 0.7);
            --operator-main-light-color: rgba(32, 41, 0, 0.5);
            --operator-wh-first-color: #202900;
            --operator-wh-second-color: #f8d87f;
            --operator-wh-second-color-secondary: rgba(248, 216, 127, 0.7);
            --operator-wh-second-light-color: rgba(248, 216, 127, 0.5);
            --operator-wh-text-first-color: #FFFFFF;
            --operator-wh-text-second-color: #000000;
            --operator-wh-box-shadow-color: #f8d87f;
            --operator-btn-box-shadow-color: rgba(248, 216, 127, 0.3);
            --operator-btn-box-shadow-light-color: rgba(248, 216, 127, 0.2);
            --operator-logo-text-shadow-color: #f8d87f;
            --operator-go-website-color: #344200;
        }

        html {
            background-color: #202900 !important;
        }

        body {
            background-color: #202900 !important;
            color: #FFFFFF !important;
        }

        .menu {
            background: var(--operator-main-color);
            background-image: linear-gradient(160deg, var(--operator-main-color), var(--operator-main-dark-color));
        }

        .menu > a {
            background-color: var(--operator-go-website-color);
            color: #FFFFFF;
        }

        .menu .items a {
            color: #FFFFFF;
        }

        .button {
            color: #FFFFFF;
        }

        .button--secondary {
            background-color: #344200;
            border: 1px solid #688500;
            color: #FFFFFF;
        }

        .button--secondary-light {
            background-color: #344200;
            border: 1px solid rgba(248, 216, 127, 0.5);
            color: #FFFFFF;
        }

        .button--primary {
            background-color: #f8d87f;
            color: #000000;
            background-image: linear-gradient(160deg, #f8d87f, rgba(248, 216, 127, 0.7));
            box-shadow: 0 0 0 3px #f8d87f inset, 
                       0 5px 0 -2px rgba(248, 216, 127, 0.3), 
                       0 10px 0 -4px rgba(248, 216, 127, 0.2), 
                       0 10px 20px rgba(248, 216, 127, 0.3);
        }

        .button--primary:hover {
            background-color: #e6c65e;
        }

        .wheel-sector__bg {
            background-color: var(--operator-main-color);
            background-image: linear-gradient(150deg, var(--operator-main-color-secondary), var(--operator-main-light-color));
            box-shadow: 5px 5px 15px var(--operator-main-light-color) 0 0 5px var(--operator-main-light-color)
        }

        .wheel__sector:nth-child(2n) .wheel-sector__bg {
            background-color: var(--operator-wh-second-color);
            background-image: linear-gradient(150deg, var(--operator-wh-second-color-secondary), var(--operator-wh-second-light-color))
        }

        .wheel__sector:nth-child(1n) .wheel-sector-body {
            color: #FFFFFF;
        }

        .wheel__sector:nth-child(2n) .wheel-sector-body {
            color: #000000;
        }

        .wheel {
            box-shadow: 0 0 0 12px #202900, 
                       0 0 0 18px #344200, 
                       0 0 0 30px #202900, 
                       0 0 100px #688500, 
                       0 0 100px #688500;
        }

        .win-item__amount {
            color: #f8d87f;
            text-shadow: 0 0 10px rgba(248, 216, 127, 0.5);
        }

        .win-item__text {
            color: #FFFFFF;
        }

        .win-item--extra {
            background-color: #344200;
            border: 1px solid #688500;
        }

        input[type="text"].button--secondary {
            background: #344200;
            border: 1px solid #688500;
            color: #FFFFFF;
        }

        input[type="text"].button--secondary:focus {
            border-color: #f8d87f;
            box-shadow: 0 0 0 2px rgba(248, 216, 127, 0.1);
        }

        #spin-button:disabled {
            opacity: 0.5;
            background-color: #cccccc;
            color: #666666;
        }

        .reward-popup {
            background-color: rgba(32, 41, 0, 0.85);
        }

        .reward-popup__content {
            background-color: #344200;
            border: 1px solid #688500;
            color: #FFFFFF;
        }

        .reward-popup__close {
            background-color: #f8d87f;
            color: #000000;
        }

        .reward-popup__close:hover {
            background-color: #e6c65e;
        }

        .footer {
            background-image: linear-gradient(to bottom, #202900, #344200);
        }

        .copyright {
            color: #FFFFFF;
        }

        /* Notification styles */
        .simple-notification.success {
            background: #f8d87f !important;
            color: #000000 !important;
        }

        .simple-notification.success .sn-progress-loader span {
            background: #e6c65e !important;
        }

        /* Wheel sector text shadow */
        .wheel-sector-body__amount,
        .wheel-sector-body__text {
            text-shadow: 2px -2px 0 rgba(248, 216, 127, 0.1);
        }

        .wheel-sector--highlight .wheel-sector-body__amount,
        .wheel-sector--highlight .wheel-sector-body__text {
            text-shadow: 0 0 5px rgba(248, 216, 127, 0.5);
        }

        /* Center pin style */
        .wheel-sector__pin {
            background-color: #f8d87f;
            box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
        }

        .jq-toast-single {
            font-size: 14px !important;
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
        .reward-popup {
            display: none;
            position: fixed;
            top: 100%;
            left: 100%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .reward-popup__text {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .reward-popup__close {
            padding: 10px 20px;
            background-color: #673AB7;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .reward-popup__close:hover {
            background-color: #5e2a94;
        }
        body {
    margin: 0
}

@font-face {
    font-family: 'Arial', serif;
    src: url(../font/Arial.717bd8862ef4af09.TTF)
}

:root {
    --operator-main-color: #202900;
    --operator-main-dark-color: #344200;
    --operator-main-color-hex: #688500;
    --operator-main-color-secondary: rgba(32, 41, 0, 0.7);
    --operator-main-light-color: rgba(32, 41, 0, 0.5);
    --operator-wh-first-color: #202900;
    --operator-wh-second-color: #f8d87f;
    --operator-wh-second-color-secondary: rgba(248, 216, 127, 0.7);
    --operator-wh-second-light-color: rgba(248, 216, 127, 0.5);
    --operator-wh-text-first-color: #FFFFFF;
    --operator-wh-text-second-color: #000000;
    --operator-wh-box-shadow-color: #f8d87f;
    --operator-btn-box-shadow-color: rgba(248, 216, 127, 0.3);
    --operator-btn-box-shadow-light-color: rgba(248, 216, 127, 0.2);
    --operator-logo-text-shadow-color: #f8d87f;
    --operator-go-website-color: #344200
}

html {
    background-color: #202900
}

body {
    margin: 0;
    background-color: #202900;
}

.page-loading {
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    background: var(--operator-main-color);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #f8d87f;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
    border-color: #f8d87f transparent transparent transparent
}

.lds-ring div:nth-child(1) {
    animation-delay: -.45s
}

.lds-ring div:nth-child(2) {
    animation-delay: -.3s
}

.lds-ring div:nth-child(3) {
    animation-delay: -.15s
}

@keyframes lds-ring {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.logo {
    max-height: 50px
}

.scg-description {
    color: #FFFFFF;
    font-family: 'Arial', serif;
}

.menu {
    position: fixed;
    height: 70px;
    width: 100%;
    background: var(--operator-main-color);
    background-image: linear-gradient(160deg, var(--operator-main-color), var(--operator-main-dark-color));
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    top: 0;
    align-items: center;
    padding: 20px 35px
}

.menu > a {
    padding: 20px 30px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Arial', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 15px;
    background-color: var(--operator-go-website-color)
}

.menu .items {
    display: flex;
    align-items: center
}

.menu .items a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Arial', serif;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    font-weight: 700
}

.menu img {
    max-height: 100px;
    padding: 10px;
    max-width: 175px
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-text-size-adjust: none;
    text-size-adjust: none
}

html {
    background-color: #202900
}

body {
    font-family: Poppins, Helvetica Neue, Arial, sans-serif
}

.zoomInDown {
    animation-name: zoomInDown
}

.zoomInLeft {
    animation-name: zoomInLeft
}

.slideInLeft {
    animation-name: slideInLeft
}

.tada {
    animation-name: tada
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translateY(-1000px);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translateY(60px);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate(-1000px);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate(10px);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate(-100%);
        visibility: visible
    }

    to {
        transform: translate(0)
    }
}

@keyframes tada {
    0% {
        transform: scale(1)
    }

    5%,
    10% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    15%,
    25%,
    35%,
    40% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    20%,
    30%,
    40% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    50%,
    to {
        transform: scale(1)
    }
}

.page {
    position: relative;
    background-image: url(../img/page_bg.jpeg);
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.page__body {
    width: 100%;
    position: relative;
    z-index: 2
}

.page__bg {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-repeat: no-repeat;
    transition: .5s ease
}

.page__bg--back {
    top: 0;
    left: 35%;
    background-size: 926.5px 930.5px;
    background-image: url(../img/parallax-bg-back.png);
    z-index: 1
}

.page__bg--middle {
    top: -40px;
    left: 45%;
    background-size: 993px 925.5px;
    background-image: url(../img/parallax-bg-middle.png);
    z-index: 3
}

.page__bg--front {
    top: -13%;
    left: 80%;
    background-size: 349px 243.5px;
    background-image: url(../img/parallax-bg-front.png);
    z-index: 4
}

.page__bg--offset {
    animation-name: helloBgInLeft;
    animation-duration: 1s;
    transform: translate(-20%) !important
}

.page__bg--offset.page__bg--middle {
    left: 40%
}

.page__footer {
    display: none
}

.page--centered {
    transform: translate(-400px)
}

@media (max-width: 980px) {
    .page__bg--back {
        left: 25%
    }

    .menu-item {
        display: none
    }
}

@media (max-width: 760px) {
    .copyright {
        display: none
    }

    .page {
        display: block
    }

    .page__footer {
        color: #fff;
        display: block;
        position: relative;
        z-index: 10
    }
}

@media (max-width: 640px) {
    .page {
        min-height: auto
    }
}

@keyframes helloBgInLeft {
    0% {
        transform: translate(-100%);
        opacity: 0
    }

    to {
        transform: translate(-20%);
        opacity: 1
    }
}

@media (max-width: 760px) {
    .logo {
        margin-bottom: 30px
    }
}

@media (max-width: 460px) {
    .logo {
        margin-bottom: 10px
    }
}

@media (max-width: 375px) {
    .logo {
        height: 34px
    }
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 40px;
    background-color: transparent;
    border: none;
    line-height: 1.3;
    font-weight: 700;
    color: #FFFFFF;
    min-height: 46px;
    transition: .2s ease;
    outline: none;
    overflow: hidden
}

.button[type=reset],
.button[type=button],
.button[type=submit] {
    -webkit-appearance: button
}

.button:not(:disabled) {
    cursor: pointer
}

.button__shadow {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width .1s ease, height .1s ease;
    height: 0;
    width: 0;
    border-radius: 40px;
    pointer-events: none
}

.button:hover .button__shadow {
    width: 180px;
    height: 180px
}

.button__counter,
.button__body {
    z-index: 1
}

.button__counter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3px;
    margin-right: -5px;
    padding-right: 1px;
    width: 30px;
    height: 30px;
    line-height: .9;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #f8d87f inset
}

.button__body {
    padding: 0 20px
}

.button:active {
    transform: translateY(2px)
}

.button:disabled,
.button--disabled {
    opacity: .5
}

.button,
.button--normal {
    padding: 4px;
    font-size: 14px
}

.button--secondary {
    background-color: #344200;
    border: 1px solid #688500
}

.button--secondary-light {
    background-color: #344200;
    border: 1px solid rgba(248, 216, 127, 0.5)
}

.button--secondary:active {
    box-shadow: 0 0 0 3px #688500 inset, 
                0 5px 0 -2px rgba(248, 216, 127, 0.3), 
                0 10px 0 -4px rgba(248, 216, 127, 0.2), 
                0 10px 20px rgba(248, 216, 127, 0.3);
}

.button--secondary:not(:disabled) .button__shadow {
    background: radial-gradient(circle closest-side, rgba(248, 216, 127, 0.4), rgba(248, 216, 127, 0));
}

.button--primary {
    background-color: #f8d87f;
    background-image: linear-gradient(160deg, #f8d87f, rgba(248, 216, 127, 0.7));
    box-shadow: 0 0 0 3px #f8d87f inset, 
               0 5px 0 -2px rgba(248, 216, 127, 0.3), 
               0 10px 0 -4px rgba(248, 216, 127, 0.2), 
               0 10px 20px rgba(248, 216, 127, 0.3);
}

.button--primary:active {
    box-shadow: 0 0 0 3px #f8d87f inset, 0 5px 0 -2px #688500, 0 10px 0 -4px #f8d87f, 0 5px 50px rgba(248, 216, 127, 0.5)
}

.button--primary .button__shadow {
    background: radial-gradient(circle closest-side, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0))
}

.button--tada {
    animation: tada 2s linear infinite
}

.container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 25vh 70px 10vh;
    min-height: 900px;
    width: 100%
}

.container__body {
    max-width: 500px;
    position: relative;
    opacity: 0;
    z-index: 1;
    transform: translate(-50px)
}

.container__body--show {
    opacity: 1;
    transform: translate(0);
    transition: .5s ease
}

.container__wheel {
    position: absolute;
    right: 0;
    top: 125px;
    transition: 1s ease
}

.container__wheel--centered {
    right: 50%;
    transition: 0 ease-in;
    transform: translate(50%) scale(1.2)
}

.container__person {
    position: absolute;
    right: -15%;
    bottom: -30%;
    max-width: 600px;
    transition: 1.5s ease;
    pointer-events: none
}

.container__person--offset {
    animation-name: helloPersonInLeft;
    animation-duration: 1s;
    transform: translate(-200px)
}

@media (max-width: 1400px) {
    .container {
        padding-left: 30px;
        padding-right: 30px
    }

    .container__person {
        max-width: 500px;
        bottom: -15%;
        right: -10%
    }
}

@media (max-width: 1200px) {
    .container__person {
        max-width: 480px;
        bottom: -10%;
        right: -15%
    }

    .container__wheel {
        right: -60px
    }

    .container__wheel--centered {
        right: 50%
    }
}

@media (max-width: 980px) {
    .container {
        padding-top: 120px;
        min-height: 740px;
        padding-bottom: 60px
    }

    .container__person {
        max-width: 430px;
        bottom: -120px
    }
}

@media (max-width: 880px) {
    .container {
        padding-top: 80px;
        min-height: 640px
    }

    .container__body {
        max-width: 400px
    }

    .container__wheel {
        right: -140px;
        transform: scale(.8);
        transform-origin: center center
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%) scale(1.1)
    }

    .container__person {
        max-width: 340px;
        right: -14%
    }
}

@media (max-width: 760px) {
    .container {
        padding: 70px 40px 380px;
        min-height: auto
    }

    .container__wheel {
        top: auto;
        right: 0;
        bottom: -180px;
        transform: rotate(10deg) scale(1)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.9)
    }

    .container__payments {
        display: none
    }

    .container__person {
        max-width: 430px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -40%
    }
}

@media (max-width: 640px) {
    .container {
        padding-bottom: 350px
    }

    .container__body {
        max-width: auto
    }

    .container__wheel {
        right: -20%;
        transform: rotate(55deg) scale(.8)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.7)
    }

    .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -50%
    }
}

@media (max-width: 460px) {
    .container {
        padding-left: 30px;
        padding-right: 0
    }

    .container__wheel {
        right: -30%;
        transform: rotate(55deg) scale(.7)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.6)
    }

    .container__person {
        max-width: 340px;
        bottom: -120px;
        right: -20%
    }

    .container__person--offset {
        right: -60%
    }
}

@media (max-width: 375px) {
    .menu > a {
        font-size: 12px
    }

    .container {
        padding-bottom: 280px
    }

    .container__wheel {
        right: -40%;
        bottom: -260px;
        transform: rotate(55deg) scale(.7)
    }

    .container__wheel--centered {
        right: 50%;
        transform: translate(50%, -46%) scale(.5)
    }

    .container__person {
        max-width: 310px;
        bottom: -120px;
        right: -30%
    }

    .container__person--offset {
        right: -80%
    }
}

@keyframes helloPersonInLeft {
    0% {
        transform: translate(-100px);
        opacity: 0
    }

    to {
        transform: translate(-200px);
        opacity: 1
    }
}

.wheel-container {
    position: relative
}

.wheel-container__highlighter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    right: calc(50% - 35px);
    background-position: center center;
    background-image: url(../img/wheel-highlight.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(-3deg);
    opacity: 0;
    filter: brightness(1.5) hue-rotate(45deg);
}

.wheel-container__highlighter--show {
    opacity: 1;
    transition: .3s ease;
    filter: brightness(1.5) hue-rotate(45deg) drop-shadow(0 0 5px rgba(248, 216, 127, 0.5));
}

.wheel-container__clicker {
    position: absolute;
    top: calc(50% - 25px);
    left: -34px;
    z-index: 1;
    pointer-events: none
}

.wheel-container__center {
    position: absolute;
    width: 108px;
    height: 108px;
    box-shadow: 0 16px 25px #0009
}

.wheel-container__center,
.wheel-container__center:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #d2974e;
    background-image: url(../img/wheel-center.png);
    background-size: cover
}

.wheel-container__center:after {
    content: "";
    width: 70px;
    height: 70px;
    box-shadow: 0 6px 6px #00000040, 0 -6px 6px #ffffff40
}

@media (max-width: 1400px) {
    .wheel-container__clicker {
        top: calc(50% - 15px);
        left: -28px
    }

    .wheel-container__highlighter {
        left: -10px;
        right: calc(50% - 20px)
    }

    .wheel-container__center {
        width: 80px;
        height: 80px;
        box-shadow: 0 10px 25px #0009
    }

    .wheel-container__center:after {
        width: 50px;
        height: 50px
    }
}

.wheel {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 12px #202900, 0 0 0 18px #344200, 0 0 0 30px #202900, 0 0 100px #688500, 0 0 100px #688500
}

.wheel:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    background-image: radial-gradient(rgba(70, 0, 0, 0) 64%, rgba(81, 0, 0, .51) 76%);
    pointer-events: none
}

.wheel__sector {
    position: absolute;
    transform-origin: center bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    margin-left: -50%;
    left: 50%;
    top: 0%
}

.wheel__sector:nth-of-type(1) {
    transform: rotate(36deg)
}

.wheel__sector:nth-of-type(2) {
    transform: rotate(72deg)
}

.wheel__sector:nth-of-type(3) {
    transform: rotate(108deg)
}

.wheel__sector:nth-of-type(4) {
    transform: rotate(144deg)
}

.wheel__sector:nth-of-type(5) {
    transform: rotate(180deg)
}

.wheel__sector:nth-of-type(6) {
    transform: rotate(216deg)
}

.wheel__sector:nth-of-type(7) {
    transform: rotate(252deg)
}

.wheel__sector:nth-of-type(8) {
    transform: rotate(288deg)
}

.wheel__sector:nth-of-type(9) {
    transform: rotate(324deg)
}

.wheel__sector:nth-of-type(10) {
    transform: rotate(360deg)
}

@media (max-width: 1400px) {
    .wheel {
        width: 660px;
        height: 660px
    }
}

@media (max-width: 1200px) {
    .wheel {
        width: 620px;
        height: 620px
    }
}

@media (max-width: 980px) {
    .wheel {
        width: 580px;
        height: 580px
    }
}

@media (max-width: 760px) {
    .wheel {
        width: 620px;
        height: 620px
    }
}

.wheel-sector__bg {
            position: absolute;
            transform-origin: 100% 100%;
            background-color: #202900;
            background-image: linear-gradient(150deg, 
                rgba(32, 41, 0, 0.95), 
                rgba(52, 66, 0, 0.85)
            );
            box-shadow: inset 0 0 30px rgba(104, 133, 0, 0.3);
            width: 410px;
            height: 410px;
            left: 50%;
            top: 100%;
            margin-top: -410px;
            margin-left: -410px;
        }

.wheel-sector__bg:after,
.wheel-sector__bg:before {
    content: "";
    display: block;
    position: absolute;
    top: 38%;
    bottom: 0;
    width: 3px;
    background-image: linear-gradient(var(--operator-main-color-hex) 0%, var(--operator-main-color-hex) 14.06%, var(--operator-main-color-hex) 29.17%, var(--operator-main-color-hex) 100%);
    z-index: -1
}

.wheel-sector__bg:after {
    left: 0
}

.wheel-sector__bg:before {
    right: 0
}

.wheel__sector:nth-child(2n) .wheel-sector__bg {
            background-color: #f8d87f;
            background-image: linear-gradient(150deg, 
                rgba(248, 216, 127, 0.95), 
                rgba(248, 216, 127, 0.85)
            );
            box-shadow: inset 0 0 30px rgba(248, 216, 127, 0.3);
        }

.wheel-sector__bg:nth-of-type(1) {
    transform: rotate(72deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(2) {
    transform: rotate(108deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(3) {
    transform: rotate(144deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(4) {
    transform: rotate(180deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(5) {
    transform: rotate(216deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(6) {
    transform: rotate(252deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(7) {
    transform: rotate(288deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(8) {
    transform: rotate(324deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(9) {
    transform: rotate(360deg) skew(54deg)
}

.wheel-sector__bg:nth-of-type(10) {
    transform: rotate(396deg) skew(54deg)
}

.wheel-sector__body {
    display: flex;
    justify-content: center;
    align-items: center
}

.wheel-sector__pin {
    display: block;
    position: absolute;
    top: 20px;
    left: 50%;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8d87f;
    background-image: url(../img/wheel-pin.png);
    background-size: cover;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    .wheel-sector__pin {
        top: 15px;
        width: 12px;
        height: 12px
    }
}

.wheel-sector-body {
    position: absolute;
    z-index: 1;
    transform: rotate(90deg);
    text-transform: uppercase;
    text-align: center;
    padding-right: 90px;
    font-weight: 700;
    line-height: 1
}

.wheel__sector:nth-child(1n) .wheel-sector-body {
            color: #FFFFFF;
        }

.wheel__sector:nth-child(2n) .wheel-sector-body {
            color: #000000;
        }

.wheel-sector-body__amount,
.wheel-sector-body__text {
    display: block;
    max-width: 210px;
    text-shadow: 2px -2px 0 rgba(248, 216, 127, 0.1);
    font-family: 'Arial', serif;
    letter-spacing: 1px
}

.wheel-sector-body__amount {
    font-size: 48px
}

.wheel-sector-body__text {
    font-size: 24px
}

.wheel-sector--highlight .wheel-sector-body__amount,
        .wheel-sector--highlight .wheel-sector-body__text {
            color: #FFFFFF;
            text-shadow: 0 0 10px rgba(248, 216, 127, 0.8),
                         0 0 20px rgba(248, 216, 127, 0.4);
            animation: glowPulse 1.5s infinite alternate;
        }

@media (max-width: 1400px) {
    .wheel-sector-body {
        padding-right: 75px
    }

    .wheel-sector-body__amount {
        font-size: 38px
    }

    .wheel-sector-body__text {
        font-size: 20px
    }
}

.wheel-clicker {
    display: block;
    background-repeat: no-repeat;
    background-image: url(../img/wheel-clicker.png);
    background-size: 71px 49px;
    width: 71px;
    height: 49px;
    transform-origin: 24% 45%;
    transition: .1s ease
}

@media (max-width: 1400px) {
    .wheel-clicker {
        width: 53.25px;
        height: 36.75px;
        background-size: 53.25px 36.75px
    }
}

.screengame {
    display: inline-block;
    max-height: 0;
    transition: .7s ease;
    overflow: hidden
}

.screengame__inner {
    visibility: hidden
}

.screengame--show .screengame__inner {
    visibility: visible;
    animation-name: zoomInLeft;
    animation-duration: 1s
}

.win-monitor {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 30px 0;
    align-items: start
}

.win-item {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center
}

.win-item__amount {
    font-size: 46px;
    line-height: .85;
    color: var(--operator-main-color)
}

.win-item__amount--big {
    font-size: 130px
}

.win-item__text {
    font-size: 30px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 0 10px
}

.win-item__amount,
.win-item__text {
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--operator-main-light-color);
    font-family: 'Arial', serif;
    letter-spacing: 1px
}

.win-item--independent {
    margin-bottom: 5px
}

.win-item--independent .win-item__text {
    margin: 0
}

.win-item--extra .win-item__amount {
    font-size: 46px
}

.win-item--extra .win-item__text {
    line-height: 1.2;
    font-size: 18px;
    margin: 0 -10px 0 6px
}

.win-item__accent {
    color: #FFFFFF
}

.win-item--extra {
    height: 90px;
    position: relative;
    margin: 5px 60px 50px 20px;
    padding-left: 20px;
    background-repeat: repeat-x;
    background-image: url(../img/win-item-body.svg)
}

.win-item--extra:after,
.win-item--extra:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    background-repeat: no-repeat
}

.win-item--extra:before {
    left: -5px;
    width: 5px;
    background-image: url(../img/win-item-before.svg)
}

.win-item--extra:after {
    right: -60px;
    width: 60px;
    background-image: url(../img/win-item-after.svg)
}

.win-item--first {
    margin-left: 5px;
    padding-left: 0
}

@media (max-width: 1400px) {
    .win-item__amount {
        font-size: 46px
    }

    .win-item__amount--big {
        font-size: 120px
    }

    .win-item__text {
        font-size: 24px
    }
}

@media (max-width: 1200px) {
    .win-item {
        margin-bottom: 25px
    }

    .win-item__amount {
        font-size: 46px
    }

    .win-item__amount--big {
        font-size: 106px
    }

    .win-item__text {
        font-size: 20px;
        margin-left: 7px
    }

    .win-item--independent {
        margin-bottom: 5px
    }

    .win-item--extra .win-item__amount {
        font-size: 38px
    }

    .win-item--extra .win-item__text {
        font-size: 14px;
        margin-left: 4px;
        margin-right: -5px
    }

    .win-item--extra {
        height: 70px;
        margin: 5px 45px 50px 20px;
        background-size: 1px 68px;
        padding-left: 15px
    }

    .win-item--extra:before {
        background-size: 100px 68px
    }

    .win-item--extra:after {
        right: -45px;
        width: 45px;
        background-size: 45px 68px
    }

    .win-item--first {
        margin-left: 0;
        padding-left: 0
    }
}

@media (max-width: 760px) {
    .win-item {
        margin-bottom: 15px
    }

    .win-item--extra {
        margin-bottom: 22px
    }
}

@media (max-width: 460px) {
    .win-item__amount {
        font-size: 48px
    }

    .win-item__amount--big {
        font-size: 84px
    }

    .win-item__text {
        font-size: 14px;
        line-height: 1.5;
        margin-left: 5px
    }

    .win-item--independent {
        margin-bottom: 4px
    }
}

@media (max-width: 375px) {
    .win-item--extra .win-item__amount {
        font-size: 34px
    }

    .win-item--extra .win-item__text {
        font-size: 12px;
        margin-left: 4px;
        margin-right: -5px
    }

    .win-item--first {
        margin-left: 0;
        padding-left: 0
    }
}

.win-controls {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px
}

.win-controls__item {
    position: relative;
    list-style: none;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: .4s ease
}

.win-controls__item--hide {
    opacity: 0;
    transform: translate(-110%);
    z-index: -1
}

@media (max-width: 460px) {
    .win-controls {
        margin-top: 20px;
        margin-bottom: 0
    }

    .win-controls__item--hide {
        margin-top: -50px
    }
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    opacity: .4;
    max-width: 440px
}

.payment-list__item {
    padding: 2px 4px;
    width: calc(100% / 6);
    list-style: none
}

.payment-item {
    display: block;
    width: 100%;
    height: auto
}

.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: linear-gradient(to bottom, #202900, #344200);
    padding: 20px;
    font-family: 'Arial', serif;
}

.copyright {
    color: #FFFFFF;
    font-family: 'Arial', serif;
}

/*** NOTIFICATION ***/

.simple-notification {
    border-radius: 7px !important
}

.simple-notification:hover {
    opacity: .7 !important
}

.simple-notification.has-icon .sn-content, .simple-notification.has-icon .sn-html, .simple-notification.has-icon .sn-title {
    padding: 7.5px 50px 0 0 !important;
    width: 375px;
    font-family: 'Arial', serif;
}

.simple-notification .icon {
    width: 50px !important
}

.simple-notification-wrapper {
    z-index: 10000 !important;
    width: 400px !important
}

.simple-notification.success {
    background: #f8d87f !important
}

.simple-notification.success .sn-progress-loader span {
    background: #e6c65e !important
}

.simple-notification .sn-progress-loader {
    padding-left: 2px !important
}

.bottom-notification {
    bottom: 35px;
    position: fixed !important;
    max-width: 500px;
    right: 15px
}

@media (max-width: 760px) {
    .simple-notification-wrapper {
        max-width: 100%;
        width: 100% !important;
        display: flex;
        right: 0 !important;
        align-items: center;
        justify-content: center
    }

    .simple-notification .sn-title, .simple-notification .sn-content {
        max-width: 250px
    }
}


.simple-notification-wrapper {
    position: fixed;
    width: 300px;
    z-index: 1000
}

.simple-notification-wrapper.left {
    left: 20px
}

.simple-notification-wrapper.top {
    top: 20px
}

.simple-notification-wrapper.right {
    right: 20px
}

.simple-notification-wrapper.bottom {
    bottom: 20px
}

.simple-notification-wrapper.center {
    left: 50%;
    transform: translateX(-50%)
}

.simple-notification-wrapper.middle {
    top: 50%;
    transform: translateY(-50%)
}

.simple-notification-wrapper.middle.center {
    transform: translate(-50%, -50%)
}

@media (max-width: 340px) {
    .simple-notification-wrapper {
        width: auto;
        left: 20px;
        right: 20px
    }
}


.simple-notification {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-bottom: 10px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .5s;
    min-height: 70px
}

.simple-notification .sn-content,
.simple-notification .sn-html,
.simple-notification .sn-title {
    margin: 0
}

.simple-notification .sn-title {
    line-height: 30px;
    font-size: 20px
}

.simple-notification .sn-content {
    font-size: 16px;
    line-height: 20px
}

.simple-notification.has-icon .sn-content,
.simple-notification.has-icon .sn-html,
.simple-notification.has-icon .sn-title {
    padding: 0 50px 0 0
}

.simple-notification .icon {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    padding: 10px
}

.simple-notification .icon.icon-hover:hover {
    opacity: .5
}

.simple-notification .icon svg {
    fill: #FFFFFF;
    width: 100%;
    height: 100%
}

.simple-notification .icon svg g {
    fill: #FFFFFF
}

.simple-notification.rtl-mode.has-icon .sn-content,
.simple-notification.rtl-mode.has-icon .sn-html,
.simple-notification.rtl-mode.has-icon .sn-title {
    padding: 0 0 0 50px
}

.simple-notification.rtl-mode {
    direction: rtl
}

.simple-notification.rtl-mode .sn-content {
    padding: 0 0 0 50px
}

.simple-notification.rtl-mode svg {
    left: 0;
    right: auto
}

.simple-notification.error {
    background: #f8d87f
}

.simple-notification.success {
    background: #f8d87f
}

.simple-notification.alert {
    background: #f8d87f
}

.simple-notification.info {
    background: #688500
}

.simple-notification.warn {
    background: #f8d87f
}

.simple-notification .sn-progress-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px
}

.simple-notification .sn-progress-loader span {
    float: left;
    height: 100%
}

.simple-notification.success .sn-progress-loader span {
    background: #e6c65e
}

.simple-notification.error .sn-progress-loader span {
    background: #c21c28
}

.simple-notification.alert .sn-progress-loader span {
    background: #e6c65e
}

.simple-notification.info .sn-progress-loader span {
    background: #344200
}

.simple-notification.warn .sn-progress-loader span {
    background: #e6c65e
}

.simple-notification.bare .sn-progress-loader span {
    background: #688500
}

.simple-notification.warn div .sn-content,
.simple-notification.warn div .sn-html,
.simple-notification.warn div .sn-title {
    color: #000000
}

@media(max-width: 375px) {
    ul#wheel-area,
    ul#wheel-area li,
    ul#wheel-area button {
        width: 100% !important;
    }
    ul#wheel-area input {
        width: 100% !important;
    }
}

.title-main {
    font-size: 32px;
    letter-spacing: 2px;
    color: #f8d87f;
    text-shadow: 0 0 10px rgba(248, 216, 127, 0.5);
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Arial', serif;
}

.title-sub {
    font-size: 42px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
    font-family: 'Arial', serif;
    margin-top: 10px;
}
@keyframes glowPulse {
            from {
                text-shadow: 0 0 10px rgba(248, 216, 127, 0.8),
                             0 0 20px rgba(248, 216, 127, 0.4);
            }
            to {
                text-shadow: 0 0 15px rgba(248, 216, 127, 0.9),
                             0 0 30px rgba(248, 216, 127, 0.6);
            }
        }