@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
    --color-bg: #0e112b;
    --color-header: #343a6c;
    --color-primary: #1abd8c;
    --color-secondary: #848cc9;
    --color-text: #e8eaf6;
    --color-text-muted: #a0a8d8;
    --color-card: #1a1f45;
    --color-card2: #1e2450;
    --color-border: #2d345f;
    --color-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Montserrat', Arial, sans-serif;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .35);
}

html {
    scroll-behavior: smooth;
    background: var(--color-bg)
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--color-primary)
}

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

ul, ol {
    padding-left: 1.4em
}

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

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

.xk9r3 {
    display: none
}

.pq71a, .mw44b, .lz38c {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
    pointer-events: none
}

.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

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

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

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

.header-nav a {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, color .2s
}

.header-nav a:hover {
    background: rgba(132, 140, 201, .18);
    color: var(--color-white)
}

.nav-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    fill: currentColor
}

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

.header-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 8px
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    background: rgba(26, 189, 140, .12);
    border: 1px solid rgba(26, 189, 140, .3);
    border-radius: 20px;
    padding: 3px 10px
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(.85)
    }
}

.player-count {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px
}

.player-count svg {
    width: 14px;
    height: 14px;
    fill: var(--color-secondary)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    padding: 9px 18px;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3)
}

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

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg)
}

.btn-primary:hover {
    filter: brightness(1.1);
    color: var(--color-bg)
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white)
}

.btn-secondary:hover {
    filter: brightness(1.1);
    color: var(--color-white)
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary)
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-white)
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md)
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.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-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg)
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 17, 43, .92) 40%, rgba(14, 17, 43, .55) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 189, 140, .15);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 18px
}

.hero-title {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 14px;
    text-wrap: balance
}

.hero-title span {
    color: var(--color-primary)
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--color-text-muted);
    margin-bottom: 28px;
    max-width: 560px;
    line-height: 1.6
}

.hero-promo {
    background: rgba(26, 189, 140, .1);
    border: 2px dashed var(--color-primary);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.promo-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.promo-code {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: .12em
}

.promo-copy {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: filter .2s
}

.promo-copy:hover {
    filter: brightness(1.1)
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.breadcrumb-bar {
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-muted)
}

.breadcrumb-list li a {
    color: var(--color-secondary)
}

.breadcrumb-list li a:hover {
    color: var(--color-primary)
}

.breadcrumb-sep {
    color: var(--color-border)
}

.section {
    padding: 56px 0
}

.section-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    text-wrap: balance
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 600px
}

.section-header {
    margin-bottom: 36px
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.adv-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    flex: 1 1 220px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s, border-color .2s
}

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

.adv-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(26, 189, 140, .18), rgba(132, 140, 201, .18));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary)
}

.adv-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white)
}

.adv-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55
}

.jackpot-section {
    background: linear-gradient(135deg, var(--color-card) 0%, #1a1040 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--color-border);
    margin-bottom: 0
}

.jackpot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

.jackpot-card {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(26, 189, 140, .3);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    flex: 1 1 180px;
    max-width: 260px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(26, 189, 140, .2), transparent, rgba(132, 140, 201, .2));
    border-radius: var(--radius-md);
    z-index: 0;
    pointer-events: none
}

.jackpot-game {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    font-weight: 600
}

.jackpot-amount {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    font-variant-numeric: tabular-nums
}

.jackpot-label {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 6px;
    position: relative;
    z-index: 1
}

.mirrors-section {
}

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

.mirrors-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.mirrors-table th {
    background: var(--color-header);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap
}

.mirrors-table td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle
}

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

.mirrors-table tr:hover td {
    background: rgba(132, 140, 201, .07)
}

.mirror-link {
    color: var(--color-primary);
    font-weight: 600
}

.mirror-link:hover {
    color: var(--color-secondary)
}

.mirror-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600
}

.mirror-status-ok::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    display: inline-block
}

.mirror-updated {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 10px
}

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

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

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

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(132, 140, 201, .18);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: .04em;
    align-self: flex-start
}

.tournament-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white)
}

.tournament-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55
}

.tournament-prize {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 189, 140, .1);
    border: 1px solid rgba(26, 189, 140, .25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-top: auto
}

.prize-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600
}

.prize-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary)
}

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

.timer-label {
    font-size: 12px;
    color: var(--color-text-muted)
}

