:root {
    --c-bg: #0e112b;
    --c-header: #343a6c;
    --c-primary: #1abd8c;
    --c-secondary: #848cc9;
    --c-text: #e8eaf6;
    --c-text-muted: #9fa4cc;
    --c-card: #181c3a;
    --c-card-border: #2d3160;
    --c-card-alt: #1e2248;
    --c-gold: #f5c842;
    --c-danger: #e05555;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 4px 16px rgba(26, 189, 140, 0.25);
    --transition: 0.22s ease;
    --font-main: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--c-bg);
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--c-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-main);
}

.wp-block-separator {
    display: none;
}

.wp-block-spacer {
    height: 1px;
    overflow: hidden;
}

.x7k2m {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.bm4n9r {
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    height: 0;
}

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

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

.container--wide {
    max-width: 1400px;
}

main {
    flex: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.nav-link:hover, .nav-link.is-active {
    background-color: rgba(132, 140, 201, 0.18);
    color: var(--c-secondary);
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--c-primary);
    box-shadow: 0 0 6px var(--c-primary);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 4px var(--c-primary);
    }
    50% {
        box-shadow: 0 0 12px var(--c-primary), 0 0 20px rgba(26, 189, 140, 0.4);
    }
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--c-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger-btn.is-open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.is-open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background-color: var(--c-header);
    border-top: 1px solid rgba(132, 140, 201, 0.2);
    padding: 12px 0 16px;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-nav-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.mobile-nav-link:hover {
    background-color: rgba(132, 140, 201, 0.15);
    color: var(--c-secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-main);
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

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

.btn--sm {
    padding: 8px 16px;
    font-size: 0.78rem;
}

.btn--md {
    padding: 11px 22px;
    font-size: 0.88rem;
}

.btn--lg {
    padding: 15px 32px;
    font-size: 1rem;
}

.btn--xl {
    padding: 18px 40px;
    font-size: 1.08rem;
}

.btn--primary {
    background-color: var(--c-primary);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background-color: #15a87c;
    box-shadow: 0 6px 24px rgba(26, 189, 140, 0.4);
    color: #fff;
}

.btn--secondary {
    background-color: var(--c-secondary);
    color: #fff;
}

.btn--secondary:hover {
    background-color: #7076b8;
    color: #fff;
}

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

.btn--outline:hover {
    background-color: var(--c-secondary);
    color: #fff;
}

.btn--ghost {
    background-color: rgba(132, 140, 201, 0.15);
    color: var(--c-text);
}

.btn--ghost:hover {
    background-color: rgba(132, 140, 201, 0.25);
    color: #fff;
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-section {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0c0f26;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/b-pino.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14, 17, 43, 0.92) 0%, rgba(14, 17, 43, 0.6) 55%, rgba(52, 58, 108, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(26, 189, 140, 0.15);
    border: 1px solid rgba(26, 189, 140, 0.4);
    color: var(--c-primary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    text-wrap: balance;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-disclaimer {
    font-size: 0.72rem;
    color: rgba(159, 164, 204, 0.7);
}

.hero-bonus-card {
    background: linear-gradient(135deg, rgba(26, 189, 140, 0.12) 0%, rgba(132, 140, 201, 0.08) 100%);
    border: 1px solid rgba(26, 189, 140, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px 28px 22px;
    min-width: 280px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(26, 189, 140, 0.08);
    pointer-events: none;
}

.bonus-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.bonus-card-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bonus-card-sub {
    font-size: 0.88rem;
    color: var(--c-text);
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-card-spins {
    display: inline-block;
    background-color: rgba(26, 189, 140, 0.15);
    color: var(--c-primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.breadcrumbs-bar {
    background-color: rgba(52, 58, 108, 0.35);
    border-bottom: 1px solid var(--c-card-border);
    padding: 10px 0;
}

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

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

.breadcrumbs a:hover {
    color: var(--c-secondary);
}

.breadcrumbs-sep {
    color: rgba(159, 164, 204, 0.4);
    font-size: 0.7rem;
}

.breadcrumbs-current {
    color: var(--c-text);
    font-weight: 600;
}

.page-content {
    padding: 40px 0 60px;
}

.section-block {
    background-color: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}

.section-block--alt {
    background-color: var(--c-card-alt);
}

.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(26, 189, 140, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-title-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--c-primary);
}

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

.info-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.info-table tr {
    border-bottom: 1px solid var(--c-card-border);
    transition: background var(--transition);
}

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

.info-table tr:hover {
    background-color: rgba(132, 140, 201, 0.06);
}

.info-table td {
    padding: 13px 16px;
    text-align: left;
    vertical-align: middle;
}

.info-table-param {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 240px;
}

.info-table-param-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background-color: rgba(52, 58, 108, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-table-param-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--c-secondary);
}

.info-table-value {
    color: var(--c-text);
    font-weight: 500;
}

.info-table-value strong {
    color: var(--c-primary);
}

.info-table-badge {
    display: inline-block;
    background-color: rgba(26, 189, 140, 0.12);
    color: var(--c-primary);
    border: 1px solid rgba(26, 189, 140, 0.25);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.winners-section {
}

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

.winners-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.winners-table thead tr {
    border-bottom: 2px solid var(--c-card-border);
}

.winners-table thead th {
    padding: 10px 14px;
    text-align: left;
    color: var(--c-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.winners-table tbody tr {
    border-bottom: 1px solid rgba(45, 49, 96, 0.5);
    transition: background var(--transition);
}

.winners-table tbody tr:hover {
    background-color: rgba(132, 140, 201, 0.06);
}

.winners-table tbody td {
    padding: 11px 14px;
    text-align: left;
    vertical-align: middle;
}

.winner-rank {
    font-weight: 800;
    font-size: 0.9rem;
    width: 40px;
}

.rank-1 {
    color: var(--c-gold);
}

.rank-2 {
    color: #c0c0c0;
}

.rank-3 {
    color: #cd7f32;
}

.rank-other {
    color: var(--c-text-muted);
}

.winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
    color: #fff;
    flex-shrink: 0;
    margin-right: 10px;
}

.winner-name-cell {
    display: flex;
    align-items: center;
}

.winner-name {
    font-weight: 600;
    color: var(--c-text);
}

.winner-game {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.winner-amount {
    font-weight: 800;
    color: var(--c-primary);
    font-size: 0.95rem;
}

.winner-time {
    color: var(--c-text-muted);
    font-size: 0.76rem;
}

.live-games-section {
}

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

.live-game-card {
    flex: 1;
    min-width: 170px;
    max-width: calc(16.666% - 14px);
    background-color: var(--c-card-alt);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}

.live-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    border-color: rgba(26, 189, 140, 0.3);
}

.live-game-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #111430;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.live-game-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-game-thumb-icon {
    font-size: 2.5rem;
    opacity: 0.6;
}

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--c-danger);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 7px;
    border-radius: 4px;
}

.live-game-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-game-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.3;
}

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

.live-games-slider {
    display: none;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.live-games-slider::-webkit-scrollbar {
    display: none;
}

.live-games-slider .live-game-card {
    min-width: 200px;
    flex-shrink: 0;
    max-width: 200px;
}

.demo-section {
}

.demo-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.demo-select-btn {
    padding: 8px 16px;
    background-color: rgba(52, 58, 108, 0.5);
    border: 1px solid var(--c-card-border);
    color: var(--c-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.demo-select-btn:hover,
.demo-select-btn.is-active {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0a0d1e;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-card-border);
    margin-bottom: 16px;
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-cta-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.demo-cta-text {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    flex: 1;
}

.content-review {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--c-text);
}

.content-review h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--c-text);
    margin: 28px 0 14px;
    line-height: 1.3;
}

.content-review h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 22px 0 10px;
    line-height: 1.3;
}

.content-review h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-secondary);
    margin: 18px 0 8px;
}

.content-review p {
    margin-bottom: 14px;
}

.content-review a {
    color: var(--c-secondary);
    text-decoration: underline;
    text-decoration-color: rgba(132, 140, 201, 0.4);
    text-underline-offset: 3px;
}

.content-review a:hover {
    color: var(--c-primary);
}

.content-review ul,
.content-review ol {
    margin-bottom: 14px;
    padding-left: 0;
}

.content-review ul li,
.content-review ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.6;
    list-style: none;
}

.content-review ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--c-primary);
}

