@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --bg: #0C0A0A;
    --bg-card: #161313;
    --bg-card2: #1e1b1b;
    --accent: #F5A237;
    --accent-dark: #d4891e;
    --accent-glow: rgba(245, 162, 55, 0.25);
    --btn-dark: #0C0B0B;
    --text: #F0EDE8;
    --text-muted: #9E9895;
    --text-dim: #6B6866;
    --border: rgba(245, 162, 55, 0.15);
    --border-strong: rgba(245, 162, 55, 0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 4px 20px rgba(245, 162, 55, 0.3);
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.home.page-template-default {
    background: var(--bg);
}

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

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

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

ul {
    list-style: none;
}

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

.xp3k7a {
    display: flex;
    flex-direction: column;
}

.r8f2m1 {
    position: relative;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 8px var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 24px rgba(245, 162, 55, 0.55);
    }
}

@keyframes dotBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spinOnce {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes timerTick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

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

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

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

.btn-primary {
    background: var(--accent);
    color: #0C0A0A;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 28px rgba(245, 162, 55, 0.5);
    color: #0C0A0A;
}

.btn-secondary {
    background: var(--btn-dark);
    color: var(--text);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #0C0A0A;
}

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

.btn-outline:hover {
    background: var(--accent);
    color: #0C0A0A;
}

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

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

.btn-login {
    background: var(--accent);
    color: #0C0A0A;
}

.btn-login:hover {
    background: var(--accent-dark);
    color: #0C0A0A;
}

.btn-register {
    background: var(--btn-dark);
    color: var(--text);
    border: 1.5px solid var(--border-strong);
}

.btn-register:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #0C0A0A;
}

#hdr-z9x2k {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    border-radius: 4px;
}

.nav-main {
    flex: 1;
}

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

.nav-list a {
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.nav-list a:hover {
    color: var(--accent);
    background: rgba(245, 162, 55, 0.08);
}

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

.players-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 20px;
}

.dot-online {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    flex-shrink: 0;
    animation: dotBlink 2s ease-in-out infinite;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background .2s;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.06);
}

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

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

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

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

.mobile-menu {
    display: none;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 20px 16px;
}

.mobile-menu.open {
    display: block;
    animation: fadeIn .2s ease;
}

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

.mobile-nav-list a {
    display: block;
    padding: 10px 12px;
    color: var(--text-muted);
    font-size: .95rem;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.mobile-nav-list a:hover {
    color: var(--accent);
    background: rgba(245, 162, 55, 0.07);
}

.hero-section {
    position: relative;
    min-height: 540px;
    background: url('/triumph-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 10, 10, 0.88) 0%, rgba(12, 10, 10, 0.6) 60%, rgba(12, 10, 10, 0.75) 100%);
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 620px;
    animation: fadeInUp .7s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 162, 55, 0.15);
    border: 1px solid var(--border-strong);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--text);
    text-balance: balance;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(240, 237, 232, 0.8);
    margin-bottom: 28px;
    line-height: 1.55;
}

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

.section {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text);
}

.section-title span {
    color: var(--accent);
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 40px;
}

.section-alt {
    background: var(--bg-card);
}

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

.adv-card {
    flex: 1 1 calc(33.33% - 12px);
    min-width: 220px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    animation: fadeInUp .6s ease both;
}

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

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 162, 55, 0.1);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.adv-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.winners-wrap {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

.winners-table th {
    background: rgba(245, 162, 55, 0.08);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.winners-table td {
    padding: 10px 16px;
    font-size: .9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
}

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

.winners-table tr:hover td {
    background: rgba(245, 162, 55, 0.04);
}

.winners-table .rank {
    font-weight: 700;
    color: var(--text-muted);
    font-size: .85rem;
}

.winners-table .rank-1 {
    color: #FFD700;
}

.winners-table .rank-2 {
    color: #C0C0C0;
}

.winners-table .rank-3 {
    color: #CD7F32;
}

.winners-table .amount {
    font-weight: 700;
    color: #4CAF50;
}

.winner-nick {
    font-weight: 600;
}

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

.tourn-card {
    flex: 1 1 calc(33.33% - 14px);
    min-width: 260px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s, transform .25s;
    animation: fadeInUp .6s ease both;
}

.tourn-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.tourn-badge {
    display: inline-block;
    background: rgba(245, 162, 55, 0.12);
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-strong);
    width: fit-content;
}

.tourn-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.tourn-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.tourn-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.tourn-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
}

.tourn-meta-label {
    color: var(--text-muted);
}

.tourn-meta-val {
    font-weight: 700;
    color: var(--text);
}

.tourn-meta-val.prize {
    color: var(--accent);
}

.countdown {
    font-variant-numeric: tabular-nums;
    font-size: .88rem;
    font-weight: 700;
    color: #FF6B6B;
}

.tourn-card .btn {
    margin-top: 4px;
    align-self: flex-start;
}

.app-section-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-table-wrap {
    flex: 1 1 320px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 280px;
}

