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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f1e;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

h1 {
    color: #fff
}

.header {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #FFD700
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.logo img {
    height: 50px
}

.header__nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    padding: 5px 0
}

.nav-link:hover {
    color: #FFD700
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: width .3s ease
}

.nav-link:hover::after {
    width: 100%
}

.header__actions {
    display: flex;
    gap: 15px
}

h2 {
    margin-bottom: 20px
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: .5px
}

.btn--primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0f0f1e;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3)
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5)
}

.btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #FFD700
}

.btn--secondary:hover {
    background: #FFD700;
    color: #0f0f1e
}

.btn--outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700
}

.btn--outline:hover {
    background: #FFD700;
    color: #0f0f1e
}

.btn--large {
    padding: 16px 40px;
    font-size: 16px
}

.btn--small {
    padding: 8px 20px;
    font-size: 12px
}

.hero {
    background: url('../img/banner-winter.png');
    background-repeat: no-repeat;
    background-position: 48% 0;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.hero__text {
    background: #000000d4;
    box-shadow: 0 0 53px 83px #000000d4
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero__label {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0f0f1e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px
}

.hero__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff
}

.hero__description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px
}

.hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.hero__image img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: float 3s ease-in-out infinite
}

@keyframes float {

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

    50% {
        transform: translateY(-20px)
    }
}

.payment-systems {
    background: #1a1a2e;
    padding: 30px 0;
    border-top: 1px solid #2d2d44;
    border-bottom: 1px solid #2d2d44
}

.payment-systems__title {
    text-align: center;
    margin-bottom: 20px;
    color: #b8b8d1;
    font-size: 14px
}

.payment-systems__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.payment-systems__grid img {
    height: 30px;
    opacity: .7;
    transition: opacity .3s ease
}

.payment-systems__grid img:hover {
    opacity: 1
}

.main-content {
    padding: 60px 0
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.intro-section {
    margin-bottom: 60px
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8d1;
    text-align: justify
}

.games-preview {
    margin-bottom: 60px
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px
}

.game-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid #2d2d44
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.game-title {
    padding: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 14px
}

.game-card .btn {
    width: calc(100% - 30px);
    margin: 0 15px 15px
}

.text-center {
    text-align: center
}

.mt-4 {
    margin-top: 40px
}

.mt-3 {
    margin-top: 30px
}

.jackpot-section {
    margin-bottom: 60px
}

.jackpot-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.jackpot-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.jackpot-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: glow 1.5s ease-in-out infinite
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5))
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8))
    }
}

.jackpot-text {
    color: #b8b8d1;
    position: relative;
    z-index: 1
}

.characteristics {
    margin-bottom: 60px
}

.table {
    width: 100%;
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2d2d44
}

.table tr {
    border-bottom: 1px solid #2d2d44
}

.table tr:last-child {
    border-bottom: none
}

.table td {
    padding: 20px
}

.table td:first-child {
    width: 30%;
    color: #FFD700
}

.table td:last-child {
    color: #b8b8d1
}

.mirror-section {
    margin-bottom: 60px
}

.mirror-section h2,
.mirror-section h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.mirror-section p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.list {
    list-style: none;
    margin-bottom: 30px
}

.list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #b8b8d1
}

.list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 900;
    font-size: 18px
}

.info-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0
}

.info-box p {
    margin-bottom: 0
}

.registration-section {
    margin-bottom: 60px
}

.registration-section h2,
.registration-section h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.registration-section p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.numbered-list {
    list-style: none;
    counter-reset: item;
    margin-bottom: 30px
}

.numbered-list li {
    counter-increment: item;
    padding: 12px 0 12px 40px;
    position: relative;
    color: #b8b8d1
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0f0f1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px
}

.cta-box {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3)
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 25px
}

.bonuses-section {
    margin-bottom: 60px
}

.bonuses-section h2,
.bonuses-section h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.bonuses-section p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0
}

.bonus-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 1px solid #2d2d44;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700
}

.bonus-icon {
    font-size: 48px;
    margin-bottom: 20px
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff
}

.bonus-amount {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px
}

.bonus-card p {
    font-size: 14px;
    margin-bottom: 15px
}

.bonus-card ul {
    text-align: left;
    margin: 15px 0;
    list-style: none
}

.bonus-card ul li {
    padding: 5px 0;
    font-size: 13px;
    color: #b8b8d1
}

.promo-box {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 30px
}

.promo-code {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0f0f1e;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 10px 0
}

.games-catalog {
    margin-bottom: 60px
}