.content-review ol {
    counter-reset: ol-counter;
}

.content-review ol li {
    counter-increment: ol-counter;
}

.content-review ol li::before {
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

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

.content-review strong {
    color: var(--c-text);
    font-weight: 700;
}

.content-review em {
    color: var(--c-text-muted);
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.88rem;
}

.content-review table th {
    background-color: rgba(52, 58, 108, 0.5);
    color: var(--c-text);
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-card-border);
}

.content-review table td {
    padding: 9px 14px;
    border: 1px solid var(--c-card-border);
    color: var(--c-text);
}

.content-review table tr:nth-child(even) td {
    background-color: rgba(30, 34, 72, 0.4);
}

.content-review img {
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.responsible-section {
}

.responsible-inner {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.responsible-text {
    flex: 1;
    min-width: 280px;
}

.responsible-text p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.responsible-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(52, 58, 108, 0.4);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--c-text);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.responsible-link:hover {
    border-color: var(--c-secondary);
    color: var(--c-secondary);
    background-color: rgba(132, 140, 201, 0.1);
}

.responsible-link-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background-color: rgba(132, 140, 201, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsible-link-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--c-secondary);
}

.responsible-warning {
    background-color: rgba(224, 85, 85, 0.08);
    border: 1px solid rgba(224, 85, 85, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.86rem;
    color: var(--c-text);
}

.responsible-warning svg {
    width: 20px;
    height: 20px;
    fill: var(--c-danger);
    flex-shrink: 0;
}

.author-section {
}

.author-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-photo-wrap {
    flex-shrink: 0;
}

.author-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(132, 140, 201, 0.3);
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.86rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.author-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-meta-item svg {
    width: 13px;
    height: 13px;
    fill: var(--c-secondary);
}

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

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(52, 58, 108, 0.5);
    border: 1px solid var(--c-card-border);
    color: var(--c-text-muted);
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.author-social-link:hover {
    border-color: var(--c-secondary);
    color: var(--c-secondary);
}

.author-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.site-footer {
    background-color: var(--c-header);
    border-top: 1px solid rgba(132, 140, 201, 0.15);
    padding: 44px 0 0;
}

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

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

.footer-logo {
    display: block;
    margin-bottom: 14px;
}

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

.footer-brand-text {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

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

.footer-nav-col {
    flex: 1;
    min-width: 140px;
}

.footer-nav-title {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav-list a {
    font-size: 0.84rem;
    color: rgba(232, 234, 246, 0.65);
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--c-text);
}

.footer-socials {
    flex: 0 0 auto;
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(132, 140, 201, 0.12);
    border: 1px solid rgba(132, 140, 201, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.footer-social-link:hover {
    background-color: var(--c-secondary);
    border-color: var(--c-secondary);
    color: #fff;
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(132, 140, 201, 0.15);
    margin: 0;
}

.footer-logos-row {
    padding: 20px 0;
    border-bottom: 1px solid rgba(132, 140, 201, 0.12);
}

.footer-logos-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

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

.footer-logo-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(232, 234, 246, 0.6);
    white-space: nowrap;
    transition: all var(--transition);
}

.footer-logo-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--c-text);
}

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

.footer-copyright {
    font-size: 0.76rem;
    color: rgba(159, 164, 204, 0.55);
    line-height: 1.6;
}

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

.footer-legal-links a {
    font-size: 0.74rem;
    color: rgba(159, 164, 204, 0.5);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--c-text-muted);
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--c-danger);
    color: var(--c-danger);
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #232757 0%, #1e2448 50%, #232757 100%);
    border-top: 1px solid rgba(26, 189, 140, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-widget.is-visible {
    transform: translateY(0);
}

.sticky-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 62px;
    padding: 0 20px;
}

