:root {
    --bg: #21293A;
    --header-bg: #1E2534;
    --btn-cyan: #00E0FF;
    --btn-dark: #313532;
    --text: #E8EAF0;
    --text-muted: #9BA3B5;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: #1A2236;
    --card-bg2: #242D3E;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --glow: 0 0 16px rgba(0, 224, 255, 0.25);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh
}

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

a {
    color: var(--btn-cyan);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: #00B8D4
}

ul, ol {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text)
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem)
}

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

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem)
}

p {
    margin-bottom: 1rem
}

p:last-child {
    margin-bottom: 0
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
    text-decoration: none
}

.btn:hover {
    transform: translateY(-2px)
}

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

.btn-login {
    background: var(--btn-cyan);
    color: #0D1520
}

.btn-login:hover {
    background: #00C8E6;
    box-shadow: var(--glow);
    color: #0D1520
}

.btn-register {
    background: var(--btn-dark);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12)
}

.btn-register:hover {
    background: #3D4440;
    color: var(--text)
}

.btn-hero {
    background: var(--btn-cyan);
    color: #0D1520;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: var(--radius-sm)
}

.btn-hero:hover {
    background: #00C8E6;
    box-shadow: 0 0 28px rgba(0, 224, 255, 0.45);
    color: #0D1520
}

.btn-get {
    background: var(--btn-cyan);
    color: #0D1520;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm)
}

.btn-get:hover {
    background: #00C8E6;
    box-shadow: var(--glow);
    color: #0D1520
}

.btn-slot {
    background: transparent;
    color: var(--btn-cyan);
    border: 1px solid var(--btn-cyan);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem
}

.btn-slot:hover {
    background: var(--btn-cyan);
    color: #0D1520
}

.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border)
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    min-height: 64px
}

.logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.logo-wrap img {
    height: 44px;
    width: auto
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center
}

.nav-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition)
}

.nav-list a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05)
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2ECC71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0)
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity 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)
}

.mobile-nav {
    display: none;
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    flex-direction: column;
    gap: 6px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem
}

.mobile-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05)
}

.mobile-nav-btns {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border)
}

.mobile-nav-btns .btn {
    flex: 1;
    font-size: 0.82rem;
    padding: 9px 12px
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 21, 32, 0.88) 0%, rgba(30, 37, 52, 0.65) 100%)
}

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

.hero-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5)
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5)
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 224, 255, 0.12);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: var(--btn-cyan);
    margin-bottom: 16px
}

.breadcrumbs-wrap {
    padding: 12px 0;
    border-bottom: 1px solid var(--border)
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.82rem
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted)
}

.breadcrumbs li::after {
    content: '/';
    color: var(--border)
}

.breadcrumbs li:last-child::after {
    display: none
}

.breadcrumbs a {
    color: var(--text-muted)
}

.breadcrumbs a:hover {
    color: var(--btn-cyan)
}

.breadcrumbs li:last-child {
    color: var(--text)
}

.section {
    padding: 48px 0
}

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

.section-title h2 {
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--btn-cyan);
    margin: 10px auto 0;
    border-radius: 2px
}

.section-title p {
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 0.95rem
}

.content-block {
    padding: 40px 0
}

.review-area {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--border)
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border)
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--btn-cyan);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--card-bg2)
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0
}

.author-info a {
    color: var(--btn-cyan);
    font-size: 0.78rem
}

.review-text {
    line-height: 1.8
}

.review-text h2, .review-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--btn-cyan)
}

.review-text p {
    margin-bottom: 16px;
    color: rgba(232, 234, 240, 0.9)
}

.review-text ul, .review-text ol {
    margin: 12px 0 16px 24px;
    list-style: disc
}

.review-text ul li, .review-text ol li {
    margin-bottom: 6px;
    color: rgba(232, 234, 240, 0.85)
}

.review-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem
}

.review-text th, .review-text td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left
}

.review-text th {
    background: var(--card-bg2);
    font-weight: 600
}

.review-text a {
    color: var(--btn-cyan)
}

