
:root {
    --c-bg: #1C1C1C;
    --c-header: #000000;
    --c-text: #ECECEC;
    --c-text-muted: #A0A0A0;
    --c-accent: #FFDD00;
    --c-accent-hover: #FFE733;
    --c-green: #22C55E;
    --c-red: #EF4444;
    --c-card: #242424;
    --c-card-border: #333333;
    --c-input-bg: #2a2a2a;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-sans: 'Open Sans', 'Roboto', sans-serif;
    --transition: 0.25s ease;
}

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

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

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

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

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

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

.wp-block-group {
    display: block;
}

.elementor-widget-wrap {
    position: relative;
}

.wp-post-image {
    border: none;
}

.site-content {
    width: 100%;
}

.entry-content {
    max-width: 100%;
}

.wp-block-cover {
    position: relative;
}

.qd7f3k {
    display: none;
}

.xp2m9b {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.lp8vw1 {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

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

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.site-header .wr-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

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

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

.header-nav a {
    color: #CECECE;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--c-accent);
    background: rgba(255, 221, 0, 0.08);
}

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

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

.header-online .dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

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

.btn-login {
    background: transparent;
    border: 2px solid var(--c-accent);
    color: var(--c-accent);
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--c-accent);
    color: #000;
}

.btn-signup {
    background: var(--c-accent);
    border: 2px solid var(--c-accent);
    color: #000000;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-signup:hover {
    background: var(--c-accent-hover);
    color: #000;
    box-shadow: 0 0 18px rgba(255, 221, 0, 0.5);
    transform: translateY(-1px);
}

.btn-cta {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 36px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: var(--c-accent-hover);
    color: #000;
    box-shadow: 0 0 32px rgba(255, 221, 0, 0.55);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

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

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: #000;
    z-index: 999;
    flex-direction: column;
    padding: 20px 16px;
    gap: 8px;
    overflow-y: auto;
}

.mobile-nav-overlay.is-open {
    display: flex;
}

.mobile-nav-overlay a {
    color: var(--c-text);
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: block;
}

.mobile-nav-overlay a:hover {
    background: rgba(255, 221, 0, 0.1);
    color: var(--c-accent);
}

.mobile-nav-overlay .mob-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.mobile-nav-overlay .btn-login,
.mobile-nav-overlay .btn-signup {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 40%, rgba(0, 0, 0, 0.3) 100%);
}

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

.hero-badge {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    text-balance: balance;
}

.hero-content h1 span {
    color: var(--c-accent);
}

.hero-content p {
    font-size: 17px;
    color: #D0D0D0;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 221, 0, 0.12);
    border: 1px solid rgba(255, 221, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 14px;
    color: var(--c-accent);
    margin-bottom: 24px;
}

.section-gap {
    padding: 64px 0;
}

.section-gap-sm {
    padding: 40px 0;
}

.section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-balance: balance;
}

.section-sub {
    color: var(--c-text-muted);
    font-size: 15px;
    margin-bottom: 36px;
}

.section-head {
    margin-bottom: 36px;
}

.section-head .section-title {
    margin-bottom: 6px;
}

/* ─── PROS / CONS ─── */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.pros-card {
    border-top: 3px solid var(--c-green);
}

.cons-card {
    border-top: 3px solid var(--c-red);
}

.pc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.pc-head svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.5;
    align-items: flex-start;
}

.pc-list li::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.pros-card .pc-list li::before {
    background: var(--c-green);
}

.cons-card .pc-list li::before {
    background: var(--c-red);
}

/* ─── JACKPOTS ─── */
.jackpot-section {
    background: #161616;
}

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

.jackpot-card {
    background: linear-gradient(135deg, #1e1a00 0%, #242000 100%);
    border: 1px solid rgba(255, 221, 0, 0.25);
    border-radius: var(--radius-md);
    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(255, 221, 0, 0.2);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.jackpot-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.jackpot-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.jackpot-currency {
    font-size: 16px;
    font-weight: 600;
}

/* ─── TOURNAMENTS ─── */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-card {
    background: var(--c-card);
    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);
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.tour-card-header {
    background: linear-gradient(135deg, #1a1a00, #2a2500);
    padding: 16px 20px;
    border-bottom: 2px solid var(--c-accent);
}

.tour-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.tour-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.5;
    flex: 1;
}

.tour-prize-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 221, 0, 0.07);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

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

.tour-prize-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-accent);
}

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

.tour-timer-val {
    display: flex;
    gap: 4px;
}

.t-unit {
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.t-sep {
    color: var(--c-accent);
    font-weight: 700;
}

/* ─── VIDEO ─── */
.video-section {
    background: #111;
}

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    aspect-ratio: 16/9;
}

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

/* ─── CONTENT BLOCK (review) ─── */
.review-section {
}

.review-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 36px 40px;
}

.author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #333;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c-accent);
    font-weight: 700;
}

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

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

.author-link {
    font-size: 13px;
    color: var(--c-accent);
}

/* Bare content styles */
.content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.content-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-accent);
    margin: 22px 0 10px;
}

.content-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ddd;
    margin: 18px 0 8px;
}

.content-body p {
    margin-bottom: 14px;
    color: var(--c-text);
    line-height: 1.7;
    font-size: 15px;
}

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

.content-body li {
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 15px;
}

.content-body a {
    color: var(--c-accent);
}

.content-body strong {
    color: #fff;
}

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

.content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 20px;
    margin: 18px 0;
    background: rgba(255, 221, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #ccc;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px auto;
    font-size: 14px;
}

.content-body table th {
    background: #1a1a1a;
    color: var(--c-accent);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #333;
    font-weight: 600;
}