.widget-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.widget-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.widget-bonus {
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-primary);
    white-space: nowrap;
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

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

.widget-close svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
}

.info-page-content {
    padding: 48px 0 60px;
}

.info-page-body {
    background-color: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--c-text);
}

.info-page-body h1 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--c-text);
}

.info-page-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--c-text);
}

.info-page-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--c-secondary);
}

.info-page-body p {
    margin-bottom: 14px;
}

.info-page-body ul,
.info-page-body ol {
    padding-left: 0;
    margin-bottom: 14px;
}

.info-page-body ul li,
.info-page-body ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    list-style: none;
}

.info-page-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--c-primary);
}

.info-page-body a {
    color: var(--c-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-page-body a:hover {
    color: var(--c-primary);
}

.info-page-body strong {
    color: var(--c-text);
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-input,
.form-textarea,
.form-select {
    background-color: rgba(52, 58, 108, 0.35);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--c-secondary);
    box-shadow: 0 0 0 3px rgba(132, 140, 201, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(159, 164, 204, 0.5);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-select option {
    background-color: var(--c-card);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: rgba(52, 58, 108, 0.25);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    background: none;
    border: none;
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background-color: rgba(132, 140, 201, 0.08);
}

.faq-question svg {
    width: 16px;
    height: 16px;
    fill: var(--c-secondary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 18px 16px;
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--c-card-border);
    padding-top: 14px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--c-gold);
}

.rating-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
}

.rating-bar {
    height: 6px;
    background-color: rgba(52, 58, 108, 0.5);
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 3px;
    background-color: var(--c-primary);
}

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

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

.slide-in-up {
    animation: slideInUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.rc8j1 {
    display: none;
}

.vy3d5 {
    position: absolute;
    left: -99999px;
}

.qz6w8 {
    font-size: 0;
    height: 0;
    overflow: hidden;
}

.mn2p7 {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.content-block {
    background-color: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
}

.content-block--review {
    background-color: var(--c-card-alt);
}

.content-block--responsible {
    background: linear-gradient(135deg, rgba(14, 17, 43, 0.95) 0%, rgba(30, 34, 72, 0.9) 100%);
    border-color: rgba(132, 140, 201, 0.25);
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 6px;
    line-height: 1.3;
    text-wrap: balance;
}

.section-header p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
}

.section-header--light h2 {
    color: #fff;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge--green {
    background-color: rgba(26, 189, 140, 0.14);
    color: var(--c-primary);
    border: 1px solid rgba(26, 189, 140, 0.3);
}

.badge--orange {
    background-color: rgba(245, 200, 66, 0.12);
    color: var(--c-gold);
    border: 1px solid rgba(245, 200, 66, 0.3);
}

.info-table-icon {
    width: 40px;
    padding: 13px 8px 13px 16px;
    vertical-align: middle;
}

.info-table-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--c-secondary);
    display: block;
}

.info-table-label {
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    width: 220px;
    padding: 13px 14px;
    vertical-align: middle;
}

.live-games-slider-wrap {
    position: relative;
}

.live-games-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.live-games-track::-webkit-scrollbar {
    display: none;
}

.live-games-track .live-game-card {
    scroll-snap-align: start;
    flex: 0 0 calc(16.666% - 14px);
    min-width: 170px;
}

.live-games-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.live-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(52, 58, 108, 0.5);
    border: 1px solid var(--c-card-border);
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.live-nav-btn:hover {
    background-color: var(--c-secondary);
    border-color: var(--c-secondary);
    color: #fff;
}

.live-nav-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.live-game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--c-danger);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 2;
}

