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

html {
    scroll-behavior: smooth;
    background: #212123
}

body {
    font-family: 'Inter', Roboto, sans-serif;
    background: #212123;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

a {
    color: #DC503F;
    text-decoration: none
}

a:hover {
    color: #e8705f
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

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

.x7k2p {
    display: none
}

.qr9ms {
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute
}

.zt4nx {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    left: -9999px
}

.site-header {
    background: #181818;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo img {
    height: 40px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap
}

.header-nav a {
    color: #c8c8c8;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.header-nav a:hover {
    background: #252525;
    color: #fff
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.header-online {
    font-size: 11px;
    color: #6fcf97;
    background: rgba(111, 207, 151, .1);
    border: 1px solid rgba(111, 207, 151, .2);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap
}

.header-online::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #6fcf97;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e8e8e8;
    border-radius: 2px;
    transition: all .3s
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.burger.active span:nth-child(2) {
    opacity: 0
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* =======  ======= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2
}

.btn--login {
    background: #181818;
    color: #e8e8e8;
    border: 1px solid #333
}

.btn--login:hover {
    background: #252525;
    color: #fff
}

.btn--signup {
    background: #DC503F;
    color: #fff;
    border: 1px solid #DC503F
}

.btn--signup:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 80, 63, .4)
}

.btn--bonus {
    background: #DC503F;
    color: #fff;
    font-size: 13px;
    border: 1px solid #DC503F
}

.btn--bonus:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px
}

.btn--xl {
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 12px
}

.btn--full {
    width: 100%
}

/* =======  ======= */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #181818
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/1go-banner.jpg') center/cover no-repeat;
    opacity: .35
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 24, 24, .95) 0%, rgba(33, 33, 35, .7) 60%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px
}

.hero-content h1 {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.hero-content p {
    font-size: clamp(14px, 2vw, 17px);
    color: #c8c8c8;
    margin-bottom: 28px;
    line-height: 1.6
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-badge {
    background: rgba(220, 80, 63, .15);
    border: 1px solid rgba(220, 80, 63, .3);
    color: #e8e8e8;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px
}

.section {
    padding: 56px 0
}

.section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.section-subtitle {
    color: #a0a0a0;
    margin-bottom: 32px;
    font-size: 15px
}

.casino-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1c
}

.casino-table th {
    background: #181818;
    color: #DC503F;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid #2a2a2a
}

.casino-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid #242426;
    vertical-align: top
}

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

.casino-table tr:hover td {
    background: #1e1e20
}

.casino-table td:first-child {
    color: #a0a0a0;
    font-weight: 500;
    width: 40%
}

.casino-table td:last-child {
    color: #e8e8e8
}

.jackpot-block {
    background: linear-gradient(135deg, #1a1215 0%, #1e1015 100%);
    border: 1px solid rgba(220, 80, 63, .25);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(220, 80, 63, .12) 0%, transparent 70%);
    pointer-events: none
}

.jackpot-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #DC503F;
    margin-bottom: 12px;
    font-weight: 700
}

.jackpot-amount {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 40px rgba(220, 80, 63, .5);
    letter-spacing: -1px;
    line-height: 1
}

.jackpot-currency {
    font-size: 24px;
    vertical-align: super;
    color: #DC503F
}

.jackpot-sub {
    color: #a0a0a0;
    font-size: 13px;
    margin-top: 8px
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1c
}

.winners-table th {
    background: #181818;
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #242426
}

.winners-table td {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #1e1e20
}

.winners-table tr:hover td {
    background: #1e1e20
}

.winners-table .rank {
    font-weight: 700;
    color: #DC503F;
    width: 40px
}

.winners-table .nick {
    color: #e8e8e8;
    font-weight: 500
}

.winners-table .amount {
    color: #6fcf97;
    font-weight: 700;
    text-align: right
}

.winners-table .game {
    color: #808080;
    font-size: 13px
}

.winners-top td {
    background: rgba(220, 80, 63, .06)
}

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