.content-body table td {
    padding: 9px 14px;
    text-align: left;
    border: 1px solid #2a2a2a;
    color: var(--c-text);
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

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

.content-body hr {
    border: none;
    border-top: 1px solid #333;
    margin: 24px 0;
}

/* ─── SLOT MINI-GAME ─── */
.slot-section {
    background: #161616;
}

.slot-machine-wrap {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.slot-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.reel {
    width: 90px;
    height: 90px;
    background: #111;
    border: 2px solid #333;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    transition: all 0.1s;
    overflow: hidden;
    position: relative;
}

.reel.spinning {
    animation: reel-spin 0.08s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(0);
    }
}

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

.slot-win-msg {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-accent);
    animation: fadeInUp 0.4s ease;
}

.slot-lose-msg {
    font-size: 16px;
    color: var(--c-text-muted);
    animation: fadeInUp 0.4s ease;
}

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

.slot-btn {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 16px;
}

.slot-btn:hover {
    background: var(--c-accent-hover);
    box-shadow: 0 0 20px rgba(255, 221, 0, 0.4);
    transform: translateY(-1px);
}

.slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    transition: background var(--transition);
    gap: 12px;
}

.faq-question:hover {
    background: rgba(255, 221, 0, 0.04);
}

.faq-question .fq-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-accent);
    font-size: 14px;
    transition: transform var(--transition);
}

.faq-item.is-open .fq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid #222;
    padding: 48px 0 24px;
}

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

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

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

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

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

.footer-col ul a {
    color: #999;
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--c-accent);
}

.footer-payments, .footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
}

.pay-badge, .prov-badge {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.footer-legal {
    font-size: 11px;
    color: #444;
    max-width: 600px;
    line-height: 1.6;
    text-align: right;
}

/* ─── STICKY WIDGET ─── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0a0a00 0%, #1a1600 100%);
    border-top: 2px solid var(--c-accent);
    z-index: 900;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.widget-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.widget-text span {
    color: var(--c-accent);
}

.widget-btn {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.widget-btn:hover {
    background: var(--c-accent-hover);
    color: #000;
    box-shadow: 0 0 16px rgba(255, 221, 0, 0.5);
}

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

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

/* ─── TRANSITIONS / ANIMATIONS ─── */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .jackpot-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }

    .review-wrap {
        padding: 24px 20px;
    }

    .pros-cons-grid {
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .jackpot-grid {
        grid-template-columns: 1fr;
    }

    .tour-grid {
        grid-template-columns: 1fr;
        overflow-x: auto;
        display: flex;
        gap: 16px;
        padding-bottom: 8px;
    }

    .tour-card {
        min-width: 280px;
        flex-shrink: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-legal {
        text-align: left;
    }

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

    .section-gap {
        padding: 44px 0;
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 10px 36px 10px 16px;
    }

    .widget-text {
        font-size: 13px;
    }

    .reel {
        width: 72px;
        height: 72px;
        font-size: 36px;
    }

    .header-actions .btn-login,
    .header-actions .btn-signup {
        font-size: 12px;
        padding: 6px 12px;
    }
}

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

    .hero-content h1 {
        font-size: 24px;
    }

    .slot-reels {
        gap: 8px;
    }

    .reel {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }
}

.alcm {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #ececec;
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.alcm > *:first-child {
    margin-top: 0;
}

.alcm h1,
.alcm h2,
.alcm h3,
.alcm h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.alcm h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.alcm h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.alcm h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.alcm h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e4e4e4;
}

.alcm p {
    margin: 0 0 18px;
    color: #d9d9d9;
}

.alcm > h1 + p {
    font-size: 18px;
    color: #f0f0f0;
}

.alcm a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.alcm a:hover {
    color: #ffe766;
    opacity: 1;
}

.alcm strong,
.alcm b {
    color: #ffffff;
    font-weight: 700;
}

.alcm ul,
.alcm ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.alcm li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.alcm li::marker {
    color: #ffdd00;
}

.alcm table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.alcm thead tr {
    background: #101010;
}

.alcm th,
.alcm td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.alcm th {
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alcm td {
    font-size: 15px;
    color: #ececec;
}

.alcm tbody tr:nth-child(even) {
    background: #242424;
}

.alcm tbody tr:last-child td {
    border-bottom: 0;
}

.alcm blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.alcm blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.alcm hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

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

@media (max-width: 991px) {
    .alcm {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

    .alcm h1 {
        margin-bottom: 20px;
    }

    .alcm h2 {
        margin-top: 40px;
    }

    .alcm table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .alcm {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

    .alcm h1 {
        font-size: 30px;
    }

    .alcm h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .alcm h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .alcm p,
    .alcm li,
    .alcm td {
        font-size: 15px;
    }

    .alcm ul,
    .alcm ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .alcm blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .alcm th,
    .alcm td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .alcm {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

    .alcm h1 {
        font-size: 26px;
    }

    .alcm > h1 + p {
        font-size: 16px;
    }

    .alcm h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .alcm h3 {
        font-size: 18px;
    }

    .alcm table,
    .alcm thead,
    .alcm tbody,
    .alcm tr,
    .alcm th,
    .alcm td {
        display: block;
        width: 100%;
    }

    .alcm table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .alcm thead {
        display: none;
    }

    .alcm tbody tr {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .alcm tbody tr:last-child {
        border-bottom: 0;
    }

    .alcm td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    .alcm td:first-child {
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        color: #ffdd00;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .alcm td:last-child {
        font-size: 14px;
        color: #ededed;
    }

    .alcm blockquote {
        padding: 14px 14px 14px 16px;
    }
}

@media (max-width: 380px) {
    .alcm h1 {
        font-size: 24px;
    }

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

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

    .alcm p,
    .alcm li,
    .alcm td:last-child {
        font-size: 13px;
    }

    .alcm tbody tr {
        padding: 10px;
    }
}