.review-text strong {
    color: var(--text)
}

.review-text blockquote {
    border-left: 3px solid var(--btn-cyan);
    padding: 12px 20px;
    background: rgba(0, 224, 255, 0.05);
    margin: 16px 0;
    font-style: italic;
    color: var(--text-muted)
}

.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-bottom: 0
}

.pros-card, .cons-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border)
}

.pros-card {
    border-top: 3px solid #2ECC71
}

.cons-card {
    border-top: 3px solid #E74C3C
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px
}

.card-title .icon {
    font-size: 1.2rem
}

.pros-list, .cons-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(232, 234, 240, 0.9)
}

.pros-list li::before {
    content: '✓';
    color: #2ECC71;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px
}

.cons-list li::before {
    content: '✗';
    color: #E74C3C;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px
}

.jackpots-section {
    background: linear-gradient(135deg, var(--header-bg), #1A2236)
}

.jackpots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.jackpot-card {
    background: linear-gradient(135deg, #1A2236, #242D3E);
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 224, 255, 0.18)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--btn-cyan), transparent)
}

.jackpot-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600
}

.jackpot-amount {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--btn-cyan);
    text-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
    margin-bottom: 8px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.jackpot-game {
    font-size: 0.82rem;
    color: var(--text-muted)
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 12px
}

.tournaments-section {
}

.tournaments-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.tournament-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition)
}

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

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.25);
    color: var(--btn-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start
}

.tournament-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text)
}

.tournament-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    flex: 1
}

.tournament-prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(0, 224, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 224, 255, 0.12)
}

.prize-label {
    font-size: 0.75rem;
    color: var(--text-muted)
}

.prize-amount {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    color: var(--btn-cyan);
    font-size: 1.1rem
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted)
}

.timer-val {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--text);
    background: var(--card-bg2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 32px;
    text-align: center
}

.timer-sep {
    color: var(--btn-cyan);
    font-weight: 700
}

.tournament-footer {
    margin-top: auto
}

.slots-section {
}

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

.slot-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition)
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4)
}

.slot-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1
}

.slot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.slot-card:hover .slot-img-wrap img {
    transform: scale(1.06)
}

.slot-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.slot-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text)
}

.slot-provider {
    font-size: 0.72rem;
    color: var(--text-muted)
}

.wheel-section {
    background: linear-gradient(135deg, var(--header-bg), #1A2236)
}

.wheel-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap
}

.wheel-canvas-wrap {
    position: relative;
    flex-shrink: 0
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 224, 255, 0.25), 0 0 0 4px rgba(0, 224, 255, 0.15);
    cursor: pointer
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--btn-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.7))
}

.wheel-info {
    max-width: 380px
}

.wheel-info h2 {
    margin-bottom: 12px
}

.wheel-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem
}

#spin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-cyan);
    color: #0D1520;
    padding: 14px 36px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition)
}

#spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--glow)
}

#spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed
}

#wheel-result {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: none
}

#wheel-result.win {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ECC71
}

#wheel-result.lose {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #E74C3C
}

#wheel-result .result-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px
}

#wheel-result .result-desc {
    font-size: 0.87rem;
    opacity: 0.85
}

.faq-section {
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition)
}

.faq-item.open {
    border-color: rgba(0, 224, 255, 0.3)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 12px;
    user-select: none
}

.faq-question:hover {
    color: var(--btn-cyan)
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btn-cyan);
    font-size: 1rem;
    transition: transform var(--transition), background var(--transition)
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 224, 255, 0.2)
}

.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: 0 20px 18px
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7
}

.site-footer {
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
    margin-top: auto
}

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

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

.footer-logo p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6
}

.footer-col h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 14px
}

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

.footer-links a {
    font-size: 0.87rem;
    color: var(--text-muted)
}

.footer-links a:hover {
    color: var(--btn-cyan)
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0
}

.footer-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px
}

.footer-providers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px
}

.payment-badge, .provider-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap
}