.timer-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em
}

.timer-units {
    display: flex;
    gap: 6px
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 50px
}

.timer-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-white);
    font-variant-numeric: tabular-nums;
    line-height: 1
}

.timer-lbl {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.timer-sep {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    align-self: center;
    margin-bottom: 8px
}

.slots-mini {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center
}

.slot-machine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0
}

.slot-reel {
    width: 80px;
    height: 90px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
    transition: border-color .3s
}

.slot-reel.spinning {
    border-color: var(--color-primary);
    animation: reel-flash .15s infinite
}

@keyframes reel-flash {
    0%, 100% {
        border-color: var(--color-primary)
    }
    50% {
        border-color: var(--color-secondary)
    }
}

.slot-symbol {
    transition: transform .1s
}

.slot-btn-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px
}

.slot-result {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    display: none
}

.slot-result.win {
    background: rgba(26, 189, 140, .15);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: block
}

.slot-result.lose {
    background: rgba(132, 140, 201, .1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    display: block
}

.slot-credits {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 4px
}

.review-section {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white)
}

.author-title {
    font-size: 13px;
    color: var(--color-text-muted)
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.author-links a {
    font-size: 12px;
    color: var(--color-secondary);
    text-decoration: underline
}

.review-body {
}

.review-body h2, .review-body h3, .review-body h4 {
    color: var(--color-white);
    margin: 20px 0 10px;
    font-weight: 700
}

.review-body h2 {
    font-size: clamp(18px, 3vw, 26px)
}

.review-body h3 {
    font-size: clamp(16px, 2.5vw, 22px)
}

.review-body h4 {
    font-size: clamp(14px, 2vw, 18px)
}

.review-body p {
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.7
}

.review-body ul, .review-body ol {
    margin-bottom: 14px;
    padding-left: 1.6em;
    color: var(--color-text)
}

.review-body li {
    margin-bottom: 6px;
    line-height: 1.6
}

.review-body a {
    color: var(--color-secondary);
    text-decoration: underline
}

.review-body a:hover {
    color: var(--color-primary)
}

.review-body strong, .review-body b {
    color: var(--color-white);
    font-weight: 700
}

.review-body em, .review-body i {
    color: var(--color-text-muted);
    font-style: italic
}

.review-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0
}

.review-body table th {
    background: var(--color-header);
    color: var(--color-text);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--color-border)
}

.review-body table td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text)
}

.review-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.review-body blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(26, 189, 140, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted)
}

.review-body code {
    background: rgba(0, 0, 0, .3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px
}

.review-body pre {
    background: rgba(0, 0, 0, .4);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 14px
}

.review-body img {
    border-radius: var(--radius-sm);
    margin: 12px 0
}

.review-body hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0
}

.registration-steps {
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: steps
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color .2s
}

.step-item:hover {
    border-color: var(--color-secondary)
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-bg);
    flex-shrink: 0
}

.step-content {
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.55
}

.site-footer {
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    margin-top: auto
}

.footer-top {
    padding: 40px 0 28px
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between
}

.footer-brand {
    flex: 0 0 220px
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px
}

.footer-tagline {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted)
}

.footer-flag img {
    width: 24px;
    height: 16px;
    border-radius: 2px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--color-primary)
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.footer-social a:hover {
    background: var(--color-primary)
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text)
}

.footer-social a:hover svg {
    fill: var(--color-bg)
}

.footer-logos {
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border)
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px
}

.footer-logos-row:last-child {
    margin-bottom: 0
}

.footer-logos-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    width: 100%;
    margin-bottom: 6px
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, .1);
    min-height: 34px
}

.logo-badge.trust {
    border-color: rgba(26, 189, 140, .3);
    color: var(--color-primary);
    background: rgba(26, 189, 140, .07)
}

.age-badge {
    background: rgba(255, 80, 80, .15);
    border: 1px solid rgba(255, 80, 80, .4);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 800;
    color: #ff6b6b
}

.footer-bottom {
    padding: 16px 0;
    text-align: center
}

.footer-copy {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 6px
}

.footer-legal {
    font-size: 11px;
    color: rgba(160, 168, 216, .5);
    line-height: 1.6
}

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, var(--color-header), #1a1f52);
    border-top: 2px solid var(--color-primary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
    transform: translateY(0);
    transition: transform .4s ease
}

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

