:root {
    --clr-bg: #311129;
    --clr-hdr: #6C5989;
    --clr-btn-login: #675C87;
    --clr-btn-reg: #149E3C;
    --clr-text: #f0e8f5;
    --clr-text-muted: #c9b8d8;
    --clr-card: #3e1a3a;
    --clr-card2: #451e40;
    --clr-border: #5a3f6e;
    --clr-accent: #8b6abf;
    --clr-gold: #f5c518;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1)
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--clr-gold)
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: #fff
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 1rem
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 0.8rem
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.6rem
}

p {
    margin-bottom: 1rem
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem
}

li {
    margin-bottom: 0.3rem
}

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

.wrapper {
    display: grid;
    min-height: 100vh;
    grid-template-rows:auto 1fr auto
}

.site-header {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo img {
    height: 50px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center
}

.header-nav a {
    color: #fff;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff
}

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

.online-count {
    font-size: 0.75rem;
    color: #c9e8c9;
    white-space: nowrap;
    margin-right: 4px
}

.online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s infinite
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1)
}

.btn:active {
    transform: translateY(0)
}

.btn-login {
    background: var(--clr-btn-login);
    color: #fff
}

.btn-reg {
    background: var(--clr-btn-reg);
    color: #fff
}

.btn-bonus {
    background: linear-gradient(135deg, #1cb84b, #0e7a30);
    color: #fff
}

.btn-lg {
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: var(--radius)
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition)
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hero {
    position: relative;
    overflow: hidden;
    background: #1a0820
}

.hero-slider {
    position: relative;
    min-height: 420px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: grid;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    position: relative
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5)
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    text-align: center
}

.hero-slide-inner h1 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.2rem
}

.hero-slide-inner p {
    color: #e8d8f0;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7)
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    position: relative;
    z-index: 3
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    transition: background var(--transition)
}

.slider-dot.active {
    background: #fff
}

.section {
    padding: 48px 0
}

.section-title {
    text-align: center;
    margin-bottom: 2rem
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-btn-reg));
    border-radius: 2px
}

.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.card2 {
    background: var(--clr-card2);
    border: 1px solid rgba(139, 106, 191, 0.3);
    border-radius: var(--radius);
    padding: 20px
}

.card-grid {
    display: grid;
    gap: 16px
}

.card-grid-2 {
    grid-template-columns:repeat(2, 1fr)
}

.card-grid-3 {
    grid-template-columns:repeat(3, 1fr)
}

.card-grid-4 {
    grid-template-columns:repeat(4, 1fr)
}

.jackpot-section {
    background: linear-gradient(135deg, #2a0d24 0%, #1a0d30 100%);
    padding: 40px 0
}

.jackpot-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 1.5rem
}

.jackpot-card {
    background: linear-gradient(135deg, #4a1e42, #2d1155);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 106, 191, 0.1) 0%, transparent 70%);
    pointer-events: none
}

.jackpot-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 6px
}

.jackpot-amount {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.5)
}

.jackpot-name {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 4px
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.winners-table th {
    background: var(--clr-hdr);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem
}

.winners-table tr:nth-child(even) td {
    background: rgba(108, 89, 137, 0.08)
}

.winners-table tr:hover td {
    background: rgba(139, 106, 191, 0.12)
}

.winners-table .rank {
    font-weight: 700;
    color: var(--clr-gold);
    text-align: center
}

.winners-table .amount {
    font-weight: 600;
    color: #4ade80
}

.app-info-block {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.app-table-wrap {
    overflow-x: auto
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden
}

.app-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
    text-align: left
}

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

.app-table td:first-child {
    font-weight: 600;
    color: var(--clr-text-muted);
    width: 45%;
    background: rgba(108, 89, 137, 0.15)
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition)
}

.app-dl-btn:hover {
    background: var(--clr-btn-login);
    border-color: var(--clr-accent);
    color: #fff
}

.app-dl-btn svg {
    flex-shrink: 0
}

.video-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1rem
}