.app-info-table th, .app-info-table td {
    padding: 12px 16px;
    font-size: .9rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.app-info-table th {
    background: rgba(245, 162, 55, 0.06);
    color: var(--text-muted);
    font-weight: 500;
    width: 45%;
}

.app-info-table td {
    color: var(--text);
    font-weight: 600;
}

.app-info-table tr:last-child th,
.app-info-table tr:last-child td {
    border-bottom: none;
}

.app-buttons-wrap {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.app-buttons-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s;
    text-decoration: none;
    color: var(--text);
}

.app-dl-btn:hover {
    border-color: var(--accent);
    background: rgba(245, 162, 55, 0.06);
    transform: translateX(4px);
    color: var(--text);
}

.app-dl-btn-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.app-dl-btn-text {
    display: flex;
    flex-direction: column;
}

.app-dl-btn-sub {
    font-size: .72rem;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 2px;
}

.app-dl-btn-name {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
}

.wheel-section {
    background: var(--bg-card);
}

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

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

.wheel-pointer {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 24px solid var(--accent);
    filter: drop-shadow(0 2px 4px rgba(245, 162, 55, 0.6));
    z-index: 5;
}

#fortuneWheel {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-card), 0 0 0 7px var(--border-strong), var(--shadow);
}

.wheel-controls {
    text-align: center;
    flex: 1 1 260px;
}

.wheel-controls h2 {
    margin-bottom: 10px;
}

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

#spinBtn {
    animation: glowPulse 2.5s ease-in-out infinite;
}

#spinBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
    transform: none;
}

.wheel-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    animation: fadeInUp .4s ease;
    text-align: center;
}

.wheel-result.win {
    background: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.4);
}

.wheel-result.lose {
    background: rgba(255, 107, 107, 0.06);
    border-color: rgba(255, 107, 107, 0.3);
}

.wheel-result-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.wheel-result-text {
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.wheel-result.win .wheel-result-text strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.review-section {
}

.review-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.review-content-block {
    flex: 1 1 480px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.review-content-block h2,
.review-content-block h3,
.review-content-block h4 {
    color: var(--text);
    margin: 20px 0 10px;
    line-height: 1.3;
}

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

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

.review-content-block h4 {
    font-size: 1rem;
}

.review-content-block p {
    color: rgba(240, 237, 232, 0.85);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.review-content-block ul,
.review-content-block ol {
    padding-left: 20px;
    margin-bottom: 14px;
    color: rgba(240, 237, 232, 0.85);
    font-size: .95rem;
}

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

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

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

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

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

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

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

.review-content-block table th {
    background: rgba(245, 162, 55, 0.08);
    color: var(--accent);
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--border);
    font-size: .85rem;
}

.review-content-block table td {
    padding: 9px 12px;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: .9rem;
}

.review-content-block blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin: 14px 0;
    color: var(--text-muted);
    font-style: italic;
}

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

.author-block {
    flex: 0 1 260px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-start;
    position: sticky;
    top: 80px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 162, 55, 0.1);
    border: 2px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.author-title {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--accent);
    text-decoration: none;
    margin-top: 4px;
}

.author-link:hover {
    text-decoration: underline;
}

.faq-section {
    background: var(--bg-card);
}

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

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

.faq-item.active {
    border-color: var(--border-strong);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color .2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform .25s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
}

.faq-answer p {
    font-size: .9rem;
    color: rgba(240, 237, 232, 0.8);
    line-height: 1.65;
    padding-bottom: 16px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

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

.footer-logo img {
    height: 38px;
    width: auto;
    border-radius: 4px;
    margin-bottom: 12px;
}

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

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

.footer-col-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

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

.footer-col ul a {
    font-size: .86rem;
    color: var(--text-dim);
    transition: color .2s;
}

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

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

.footer-payments-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.payment-badges, .provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-pill {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: border-color .2s, color .2s;
}

.badge-pill:hover {
    border-color: var(--border-strong);
    color: var(--text);
}

.footer-legal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 640px;
}

.footer-copyright a {
    color: var(--text-dim);
}

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

.footer-license {
    font-size: .78rem;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0e0b0b 0%, #1a1515 50%, #0e0b0b 100%);
    border-top: 1px solid var(--border-strong);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.widget-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #0C0A0A;
    font-weight: 700;
    font-size: .88rem;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .2s, transform .18s, box-shadow .18s;
    animation: glowPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.widget-cta:hover {
    background: var(--accent-dark);
    color: #0C0A0A;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
    text-decoration: none;
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}

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

.is-visible {
    animation: fadeInUp .6s ease both;
}

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

.elementor-section {
    display: block;
}

.entry-content {
    display: block;
}

.site-content {
    display: block;
}

.hentry {
    display: block;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.wp-site-blocks {
    display: block;
}

.alignwide {
    margin-left: -20px;
    margin-right: -20px;
}

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

.post-thumbnail {
    display: block;
}

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

#wpadminbar {
    display: none !important;
    height: 0 !important;
}

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

    .players-online {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hdr-right {
        gap: 8px;
    }

    .btn-login, .btn-register {
        padding: 8px 14px;
        font-size: .82rem;
    }

    .adv-card {
        flex: 1 1 calc(50% - 8px);
    }

    .hero-section {
        min-height: 420px;
    }

    .app-section-inner {
        flex-direction: column;
    }

    .review-inner {
        flex-direction: column;
    }

    .author-block {
        position: static;
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 44px 0;
    }

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

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

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

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

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

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

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

    .bottom-widget {
        padding: 8px 36px 8px 14px;
        gap: 10px;
    }

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

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

body {
    padding-bottom: 60px;
}
