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

:root {
    --bg: #000a12;
    --hf: #262A34;
    --btn-primary: #F9C23C;
    --btn-secondary: #3C3C3C;
    --text: #e8ecf0;
    --text-muted: #9aa3ae;
    --accent: #F9C23C;
    --card-bg: #0d1520;
    --card-border: #1e2a38;
    --radius: 12px;
    --radius-sm: 8px;
    --trans: 0.3s ease;
}

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

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

body {
    font-family: 'Rubik', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #ffd666;
}

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

ul {
    list-style: none;
}

.x8k2m {
    display: none;
}

.qr71p {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

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

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

.box {
    width: 100%;
}

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

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

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

.btn--primary {
    background: var(--btn-primary);
    color: #0d1520;
}

.btn--primary:hover {
    background: #ffd666;
    color: #0d1520;
}

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

.btn--secondary:hover {
    background: #4e4e4e;
    color: #fff;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

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

.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.section-sub {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* ─── HEADER ─── */
.site-header {
    background: var(--hf);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.header-nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--trans), color var(--trans);
}

.header-nav a:hover {
    background: rgba(249, 194, 60, 0.12);
    color: var(--accent);
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.25);
    }
}

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

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

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--hf);
    z-index: 999;
    padding: 80px 24px 32px;
    flex-direction: column;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
    transform: translateX(0);
    display: flex;
}

.mobile-nav a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--trans);
}

.mobile-nav a:hover {
    background: rgba(249, 194, 60, 0.12);
    color: var(--accent);
}

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

.mobile-nav-btns .btn {
    width: 100%;
}

/* ─── HERO SLIDER ─── */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    align-items: center;
}

.hero-slide.active {
    display: flex;
    animation: fadeInSlide 0.7s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: scale(1.03);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 10, 18, 0.88) 0%, rgba(0, 10, 18, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 20px;
    margin-left: 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #0d1520;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.05rem;
    color: #c8d0da;
    margin-bottom: 28px;
    max-width: 480px;
}

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

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

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

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.25);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(38, 42, 52, 0.75);
    border: 1px solid rgba(249, 194, 60, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans);
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(249, 194, 60, 0.25);
}

.slider-arrow--prev {
    left: 20px;
}

.slider-arrow--next {
    right: 20px;
}

/* ─── CONTENT SECTIONS ─── */
.content-section {
    padding: 56px 0;
}

.content-section + .content-section {
    padding-top: 0;
}

/* ─── JACKPOTS ─── */
.jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1 1 200px;
    background: linear-gradient(135deg, #0d1520 0%, #111c2c 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249, 194, 60, 0.08), transparent 65%);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 194, 60, 0.12);
}

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

.jackpot-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    display: block;
    transition: color 0.4s;
}

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