.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.video-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.wheel-section {
    background: linear-gradient(135deg, #200d1e, #160a2a);
    padding: 40px 0
}

.wheel-wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: center
}

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

#lucky-wheel {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(139, 106, 191, 0.5);
    display: block
}

.wheel-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.wheel-result-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-gold)
}

.wheel-info h3 {
    margin-bottom: 0.8rem
}

.wheel-info p {
    color: var(--clr-text-muted);
    font-size: 0.95rem
}

.content-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 32px;
    margin: 16px 0
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem
}

.content-block h1:first-child, .content-block h2:first-child {
    margin-top: 0
}

.content-block p {
    color: var(--clr-text);
    line-height: 1.8
}

.content-block ul, .content-block ol {
    color: var(--clr-text);
    padding-left: 1.5rem
}

.content-block li {
    margin-bottom: 0.4rem
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    overflow-x: auto;
    display: block
}

.content-block table th {
    background: var(--clr-hdr);
    color: #fff;
    padding: 10px 14px;
    text-align: left
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    text-align: left
}

.content-block table tr:nth-child(even) td {
    background: rgba(108, 89, 137, 0.1)
}

.content-block a {
    color: var(--clr-accent)
}

.content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 8px 16px;
    margin: 1rem 0;
    background: rgba(139, 106, 191, 0.1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted)
}

.author-block {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 20px;
    align-items: start;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-accent);
    flex-shrink: 0
}

.author-info h4 {
    margin-bottom: 4px;
    font-size: 1rem
}

.author-info p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.author-socials {
    display: flex;
    gap: 8px
}

.author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    background: var(--clr-btn-login);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background var(--transition)
}

.author-socials a:hover {
    background: var(--clr-accent)
}

.site-footer {
    background: var(--clr-hdr);
    padding: 40px 0 20px;
    margin-top: auto
}

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

.footer-logo img {
    height: 44px;
    margin-bottom: 12px
}

.footer-nav h4, .footer-payments h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px
}

.footer-nav ul {
    list-style: none;
    padding: 0
}

.footer-nav ul li {
    margin-bottom: 6px
}

.footer-nav ul a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    transition: color var(--transition)
}

.footer-nav ul a:hover {
    color: #fff
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 16px;
    align-items: center
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6
}

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

.footer-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8)
}

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1e0a1b, #2d1155);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateY(0);
    transition: transform var(--transition)
}

.widget-bar.hidden {
    transform: translateY(100%)
}

.widget-bar-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600
}

.widget-bar-text span {
    color: var(--clr-gold)
}

.widget-bar a {
    text-decoration: none
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    margin-left: 8px;
    transition: color var(--transition)
}

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

.breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--clr-text-muted)
}

.breadcrumb a {
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.breadcrumb a:hover {
    color: var(--clr-accent)
}

.breadcrumb span {
    margin: 0 6px;
    opacity: 0.5
}

.toc-block {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px
}

.toc-block h3 {
    margin-bottom: 12px;
    font-size: 1rem
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4px
}

.toc-list li a {
    display: block;
    padding: 4px 0;
    color: var(--clr-accent);
    font-size: 0.88rem;
    border-bottom: 1px dashed rgba(139, 106, 191, 0.2)
}

.toc-list li a:hover {
    color: var(--clr-gold)
}

.promo-block {
    background: linear-gradient(135deg, #1cb84b10, #149E3C20);
    border: 2px solid var(--clr-btn-reg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin: 24px 0
}

.promo-code {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--clr-gold);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    display: inline-block;
    margin: 10px 0;
    cursor: pointer;
    transition: all var(--transition)
}

.promo-code:hover {
    background: rgba(245, 197, 24, 0.15);
    transform: scale(1.03)
}

.promo-copy-msg {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 4px
}

.bonus-cards {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 20px 0
}

.bonus-card {
    background: linear-gradient(135deg, var(--clr-card), var(--clr-card2));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition)
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-accent)
}

.bonus-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px
}

.bonus-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px
}

.bonus-card-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 8px
}