.bonus-card {
    flex: 1;
    min-width: 260px;
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.bonus-card-head {
    background: linear-gradient(135deg, #1e0e0e, #2a1212);
    padding: 24px 20px;
    border-bottom: 1px solid #2a2a2a;
    position: relative
}

.bonus-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block
}

.bonus-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.bonus-card-amount {
    font-size: 28px;
    font-weight: 900;
    color: #DC503F;
    line-height: 1
}

.bonus-card-body {
    padding: 18px 20px;
    flex: 1
}

.bonus-card-body p {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.6
}

.bonus-card-footer {
    padding: 16px 20px;
    border-top: 1px solid #2a2a2a
}

.wheel-section {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.wheel-canvas-wrap {
    position: relative;
    display: inline-block
}

canvas#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px #242426, 0 0 0 10px #DC503F, 0 4px 32px rgba(220, 80, 63, .4)
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid #DC503F;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.wheel-result {
    display: none;
    background: rgba(111, 207, 151, .1);
    border: 1px solid rgba(111, 207, 151, .3);
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 8px
}

.wheel-result.show {
    display: block;
    animation: fadeIn .4s ease
}

.wheel-result-win {
    font-size: 18px;
    font-weight: 700;
    color: #6fcf97
}

.wheel-result-lose {
    font-size: 18px;
    font-weight: 700;
    color: #e07070
}

/*  */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #e8e8e8;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .2s
}

.faq-question:hover {
    background: #1e1e20
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #DC503F;
    transition: transform .3s
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 20px 18px
}

.faq-answer p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.7
}

/*  */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a0a0a, #1e1010);
    border-top: 2px solid #DC503F;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(220, 80, 63, .3)
}

.widget-text {
    flex: 1
}

.widget-text strong {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 1.2
}

.widget-text span {
    color: #DC503F;
    font-size: 13px;
    font-weight: 700
}

.widget-close {
    background: none;
    border: none;
    color: #808080;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    flex-shrink: 0;
    line-height: 1
}

.widget-close:hover {
    color: #fff
}

.promo-block {
    background: linear-gradient(135deg, #1a1010, #1e1212);
    border: 2px dashed rgba(220, 80, 63, .4);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center
}

.promo-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0a0a0;
    margin-bottom: 12px
}

.promo-code {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    color: #DC503F;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(220, 80, 63, .4)
}

.promo-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DC503F;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s
}

.promo-copy:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 80, 63, .4)
}

.promo-copied {
    background: #6fcf97 !important
}

.mirror-block {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden
}

.mirror-timestamp {
    background: #181818;
    padding: 12px 18px;
    font-size: 13px;
    color: #6fcf97;
    border-bottom: 1px solid #242426
}

.mirror-table {
    width: 100%;
    border-collapse: collapse
}

.mirror-table th {
    background: #181818;
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #242426
}

.mirror-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #1e1e20;
    font-size: 14px
}

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

.mirror-table tr:hover td {
    background: #1e1e20
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6fcf97
}

.mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6fcf97;
    display: inline-block
}

/*   */
.download-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 22px;
    transition: all .2s;
    min-width: 180px
}

.dl-btn:hover {
    background: #1e1e20;
    border-color: #DC503F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

.dl-btn-icon {
    font-size: 28px;
    flex-shrink: 0
}

.dl-btn-label {
    display: flex;
    flex-direction: column
}

.dl-btn-label small {
    font-size: 10px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: .5px
}

.dl-btn-label strong {
    font-size: 15px;
    color: #fff;
    font-weight: 700
}

.slots-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px
}

.slot-card {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all .25s;
    position: relative;
}

.slot-card:hover {
    border-color: #DC503F;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5)
}

.slot-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #252525;
    display: block
}

.slot-card-info {
    padding: 12px 14px
}

.slot-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 4px
}

.slot-card-provider {
    font-size: 11px;
    color: #808080
}

.slot-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: opacity .25s
}

.slot-card:hover .slot-card-play {
    opacity: 1
}

.slot-play-btn {
    background: #DC503F;
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px
}

.modal-overlay.open {
    display: flex;
    animation: fadeIn .25s ease
}

.modal-box {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #242426;
    background: #181818
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.modal-close {
    background: none;
    border: none;
    color: #808080;
    font-size: 24px;
    cursor: pointer;
    line-height: 1
}

.modal-close:hover {
    color: #fff
}

.modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.modal-frame {
    width: 100%;
    flex: 1;
    border: none;
    min-height: 500px
}

.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid #242426;
    display: flex;
    justify-content: flex-end
}

.features-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px
}

.feature-item {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: all .25s
}