.live-game-icon {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0f1230;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.live-game-icon svg {
    width: 80%;
    height: auto;
    max-height: 70px;
}

.live-game-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-game-card {
    flex-direction: column;
}

.live-game-card .btn {
    margin: 0 12px 12px;
    width: calc(100% - 24px);
}

.demo-game-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.demo-cta p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    flex: 1;
}

.responsible-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.responsible-card {
    flex: 1;
    min-width: 220px;
    background-color: rgba(52, 58, 108, 0.3);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.responsible-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(26, 189, 140, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.responsible-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--c-primary);
}

.responsible-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
}

.responsible-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.responsible-card a {
    color: var(--c-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-footer-note {
    font-size: 0.78rem;
    color: rgba(159, 164, 204, 0.6);
    margin-top: 16px;
    line-height: 1.6;
    border-top: 1px solid rgba(132, 140, 201, 0.12);
    padding-top: 14px;
}

.author-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(132, 140, 201, 0.3);
}

.author-info {
    flex: 1;
}

.author-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.author-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(52, 58, 108, 0.5);
    border: 1px solid var(--c-card-border);
    color: var(--c-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.author-link:hover {
    border-color: var(--c-secondary);
    color: var(--c-secondary);
}

.author-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.author-dates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.author-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-date-item svg {
    width: 13px;
    height: 13px;
    fill: var(--c-secondary);
    flex-shrink: 0;
}

.prose-content {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--c-text);
}

.prose-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    margin: 28px 0 14px;
    line-height: 1.3;
}