.bonus-card-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    text-align: left
}

.compare-table th {
    background: var(--clr-hdr);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.85rem
}

.compare-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem
}

.compare-table .highlight {
    color: var(--clr-gold);
    font-weight: 600
}

.compare-table .check {
    color: #4ade80
}

.faq-block {
    margin: 24px 0
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--clr-card2);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(108, 89, 137, 0.4)
}

.faq-question::after {
    content: '▾';
    color: var(--clr-accent);
    font-size: 1.1rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 10px
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition)
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 14px 18px
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin: 0
}

.registration-methods {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0
}

.reg-method-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition)
}

.reg-method-card:hover {
    border-color: var(--clr-btn-reg);
    transform: translateY(-3px)
}

.reg-method-icon {
    font-size: 2rem;
    margin-bottom: 10px
}

.reg-method-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px
}

.reg-method-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted)
}

.info-table-wrap {
    overflow-x: auto
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden
}

.info-table tr:nth-child(even) td:first-child {
    background: rgba(108, 89, 137, 0.2)
}

.info-table tr:nth-child(odd) td:first-child {
    background: rgba(108, 89, 137, 0.1)
}

.info-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
    text-align: left
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--clr-text-muted);
    width: 40%
}

.info-table td:last-child {
    color: #fff
}

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

.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 20px 0
}

.adv-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    border-top: 3px solid var(--clr-accent)
}

.adv-card-icon {
    font-size: 2rem;
    margin-bottom: 8px
}

.adv-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px
}

.adv-card-text {
    font-size: 0.8rem;
    color: var(--clr-text-muted)
}

.slots-features {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 20px 0
}

.slot-feat {
    background: var(--clr-card2);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.slot-feat:hover {
    border-color: var(--clr-accent);
    transform: translateY(-2px)
}

.slot-feat-icon {
    font-size: 1.8rem;
    margin-bottom: 6px
}

.slot-feat-name {
    font-size: 0.85rem;
    font-weight: 600
}

.rtp-table-wrap {
    overflow-x: auto
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.rtp-table th {
    background: var(--clr-hdr);
    padding: 11px 14px;
    text-align: left;
    font-size: 0.85rem;
    color: #fff
}

.rtp-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem;
    text-align: left
}

.rtp-table .rtp-val {
    color: var(--clr-gold);
    font-weight: 600
}

.mobile-only {
    display: none
}

.desktop-only {
    display: block
}

@media (max-width: 1024px) {
    .app-info-block {
        grid-template-columns:1fr
    }

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

    .wheel-wrap {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto 1fr
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--clr-hdr);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5)
    }

    .header-nav.active {
        display: flex
    }

    .burger {
        display: flex
    }

    .card-grid-2, .card-grid-3, .card-grid-4 {
        grid-template-columns:1fr
    }

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

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

    .footer-links {
        justify-content: center
    }

    .app-info-block {
        grid-template-columns:1fr
    }

    .wheel-wrap {
        grid-template-columns:1fr
    }

    .toc-list {
        grid-template-columns:1fr
    }

    .widget-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px
    }

    .mobile-only {
        display: block
    }

    .desktop-only {
        display: none
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 320px
    }

    .hero-slide-inner {
        padding: 40px 12px
    }

    .jackpot-amount {
        font-size: 1.5rem
    }

    .promo-code {
        font-size: 1.3rem;
        letter-spacing: 2px
    }
}

.d7x4k1 {
    display: none
}

.r9p2m3 {
    visibility: hidden
}

.q8n5v6 {
}

.wp-block-group {
}

.elementor-section {
}

.entry-content {
}

.wp-caption {
}

.size-full {
    max-width: 100%
}

.aligncenter {
    margin: auto;
    display: block
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease both
}

.fade-in-2 {
    animation: fadeInUp 0.5s 0.1s ease both
}

.fade-in-3 {
    animation: fadeInUp 0.5s 0.2s ease both
}

.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    background: #14060f;
}