.feature-item:hover {
    border-color: #DC503F;
    transform: translateY(-3px)
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block
}

.feature-name {
    font-size: 13px;
    font-weight: 700;
    color: #e8e8e8
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.provider-badge {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #c8c8c8;
    transition: all .2s
}

.provider-badge:hover {
    border-color: #DC503F;
    color: #fff
}


.reg-ways {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px
}

.reg-way {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    transition: all .25s
}

.reg-way:hover {
    border-color: #DC503F;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.reg-way-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block
}

.reg-way-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.reg-way-desc {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5
}

.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px
}

.advantage-card {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .25s
}

.advantage-card:hover {
    border-color: #DC503F
}

.advantage-icon {
    font-size: 28px;
    flex-shrink: 0
}

.advantage-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.advantage-desc {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5
}

.bonus-get {
    background: linear-gradient(135deg, #1e0e08, #1a0a0a);
    border: 1px solid rgba(220, 80, 63, .3);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center
}

.bonus-get h3 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.bonus-get p {
    color: #a0a0a0;
    margin-bottom: 24px;
    font-size: 15px
}

.bonus-amount {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 900;
    color: #DC503F;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(220, 80, 63, .4)
}

.alts-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.alt-item {
    background: #1a1a1c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all .2s
}

.alt-item:hover {
    border-color: #404040
}

.alt-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.alt-desc {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 4px
}

.alt-rating {
    color: #f5a623;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px
}

.site-footer {
    background: #181818;
    border-top: 1px solid #2a2a2a;
    padding: 48px 0 24px;
    margin-top: auto
}

.footer-top {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px
}

.footer-logo img {
    height: 36px;
    margin-bottom: 16px
}

.footer-desc {
    font-size: 13px;
    color: #808080;
    line-height: 1.6
}

.footer-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #606060;
    margin-bottom: 14px
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-nav-links a {
    font-size: 13px;
    color: #808080;
    transition: color .2s
}

.footer-nav-links a:hover {
    color: #DC503F
}

.footer-payments {
    margin-bottom: 28px
}

.footer-payments-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #606060;
    margin-bottom: 12px
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.payment-logo {
    background: #252525;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #c0c0c0
}

.footer-providers {
    margin-bottom: 28px
}

.footer-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 24px 0
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.footer-legal-links a {
    font-size: 12px;
    color: #606060;
    transition: color .2s
}

.footer-legal-links a:hover {
    color: #a0a0a0
}

.footer-copyright {
    font-size: 12px;
    color: #606060
}

.footer-disclaimer {
    font-size: 11px;
    color: #505050;
    margin-top: 16px;
    line-height: 1.6;
    padding: 14px;
    background: #141416;
    border-radius: 8px;
    border: 1px solid #1e1e20
}

.age-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #505050;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #505050;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0
}

.content-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    line-height: 1.3
}

.content-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 22px 0 10px;
    line-height: 1.3
}

.content-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 18px 0 8px
}

.content-text p {
    color: #c0c0c0;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px
}

.content-text ul, .content-text ol {
    color: #c0c0c0;
    margin: 12px 0 16px 24px;
    line-height: 1.8
}

.content-text li {
    margin-bottom: 6px;
    font-size: 15px
}

.content-text strong {
    color: #e8e8e8;
    font-weight: 700
}

.content-text em {
    color: #DC503F;
    font-style: normal
}

.content-text a {
    color: #DC503F;
    text-decoration: underline
}

.content-text a:hover {
    color: #e8705f
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden
}

.content-text table th {
    background: #181818;
    color: #DC503F;
    padding: 12px 14px;
    text-align: left;
    font-size: 13px;
    border-bottom: 2px solid #2a2a2a
}

.content-text table td {
    padding: 10px 14px;
    border-bottom: 1px solid #242426;
    font-size: 14px
}

.content-text table tr:hover td {
    background: #1e1e20
}

.content-text blockquote {
    border-left: 3px solid #DC503F;
    padding: 14px 18px;
    margin: 16px 0;
    background: #1a1a1c;
    border-radius: 0 8px 8px 0;
    color: #a0a0a0;
    font-style: italic
}

.content-text hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 24px 0
}

/*  */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 13px;
    color: #606060
}

.breadcrumbs a {
    color: #808080;
    transition: color .2s
}