/* ─── MIRRORS ─── */
.mirrors-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 16px;
}

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mirrors-timestamp {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirrors-timestamp .dot-live {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

table th {
    background: rgba(249, 194, 60, 0.08);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(30, 42, 56, 0.6);
    vertical-align: middle;
}

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

table tr:hover td {
    background: rgba(249, 194, 60, 0.04);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ─── TOURNAMENTS ─── */
.tournaments-grid {
    display: flex;
    gap: 20px;
}

.tournament-card {
    flex: 1 1 300px;
    background: linear-gradient(160deg, #0d1520 0%, #111c2c 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.tournament-card-top {
    background: linear-gradient(135deg, #1a2540 0%, #0d1520 100%);
    padding: 20px;
    border-bottom: 1px solid var(--card-border);
}

.tournament-tag {
    display: inline-block;
    background: rgba(249, 194, 60, 0.15);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.tournament-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

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

.tournament-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.55;
    flex: 1;
}

.tournament-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.tournament-prize-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.tournament-timer {
    text-align: right;
}

.timer-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

.timer-unit {
    background: var(--btn-secondary);
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    min-width: 32px;
    text-align: center;
}

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

/* tournaments slider (mobile) */
.tournaments-slider-wrap {
    position: relative;
}

.tournaments-swiper-controls {
    display: none;
}

/* ─── VIDEO ─── */
.video-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.video-block-head {
    padding: 20px 24px 0;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-top: 20px;
}

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

.demo-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
}

.demo-block-head {
    padding: 20px 24px;
}

.demo-embed {
    position: relative;
    padding-bottom: 66%;
    height: 0;
}

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

/* ─── REVIEW CONTENT ─── */
.review-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
}

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

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

.review-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.review-author-title {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

.review-author-links a {
    font-size: 0.78rem;
    color: var(--accent);
}

.review-content h2,
.review-content h3,
.review-content h4 {
    color: #fff;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.35;
}

.review-content h2 {
    font-size: 1.45rem;
}

.review-content h3 {
    font-size: 1.2rem;
}

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

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

.review-content ul {
    list-style: disc;
}

.review-content ol {
    list-style: decimal;
}

.review-content li {
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.65;
}

.review-content a {
    color: var(--accent);
    text-decoration: underline;
}

.review-content table {
    min-width: 100%;
    margin-bottom: 20px;
}

.review-content table th, .review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--card-border);
}

.review-content strong, .review-content b {
    color: #fff;
    font-weight: 600;
}

.review-content em, .review-content i {
    font-style: italic;
}

.review-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(249, 194, 60, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-muted);
    font-style: italic;
}

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

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

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

.faq-item.open {
    border-color: rgba(249, 194, 60, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    color: #fff;
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(249, 194, 60, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1rem;
    transition: transform var(--trans), background var(--trans);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #0d1520;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--hf);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    padding: 48px 20px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
}

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

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

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

.footer-providers {
    margin-bottom: 28px;
}

.footer-providers h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.providers-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    transition: background var(--trans);
}

.provider-tag:hover {
    background: rgba(249, 194, 60, 0.08);
    color: var(--accent);
}

.payments-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #6b7280;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── BOTTOM WIDGET ─── */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a2540 0%, #0d1520 100%);
    border-top: 2px solid var(--accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

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

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

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

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

/* ─── UNUSED OBFUSCATION ─── */
.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
}

.wp-block-group {
    margin: 0;
}

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

.site-content {
    position: relative;
}

.wp-post-image {
    display: block;
}

.yoast-breadcrumb {
    display: none;
}

.updated.not-listed {
    display: none;
}

.post-thumbnail {
    overflow: hidden;
}

.widget-area {
    display: none;
}

.tagcloud a {
    display: inline-block;
    padding: 4px 8px;
}

.sticky {
    position: relative;
}

.byline {
    display: none;
}

.cat-links {
    display: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.wp-caption {
    text-align: center;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8em;
    color: var(--text-muted);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-item {
    flex: 1 1 auto;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    gap: 6px;
    align-items: center;
}

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

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

.breadcrumb-sep {
    opacity: 0.5;
}

/* ─── ANIMATIONS & FADE-IN ─── */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.stagger.visible > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.stagger.visible > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
}

.stagger.visible > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}

.stagger.visible > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.stagger.visible > *:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.4s;
}

.stagger.visible > *:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-content {
        margin-left: 24px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .footer-grid {
        gap: 28px;
    }
}

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

    .burger {
        display: flex;
    }

    .mobile-nav-overlay.open {
        display: block;
    }

    .hero-slide {
        min-height: 380px;
    }

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

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

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

    .jackpots-grid {
        flex-wrap: wrap;
    }

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

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

    .tournaments-grid {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        gap: 14px;
    }

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

    .tournaments-swiper-controls {
        display: block;
        text-align: center;
        margin-top: 12px;
        color: var(--text-muted);
        font-size: 0.78rem;
    }

    .review-block {
        padding: 20px;
    }

    .mirrors-block {
        padding: 18px;
    }

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

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

    .bottom-widget {
        padding: 10px 40px 10px 16px;
    }

    .widget-text {
        font-size: 0.82rem;
    }
}

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

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }
}