.hero-slider {
    position: relative;
    min-height: 580px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .45) 40%,
            rgba(0, 0, 0, .75) 100%
    );
}

.hero-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at center,
            rgba(255, 180, 0, .12),
            transparent 60%
    );
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 80px 20px;
}

.hero-slide-inner h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .8);
}

.hero-slide-inner p {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

.hero-slide-inner .btn {
    min-width: 260px;
    min-height: 64px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: .3s;
}

.slider-dot.active {
    width: 34px;
    border-radius: 999px;
    background: var(--clr-gold);
}

@media (max-width: 768px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section {
        padding: 32px 0;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    h3 {
        font-size: 1.05rem;
    }

    p,
    li {
        font-size: .92rem;
        line-height: 1.7;
    }

    .btn {
        min-height: 46px;
    }

    .btn-lg {
        width: 100%;
        padding: 14px;
        font-size: .95rem;
    }

    .hero {
        border-radius: 0 0 18px 18px;
    }

    .hero-slider {
        min-height: 420px;
    }

    .hero-slide-inner {
        padding: 60px 18px 90px;
    }

    .hero-slide-inner h1 {
        font-size: 2rem;
    }

    .hero-slide-inner p {
        font-size: .95rem;
        margin-bottom: 22px;
    }

    .content-block {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .card,
    .card2 {
        padding: 18px;
    }

    .toc-block {
        padding: 18px;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

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

    .author-photo {
        margin: 0 auto;
    }

    .author-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bonus-cards,
    .advantages-grid,
    .registration-methods,
    .slots-features,
    .jackpot-grid {
        grid-template-columns: 1fr;
    }

    .bonus-card,
    .adv-card,
    .reg-method-card,
    .slot-feat {
        padding: 18px;
    }

    .bonus-card-amount {
        font-size: 1.3rem;
    }

    .promo-block {
        padding: 18px;
    }

    .promo-code {
        width: 100%;
        font-size: 1.2rem;
        letter-spacing: 1px;
        padding: 12px;
    }

    .app-table,
    .info-table,
    .compare-table,
    .rtp-table,
    .winners-table {
        min-width: 520px;
    }

    .wheel-section {
        padding: 28px 0;
    }

    .wheel-wrap {
        gap: 20px;
    }

    #lucky-wheel {
        width: 280px !important;
        height: 280px !important;
    }

    .wheel-result-text {
        font-size: 1rem;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 12px;
    }

    .footer-nav,
    .footer-payments {
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .widget-bar {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .widget-bar .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {

    body {
        font-size: 15px;
    }

    .section {
        padding: 26px 0;
    }

    h1 {
        font-size: 1.55rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero-slider {
        min-height: 360px;
    }

    .hero-slide-inner {
        padding: 45px 16px 75px;
    }

    .hero-slide-inner h1 {
        font-size: 1.65rem;
    }

    .hero-slide-inner p {
        font-size: .88rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 22px;
    }

    .content-block {
        padding: 18px 14px;
    }

    .card,
    .card2,
    .bonus-card,
    .adv-card,
    .reg-method-card {
        padding: 16px;
    }

    .jackpot-card {
        padding: 16px;
    }

    .jackpot-amount {
        font-size: 1.35rem;
    }

    .bonus-card-icon,
    .adv-card-icon,
    .reg-method-icon {
        font-size: 1.7rem;
    }

    #lucky-wheel {
        width: 240px !important;
        height: 240px !important;
    }

    .breadcrumb {
        font-size: .75rem;
        overflow-x: auto;
        white-space: nowrap;
    }

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

@media (max-width: 768px) {
    .app-info-block {
        display: block;
    }

    .app-table-wrap {
        width: 100%;
        overflow-x: auto;
        margin-bottom: 18px;
    }

    .app-table {
        min-width: 0;
        width: 100%;
        table-layout: fixed;
    }

    .app-table td {
        display: block;
        width: 100% !important;
        padding: 10px 12px;
        font-size: .82rem;
    }

    .app-table td:first-child {
        background: rgba(108, 89, 137, .22);
        color: var(--clr-gold);
        font-weight: 700;
        border-bottom: 0;
        padding-bottom: 4px;
    }

    .app-table td:last-child {
        padding-top: 4px;
        margin-bottom: 8px;
    }

    .app-download-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 14px;
    }

    .app-dl-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 48px;
        padding: 12px;
        font-size: .86rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .section {
        padding: 28px 0;
    }

    .card-grid,
    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .bonus-cards,
    .advantages-grid,
    .registration-methods,
    .slots-features,
    .jackpot-grid,
    .app-info-block,
    .wheel-wrap,
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .content-block,
    .card,
    .card2,
    .bonus-card,
    .adv-card,
    .reg-method-card,
    .slot-feat,
    .jackpot-card,
    .toc-block,
    .promo-block,
    .author-block {
        width: 100%;
        max-width: 100%;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .content-block * {
        max-width: 100%;
    }

    h1,
    .content-block h1 {
        font-size: 1.55rem;
        line-height: 1.22;
    }

    h2,
    .content-block h2 {
        font-size: 1.25rem;
        line-height: 1.28;
    }

    h3,
    .content-block h3 {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    p,
    li,
    .content-block p,
    .content-block li {
        font-size: .9rem;
        line-height: 1.68;
    }

    .btn,
    a.btn {
        width: 100%;
        min-height: 44px;
        white-space: normal;
        text-align: center;
    }

    .hero-slider {
        min-height: 360px;
    }

    .hero-slide-inner {
        padding: 44px 16px 76px;
    }

    .hero-slide-inner h1 {
        font-size: 1.65rem;
    }

    .hero-slide-inner p {
        font-size: .9rem;
        line-height: 1.55;
    }

    .hero-slide-inner .btn {
        min-width: 0;
        min-height: 50px;
    }

    .slider-dots {
        bottom: 16px;
    }

    .app-info-block {
        display: block;
    }

    .app-table,
    .info-table {
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .app-table tr,
    .info-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid var(--clr-border);
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, .03);
    }

    .app-table td,
    .info-table td {
        display: block;
        width: 100% !important;
        padding: 10px 12px;
        border: 0;
        font-size: .82rem;
    }

    .app-table td:first-child,
    .info-table td:first-child {
        width: 100% !important;
        background: rgba(108, 89, 137, .25);
        color: var(--clr-gold);
        font-weight: 700;
        padding-bottom: 4px;
    }

    .app-table td:last-child,
    .info-table td:last-child {
        color: #fff;
        padding-top: 4px;
    }

    .compare-table-wrap,
    .rtp-table-wrap,
    .winners-table-wrap,
    .app-table-wrap,
    .info-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table,
    .rtp-table,
    .winners-table {
        min-width: 520px;
    }

    .bonus-card-icon,
    .adv-card-icon,
    .reg-method-icon {
        font-size: 1.8rem;
    }

    .bonus-card-amount,
    .jackpot-amount {
        font-size: 1.35rem;
    }

    .promo-code {
        width: 100%;
        font-size: 1.15rem;
        letter-spacing: 1px;
        padding: 12px;
        word-break: break-word;
    }

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

    .author-photo {
        margin: 0 auto;
    }

    .author-socials,
    .footer-links,
    .footer-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo,
    .footer-nav,
    .footer-payments,
    .footer-bottom {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 12px;
    }

    .widget-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    #lucky-wheel {
        width: 240px !important;
        height: 240px !important;
    }

    img,
    iframe,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 14px;
    }

    .header-logo {
        flex-shrink: 0;
    }

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

    .header-cta {
        gap: 6px;
    }

    .header-cta .btn {
        width: auto;
        min-height: 34px;
        padding: 8px 12px;
        font-size: .75rem;
    }

    .online-count {
        display: none;
    }

    .header-nav {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        max-height: calc(100vh - 56px);
    }
}


html,
body {
    overflow-x: hidden;
}

.wrapper,
main,
.container {
    max-width: 100%;
    overflow-x: hidden;
}