.widget-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-text svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary)
}

.widget-code-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 189, 140, .12);
    border: 1px dashed var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 6px 12px
}

.widget-code {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: .1em
}

.widget-copy {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    color: var(--color-primary);
    transition: transform .2s
}

.widget-copy:hover {
    transform: scale(1.2)
}

.widget-copy svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 4px;
    line-height: 1;
    font-size: 18px
}

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

.mob-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9990;
    opacity: 0;
    transition: opacity .3s
}

.mob-menu-overlay.open {
    opacity: 1
}

.mob-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    max-width: 85vw;
    background: var(--color-header);
    z-index: 9991;
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 20px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column
}

.mob-menu-panel.open {
    transform: translateX(0)
}

.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 8px
}

.mob-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    font-size: 22px;
    line-height: 1;
    padding: 4px
}

.mob-nav {
    display: flex;
    flex-direction: column;
    padding: 0 12px
}

.mob-nav a {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-border)
}

.mob-nav a:last-child {
    border-bottom: none
}

.mob-nav a:hover {
    background: rgba(132, 140, 201, .15);
    color: var(--color-white)
}

.mob-actions {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--color-border);
    margin-top: 8px
}

.mob-actions .btn {
    width: 100%;
    justify-content: center
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.kx82w, .nq14s, .tr57v {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    speak: none
}

@media (max-width: 991px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .mob-menu-overlay {
        display: block
    }

    .hero-content {
        padding: 40px 16px
    }

    .jackpot-card {
        flex: 1 1 140px
    }

    .footer-grid {
        gap: 20px
    }

    .footer-brand {
        flex: 0 0 100%
    }
}

@media (max-width: 768px) {
    .tournaments-grid {
        flex-direction: column
    }

    .advantages-grid .adv-card {
        flex: 1 1 44%
    }

    .review-section {
        padding: 24px 16px
    }

    .slots-mini {
        padding: 24px 16px
    }

    .hero-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

@media (max-width: 480px) {
    .advantages-grid .adv-card {
        flex: 1 1 100%
    }

    .slot-reel {
        width: 64px;
        height: 76px;
        font-size: 34px
    }

    .jackpot-card {
        flex: 1 1 100%
    }

    .hero-buttons {
        flex-direction: column
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .footer-grid {
        flex-direction: column
    }

    .promo-widget {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px
    }
}

@media (max-width: 768px) {

    .mirrors-section {
        padding: 40px 0;
    }

    .mirrors-wrap {
        overflow: visible;
    }

    .mirrors-table,
    .mirrors-table tbody,
    .mirrors-table tr,
    .mirrors-table td {
        display: block;
        width: 100%;
    }

    .mirrors-table {
        min-width: 0;
        background: none;
        border: none;
    }

    .mirrors-table thead {
        display: none;
    }

    .mirrors-table tr {
        margin-bottom: 16px;
        padding: 18px;
        background: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    }

    .mirrors-table td {
        padding: 10px 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        font-size: 14px;
        text-align: right;
        word-break: break-word;
    }

    .mirrors-table td:first-child {
        padding-top: 0;
    }

    .mirrors-table td:last-child {
        padding-bottom: 0;
    }

    .mirrors-table td::before {
        font-weight: 700;
        color: var(--color-white);
        text-align: left;
        flex: 0 0 110px;
    }

    .mirrors-table td:nth-child(1)::before {
        content: "#";
    }

    .mirrors-table td:nth-child(2)::before {
        content: "Spiegel";
    }

    .mirrors-table td:nth-child(3)::before {
        content: "Status";
    }

    .mirrors-table td:nth-child(4)::before {
        content: "Snelheid";
    }

    .mirrors-table td:nth-child(5)::before {
        content: "Bijgewerkt";
    }

    .mirror-link {
        display: inline-block;
        max-width: 170px;
        overflow-wrap: anywhere;
        text-align: right;
    }

    .mirror-status-ok {
        justify-content: flex-end;
    }

    .mirror-updated {
        margin-top: 20px;
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {

    .mirrors-table tr {
        padding: 14px;
        border-radius: 14px;
    }

    .mirrors-table td {
        font-size: 13px;
        gap: 10px;
    }

    .mirrors-table td::before {
        flex: 0 0 90px;
        font-size: 12px;
    }

    .mirror-link {
        max-width: 150px;
        font-size: 13px;
    }
}