.breadcrumbs a:hover {
    color: #DC503F
}

.breadcrumbs span {
    color: #505050
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700
}

.badge-green {
    background: rgba(111, 207, 151, .15);
    color: #6fcf97;
    border: 1px solid rgba(111, 207, 151, .2)
}

.badge-red {
    background: rgba(220, 80, 63, .15);
    color: #DC503F;
    border: 1px solid rgba(220, 80, 63, .2)
}

.divider {
    width: 48px;
    height: 3px;
    background: #DC503F;
    border-radius: 2px;
    margin: 10px 0 24px
}

/*  */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes countUp {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.animate-fadeIn {
    animation: fadeIn .5s ease forwards
}

.animate-fadeInUp {
    animation: fadeInUp .6s ease forwards
}

@media (max-width: 900px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #181818;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right .3s;
        box-shadow: -8px 0 32px rgba(0, 0, 0, .5);
        z-index: 1000;
        overflow-y: auto
    }

    .header-nav.active {
        right: 0
    }

    .header-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 8px
    }

    .burger {
        display: flex
    }

    .footer-top {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns:1fr
    }

    .bonus-cards {
        flex-direction: column
    }

    .header-cta .btn--login {
        display: none
    }

    .hero-content {
        padding: 40px 0
    }

    .section {
        padding: 36px 0
    }

    .bottom-widget {
        flex-wrap: wrap
    }

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

.wp-block-group {
}

.elementor-widget-wrap {
}

.entry-content {
}

.post-thumbnail {
}

.site-content {
}

.wp-content {
}

.elementor-section {
}

.elementor-column {
}

.elementor-container {
}

.u9k3x {
    background: transparent
}

.m4j8r {
    color: inherit
}

.p2t6w {
    display: flex
}

.b5h1n {
    position: relative
}

.c7d9f:hover {
    opacity: .9
}

.r3k5z {
    transition: all .3s
}

.q8m2p {
    font-weight: normal
}

.n6x4v {
    border: none
}

.wp-includes-placeholder {
    display: none
}

.yoast-seo-meta {
}

.elementor-editor-active {
}

.wp-block-columns {
}

.vsdkdi {
    max-width: 1000px;
    margin: 40px auto;
    padding: 32px;
    background: #16181d;
    border: 1px solid #2a2f38;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.vsdkdi h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.vsdkdi h2 {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.3;
    margin: 40px 0 18px;
    color: #fff;
}

.vsdkdi h3 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
    margin: 28px 0 14px;
    color: #fff;
}

.vsdkdi p {
    font-size: 16px;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 18px;
}

.vsdkdi ul,
.vsdkdi ol {
    margin: 20px 0;
    padding-left: 22px;
}

.vsdkdi li {
    margin-bottom: 10px;
    color: #c9d1d9;
    line-height: 1.7;
}

.vsdkdi a {
    color: #4ea1ff;
    text-decoration: underline;
    overflow-wrap: break-word;
    word-break: break-word;
}

.vsdkdi table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #2a2f38;
}

.vsdkdi table tbody,
.vsdkdi table thead {
    width: 100%;
}

.vsdkdi th {
    background: #1f2430;
    color: #fff;
    padding: 14px 16px;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
}

.vsdkdi td {
    padding: 14px 16px;
    color: #c9d1d9;
    border-top: 1px solid #2a2f38;
}

.vsdkdi blockquote {
    margin: 24px 0;
    padding: 20px;
    border-left: 4px solid #4ea1ff;
    background: rgba(78, 161, 255, .08);
    border-radius: 12px;
}