.footer-legal {
    flex: 1;
    font-size: 0.75rem;
    color: rgba(155, 163, 181, 0.7);
    line-height: 1.6
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1A2236, var(--header-bg));
    border-top: 1px solid rgba(0, 224, 255, 0.2);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.widget-text {
    font-size: 0.88rem;
    color: var(--text)
}

.widget-bonus {
    color: var(--btn-cyan);
    font-weight: 700
}

.widget-btn {
    background: var(--btn-cyan);
    color: #0D1520;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
    background: #00C8E6;
    color: #0D1520
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color var(--transition)
}

.widget-close:hover {
    color: var(--text)
}

.slider-wrap {
    position: relative;
    overflow: hidden
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 16px
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
    padding: 0
}

.slider-dot.active {
    background: var(--btn-cyan);
    transform: scale(1.2)
}

.section-sep {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0
}

.nc-r3x9a {
    display: none
}

.nc-q7k2m {
    visibility: hidden;
    position: absolute
}

.entry-content, .wp-block-group {
}

.elementor-section {
}

@media (max-width: 1024px) {
    .jackpots-grid {
        grid-template-columns:repeat(3, 1fr)
    }

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

    .footer-main {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }

    .footer-main .footer-logo {
        grid-column: 1/-1
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none
    }

    .header-actions .online-counter {
        display: none
    }

    .burger {
        display: flex
    }

    .header-actions {
        gap: 6px
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 0.78rem
    }

    .pros-cons-grid {
        grid-template-columns:1fr
    }

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

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

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

    .footer-main {
        grid-template-columns:1fr;
        gap: 24px
    }

    .wheel-wrap {
        flex-direction: column;
        gap: 28px
    }

    #wheel-canvas {
        width: 260px;
        height: 260px
    }

    .hero-content {
        padding: 40px 0
    }

    .section {
        padding: 32px 0
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px
    }

    .review-header {
        flex-wrap: wrap
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .footer-payments, .footer-providers {
        gap: 8px
    }

    .sticky-widget {
        padding: 8px 12px
    }

    .widget-text {
        font-size: 0.8rem
    }
}

.slots-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #1a2236 0%, #21293A 100%);
}

.slots-section .section-title {
    margin-bottom: 40px;
}

.slots-section .section-title h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: #fff;
    margin-bottom: 10px;
}

.slots-section .section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