.games-catalog h2,
.games-catalog h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.games-catalog p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0
}

.category-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 25px;
    transition: all .3s ease
}

.category-card:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3)
}

.category-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff
}

.category-card p {
    font-size: 14px;
    margin-bottom: 0
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0
}

.providers-grid img {
    width: 100%;
    opacity: .7;
    transition: all .3s ease;
    filter: grayscale(100%)
}

.providers-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1)
}

.demo-info {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px
}

.advantages {
    margin-bottom: 60px
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px
}

.advantage-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3)
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 15px
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff
}

.advantage-card p {
    font-size: 14px;
    color: #b8b8d1;
    margin-bottom: 0
}

.payments-section {
    margin-bottom: 60px
}

.payments-section h2,
.payments-section h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.payments-section p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.mobile-app-section {
    margin-bottom: 60px
}

.mobile-app-section h2,
.mobile-app-section h3 {
    color: #FFD700;
    margin-bottom: 20px
}

.mobile-app-section p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.app-download {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap
}

.responsible-gaming {
    margin-bottom: 60px
}

.responsible-gaming h2 {
    color: #FFD700;
    margin-bottom: 20px
}

.responsible-gaming p {
    color: #b8b8d1;
    margin-bottom: 20px;
    line-height: 1.8
}

.faq-section {
    margin-bottom: 60px
}

.faq-item {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all .3s ease
}

.faq-item:hover {
    border-color: #FFD700
}

.faq-item h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px
}

.faq-item p {
    color: #b8b8d1;
    margin-bottom: 0;
    line-height: 1.8
}

.final-cta {
    margin-bottom: 60px
}

.cta-card {
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3)
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta-card p {
    font-size: 18px;
    color: #b8b8d1;
    margin-bottom: 30px
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.cta-note {
    font-size: 14px;
    color: #e94560;
    margin-bottom: 0 !important
}

.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 60px 0 30px;
    border-top: 2px solid #FFD700
}

.footer-section {
    margin-bottom: 40px
}

.footer-section h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px
}

.footer-payments,
.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center
}

.footer-payments img,
.footer-providers img {
    height: 25px;
    opacity: .6;
    transition: opacity .3s ease
}

.footer-payments img:hover,
.footer-providers img:hover {
    opacity: 1
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px
}

.footer-column h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 15px
}

.footer-column ul {
    list-style: none
}

.footer-column ul li {
    margin-bottom: 10px
}

.footer-column ul li a {
    color: #b8b8d1;
    text-decoration: none;
    transition: color .3s ease;
    font-size: 14px
}

.footer-column ul li a:hover {
    color: #FFD700
}

.footer-bottom {
    border-top: 1px solid #2d2d44;
    padding-top: 30px;
    margin-top: 30px
}

.footer-license,
.footer-age,
.footer-copyright {
    margin-bottom: 20px
}

.footer-license img,
.footer-age img {
    height: 40px;
    margin-bottom: 10px
}

.footer-license p,
.footer-age p,
.footer-copyright p {
    color: #b8b8d1;
    font-size: 13px;
    line-height: 1.6
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1e1e38 0%, #16162b 100%);
    border: 1px solid #2d2d44;
    border-radius: 50%;
    transition: all .3s ease
}

.footer-social a:hover {
    border-color: #FFD700;
    transform: translateY(-5px)
}

.footer-social img {
    width: 24px;
    height: 24px
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    border-top: 2px solid #FFD700;
    z-index: 999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5)
}

.btn--sticky {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block
}

@media (min-width:0px) and (max-width:768px) {
    .xs-d-none {
        display: none
    }

    .hero__text {
        background: #000000d4;
        box-shadow: 0 0 53px 83px #000000d4
    }
}

@media (max-width:968px) {
    .header__nav {
        display: none
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero__title {
        font-size: 36px
    }

    .hero__cta {
        justify-content: center
    }

    .hero__image {
        order: -1
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr))
    }

    .sticky-cta {
        display: block
    }

    .section-title {
        font-size: 28px
    }

    .jackpot-amount {
        font-size: 36px
    }

    .cta-card h2 {
        font-size: 28px
    }
}

@media (max-width:640px) {
    .hero__title {
        font-size: 28px
    }

    .hero__description {
        font-size: 16px
    }

    .hero__cta {
        flex-direction: column
    }

    .btn--large {
        width: 100%
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px
    }

    .bonuses-grid,
    .games-categories,
    .advantages-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column
    }

    .app-download {
        flex-direction: column
    }

    .table td {
        padding: 15px 10px;
        font-size: 14px
    }
}