.prose-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 22px 0 10px;
}

.prose-content h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--c-secondary);
    margin: 16px 0 8px;
}

.prose-content p {
    margin-bottom: 14px;
}

.prose-content a {
    color: var(--c-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose-content a:hover {
    color: var(--c-primary);
}

.prose-content ul, .prose-content ol {
    margin-bottom: 14px;
    padding-left: 0;
}

.prose-content ul li, .prose-content ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    list-style: none;
    line-height: 1.65;
}

.prose-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--c-primary);
}

.prose-content ol {
    counter-reset: ol-cnt;
}

.prose-content ol li {
    counter-increment: ol-cnt;
}

.prose-content ol li::before {
    content: counter(ol-cnt) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

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

.prose-content strong {
    font-weight: 700;
    color: var(--c-text);
}

.prose-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.prose-content table th {
    background-color: rgba(52, 58, 108, 0.5);
    color: var(--c-text);
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-card-border);
}

.prose-content table td {
    padding: 9px 14px;
    border: 1px solid var(--c-card-border);
    color: var(--c-text);
}

.prose-content table tr:nth-child(even) td {
    background-color: rgba(30, 34, 72, 0.4);
}

.info-page-wrap {
    padding: 40px 0 60px;
}

.info-page-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 24px;
    text-wrap: balance;
}

.form-success {
    background-color: rgba(26, 189, 140, 0.12);
    border: 1px solid rgba(26, 189, 140, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--c-primary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: rgba(52, 58, 108, 0.35);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--c-secondary);
    box-shadow: 0 0 0 3px rgba(132, 140, 201, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(159, 164, 204, 0.5);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form select option {
    background-color: var(--c-card);
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.info-page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}

.info-page-body table th,
.info-page-body table td {
    padding: 10px 14px;
    border: 1px solid var(--c-card-border);
    text-align: left;
}

.info-page-body table th {
    background-color: rgba(52, 58, 108, 0.5);
    font-weight: 700;
    color: var(--c-text);
}

.info-page-body table tr:nth-child(even) td {
    background-color: rgba(30, 34, 72, 0.4);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-bonus-card {
        min-width: 240px;
        padding: 22px 20px 18px;
    }

    .live-game-card {
        max-width: calc(33.333% - 12px);
        min-width: 150px;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .header-online {
        display: none;
    }

    .hero-inner {
        flex-direction: column;
        gap: 24px;
    }

    .hero-bonus-card {
        min-width: 100%;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 36px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .live-games-grid {
        display: none;
    }

    .live-games-slider {
        display: flex;
    }

    .live-games-track .live-game-card {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .author-inner {
        flex-direction: column;
        gap: 16px;
    }

    .author-photo {
        width: 72px;
        height: 72px;
    }

    .author-block {
        flex-direction: column;
        gap: 16px;
    }

    .author-img {
        width: 68px;
        height: 68px;
    }

    .footer-top {
        gap: 24px;
    }

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

    .info-table-param {
        width: 180px;
    }

    .info-table-label {
        width: 160px;
        font-size: 0.82rem;
    }

    .section-block {
        padding: 20px 16px;
    }

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

    .info-page-body {
        padding: 24px 20px;
    }

    .info-page-wrap {
        padding: 24px 0 40px;
    }

    .sticky-widget-inner {
        padding: 0 12px;
        gap: 10px;
    }

    .widget-label {
        display: none;
    }

    .demo-cta-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .demo-cta-text {
        text-align: center;
    }

    .demo-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .responsible-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .btn--xl {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .info-table-param {
        width: 150px;
        font-size: 0.82rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .winners-table thead {
        display: none;
    }

    .winners-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .winners-table tbody td {
        padding: 4px 10px;
    }

    .winner-time {
        display: none;
    }

    .author-socials {
        flex-wrap: wrap;
    }
}