#slots-slider {
    overflow: hidden;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.slot-card {
    position: relative;
    background: linear-gradient(180deg, #242D3E 0%, #1A2236 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.slot-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 224, 255, 0.45);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.slot-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111827;
}

.slot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.slot-card:hover .slot-img-wrap img {
    transform: scale(1.08);
}

.slot-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.slot-name {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    min-height: 42px;
}

.btn-slot {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    background: rgba(0, 224, 255, 0.08);
    border: 1px solid rgba(0, 224, 255, 0.35);
    color: var(--btn-cyan);
    font-size: .85rem;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-slot:hover {
    background: var(--btn-cyan);
    color: #111827;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.35);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: .25s ease;
}

.slider-dot.active {
    background: var(--btn-cyan);
    transform: scale(1.15);
}

@media (max-width: 1100px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .slots-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .slots-grid::-webkit-scrollbar {
        display: none;
    }

    .slot-card {
        min-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .slot-info {
        padding: 14px;
    }

    .slot-name {
        font-size: .9rem;
        min-height: auto;
    }

    .btn-slot {
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .slots-section .section-title {
        margin-bottom: 28px;
    }

    .slots-section .section-title h2 {
        font-size: 1.45rem;
    }

    .slots-section .section-title p {
        font-size: .9rem;
    }

    .slot-card {
        min-width: 180px;
        border-radius: 14px;
    }

    .slot-info {
        padding: 12px;
        gap: 10px;
    }

    .slot-name {
        font-size: .82rem;
    }

    .btn-slot {
        font-size: .8rem;
        min-height: 38px;
    }
}

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

    .slots-section .container {
        padding: 0 14px;
    }

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

    .slots-section .section-title h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .slots-section .section-title p {
        font-size: .92rem;
        line-height: 1.5;
    }

    #slots-slider {
        overflow: visible;
    }

    .slots-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        margin-right: -14px;
        padding-right: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .slots-grid::-webkit-scrollbar {
        display: none;
    }

    .slot-card {
        min-width: 180px;
        max-width: 180px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 14px;
    }

    .slot-img-wrap {
        aspect-ratio: 1 / 1;
    }

    .slot-info {
        padding: 12px;
        gap: 10px;
    }

    .slot-name {
        font-size: .85rem;
        line-height: 1.35;
        min-height: auto;
    }

    .btn-slot {
        width: 100%;
        min-height: 38px;
        font-size: .8rem;
        padding: 8px 12px;
    }

    .slider-controls {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .slots-section {
        padding: 34px 0;
    }

    .slots-section .container {
        padding: 0 10px;
    }

    .slots-grid {
        gap: 10px;
        margin-right: -10px;
        padding-right: 10px;
    }

    .slot-card {
        min-width: 155px;
        max-width: 155px;
        border-radius: 12px;
    }

    .slot-info {
        padding: 10px;
        gap: 8px;
    }

    .slot-name {
        font-size: .78rem;
    }

    .btn-slot {
        min-height: 34px;
        font-size: .75rem;
        border-radius: 8px;
    }

    .slots-section .section-title h2 {
        font-size: 1.3rem;
    }

    .slots-section .section-title p {
        font-size: .82rem;
    }
}

@media (max-width: 768px) {
    #slots-slider {
        overflow: visible;
        width: 100%;
    }

    .slots-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .slot-card {
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .slot-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-controls {
        display: none;
    }
}

@media (max-width: 420px) {
    .slots-grid {
        gap: 10px;
    }

    .slot-info {
        padding: 10px;
    }

    .slot-name {
        font-size: .8rem;
    }

    .btn-slot {
        min-height: 34px;
        font-size: .75rem;
    }
}

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

    .tournaments-section .container {
        padding: 0 14px;
    }

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

    .tournaments-section .section-title h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .tournaments-section .section-title p {
        font-size: .9rem;
        line-height: 1.5;
    }

    #tournaments-slider {
        overflow: visible;
    }

    .tournaments-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        margin-right: -14px;
        padding-right: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    .tournament-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 18px;
        border-radius: 14px;
    }

    .tournament-badge {
        font-size: .7rem;
        padding: 4px 10px;
    }

    .tournament-title {
        font-size: .95rem;
        line-height: 1.35;
    }

    .tournament-desc {
        font-size: .82rem;
        line-height: 1.55;
    }

    .tournament-prize {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .prize-label {
        font-size: .7rem;
    }

    .prize-amount {
        font-size: 1rem;
    }

    .tournament-timer {
        flex-wrap: wrap;
        gap: 6px;
        font-size: .75rem;
    }

    .timer-val {
        min-width: 28px;
        padding: 4px 6px;
        font-size: .78rem;
    }

    .btn-get {
        width: 100%;
        min-height: 40px;
        font-size: .82rem;
        padding: 10px 14px;
    }

    .slider-controls {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .tournaments-section {
        padding: 34px 0;
    }

    .tournaments-section .container {
        padding: 0 10px;
    }

    .tournaments-grid {
        gap: 12px;
        margin-right: -10px;
        padding-right: 10px;
    }

    .tournament-card {
        min-width: 240px;
        max-width: 240px;
        padding: 16px;
        border-radius: 12px;
    }

    .tournament-title {
        font-size: .88rem;
    }

    .tournament-desc {
        font-size: .78rem;
    }

    .prize-amount {
        font-size: .92rem;
    }

    .timer-val {
        min-width: 24px;
        font-size: .72rem;
        padding: 3px 5px;
    }

    .btn-get {
        min-height: 36px;
        font-size: .76rem;
    }

    .tournaments-section .section-title h2 {
        font-size: 1.3rem;
    }

    .tournaments-section .section-title p {
        font-size: .82rem;
    }
}