.vsdkdi img {
    border-radius: 14px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .vsdkdi {
        margin: 20px 12px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .vsdkdi h1 {
        font-size: 28px;
    }

    .vsdkdi h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .vsdkdi h3 {
        font-size: 18px;
        margin: 22px 0 12px;
    }

    .vsdkdi p,
    .vsdkdi li {
        font-size: 15px;
        line-height: 1.75;
    }

    .vsdkdi table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vsdkdi th,
    .vsdkdi td {
        min-width: 160px;
        font-size: 13px;
        padding: 12px;
    }

    .vsdkdi a {
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .vsdkdi {
        margin: 16px 8px;
        padding: 16px 14px;
    }

    .vsdkdi h1 {
        font-size: 24px;
    }

    .vsdkdi h2 {
        font-size: 20px;
    }

    .vsdkdi h3 {
        font-size: 17px;
    }

    .vsdkdi p,
    .vsdkdi li {
        font-size: 14px;
    }

    .vsdkdi ul,
    .vsdkdi ol {
        padding-left: 18px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 36px 0;
    }

    .section[style] {
        padding-top: 28px !important;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .divider {
        margin-bottom: 20px;
    }

    .mirror-block {
        border-radius: 14px;
        overflow: hidden;
    }

    .mirror-timestamp {
        padding: 12px 14px;
        font-size: 13px;
        line-height: 1.4;
    }

    .mirror-block > div[style*="overflow-x"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .mirror-table {
        min-width: 620px;
    }

    .mirror-table th,
    .mirror-table td {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .mirror-table a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .bonus-cards {
        overflow: visible !important;
    }

    .bonus-cards .slider-track {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
    }

    .bonus-cards .bonus-card,
    .bonus-cards .slider-item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .bonus-card {
        border-radius: 14px;
    }

    .bonus-card-head {
        padding: 20px 16px;
    }

    .bonus-card-icon {
        font-size: 30px;
    }

    .bonus-card-title {
        font-size: 16px;
    }

    .bonus-card-amount {
        font-size: 24px;
    }

    .bonus-card-body {
        padding: 16px;
    }

    .bonus-card-body p {
        font-size: 14px;
    }

    .bonus-card-footer {
        padding: 14px 16px 16px;
    }

    .bonus-cards .slider-prev,
    .bonus-cards .slider-next {
        display: none !important;
    }

    .section[style*="text-align:center"] p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .section[style*="text-align:center"] .btn {
        width: 100%;
        max-width: 320px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 15px 14px;
        font-size: 14px;
        line-height: 1.4;
        align-items: flex-start;
    }

    .faq-answer.open {
        padding: 0 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }
}

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

    .mirror-table {
        min-width: 560px;
    }

    .bonus-card-amount {
        font-size: 21px;
    }

    .btn--lg {
        padding: 13px 18px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 36px 0;
    }

    .section[style] {
        padding-top: 28px !important;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .divider {
        margin-bottom: 20px;
    }

    .bonus-get {
        padding: 26px 16px;
        border-radius: 16px;
    }

    .bonus-get h3 {
        font-size: 24px;
        line-height: 1.25;
    }

    .bonus-get p {
        font-size: 14px;
        line-height: 1.6;
    }

    .bonus-get .bonus-amount {
        font-size: 34px;
        line-height: 1.1;
        word-break: break-word;
    }

    .bonus-get .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .bonus-cards {
        overflow: visible !important;
    }

    .bonus-cards .slider-track {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
    }

    .bonus-cards .bonus-card,
    .bonus-cards .slider-item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .bonus-card {
        border-radius: 14px;
    }

    .bonus-card-head {
        padding: 20px 16px;
    }

    .bonus-card-icon {
        font-size: 30px;
    }

    .bonus-card-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .bonus-card-amount {
        font-size: 24px;
        line-height: 1.15;
        word-break: break-word;
    }

    .bonus-card-body {
        padding: 16px;
    }

    .bonus-card-body p {
        font-size: 14px;
        line-height: 1.6;
    }

    .bonus-card-footer {
        padding: 14px 16px 16px;
    }

    .bonus-cards .slider-prev,
    .bonus-cards .slider-next {
        display: none !important;
    }

    .promo-block {
        padding: 26px 16px;
        border-radius: 16px;
    }

    .promo-title {
        font-size: 12px;
        line-height: 1.4;
    }

    .promo-code {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: 2px;
        word-break: break-word;
    }

    .promo-copy {
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
        font-size: 14px;
    }

    .promo-block p {
        font-size: 13px !important;
        line-height: 1.6;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 15px 14px;
        font-size: 14px;
        line-height: 1.4;
        align-items: flex-start;
    }

    .faq-answer.open {
        padding: 0 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }
}

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

    .bonus-get h3 {
        font-size: 21px;
    }

    .bonus-get .bonus-amount,
    .promo-code {
        font-size: 26px;
    }

    .bonus-card-amount {
        font-size: 21px;
    }

    .btn--xl,
    .btn--lg {
        padding: 13px 18px;
        font-size: 15px;
    }
}