
:root {
    --clr-header: #450b17;
    --clr-header-dark: #2e0710;
    --clr-btn-light: #e0e0e0;
    --clr-btn-red: #c7051d;
    --clr-btn-red-hover: #a00418;
    --clr-bg: #110d0e;
    --clr-bg-card: #1c1517;
    --clr-bg-card2: #221a1c;
    --clr-text: #f0e8ea;
    --clr-text-muted: #b09098;
    --clr-gold: #f5c542;
    --clr-gold-light: #ffd966;
    --clr-success: #2ecc71;
    --clr-warning: #f39c12;
    --clr-error: #e74c3c;
    --clr-accent: #e0e0e0;
    --clr-border: #3a1e24;
    --clr-border-light: #4e2a32;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);
    --font: 'Manrope', sans-serif;
    --transition: 0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--clr-gold);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    line-height: 1.65;
}

/* === LAYOUT === */
.x8f2a-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

.x8f2a-flex {
    display: flex;
    align-items: center;
}

.x8f2a-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.x8f2a-grid-3 {
    display: flex;
    gap: 24px;
}

.x8f2a-grid-3 > * {
    flex: 1 1 0;
}

.x8f2a-center {
    text-align: center;
}

.x8f2a-mt2 {
    margin-top: 16px;
}

.x8f2a-mt4 {
    margin-top: 32px;
}

.x8f2a-mb4 {
    margin-bottom: 32px;
}

/* Unused style placeholders for uniqualization */
.wp-post-image {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-widget-container {
    display: block;
}

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

.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

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

.size-full {
    display: block;
}

.x9k3b-hidden {
    display: none !important;
}

.x9k3b-invisible {
    visibility: hidden;
}

/* === BUTTONS === */
.btn-7k {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: none;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-7k--light {
    background: var(--clr-btn-light);
    color: #1a0a0e;
}

.btn-7k--light:hover {
    background: #fff;
    color: #110d0e;
    box-shadow: 0 0 16px rgba(224, 224, 224, 0.3);
    transform: translateY(-1px);
}

.btn-7k--red {
    background: var(--clr-btn-red);
    color: #fff;
}

.btn-7k--red:hover {
    background: var(--clr-btn-red-hover);
    color: #fff;
    box-shadow: 0 0 20px rgba(199, 5, 29, 0.5);
    transform: translateY(-1px);
}

.btn-7k--gold {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
    color: #1a0a0e;
    font-weight: 800;
}

.btn-7k--gold:hover {
    box-shadow: 0 0 24px rgba(245, 197, 66, 0.5);
    transform: translateY(-2px);
    color: #1a0a0e;
}

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

.btn-7k--sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.btn-7k--outline {
    background: transparent;
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text);
}

.btn-7k--outline:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.btn-7k--store {
    background: var(--clr-bg-card2);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none !important;
}

.btn-7k--store:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-7k--store svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* === SECTION TITLE === */
.x8f2a-section-title {
    margin-bottom: 40px;
}

.x8f2a-section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.x8f2a-section-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--clr-btn-red);
    border-radius: 2px;
}

.x8f2a-section-title.x8f2a-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.x8f2a-section-title p {
    color: var(--clr-text-muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

/* === HEADER === */
#x3m9-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

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

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

.x3m9-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

.x3m9-nav a {
    color: #f0dde0;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.x3m9-nav a:hover {
    color: var(--clr-gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.x3m9-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.78rem;
    color: #f0dde0;
    white-space: nowrap;
}

.x3m9-online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: x3m9-pulse 1.8s infinite;
    flex-shrink: 0;
}

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

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

.x3m9-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f0dde0;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* === MOBILE MENU === */
.x3m9-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header-dark);
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 8px;
    overflow-y: auto;
}

.x3m9-mobile-menu.active {
    display: flex;
}

.x3m9-mobile-menu a {
    color: #f0dde0;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.x3m9-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-gold);
}

.x3m9-mobile-menu-btns {
    display: flex;
    gap: 10px;
    padding-top: 16px;
}

.x3m9-mobile-menu-btns .btn-7k {
    flex: 1;
    justify-content: center;
}

/* === HERO === */
#x4h7-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

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

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

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

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

.x4h7-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(199, 5, 29, 0.2);
    border: 1px solid rgba(199, 5, 29, 0.4);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff6b7a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.x4h7-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.x4h7-hero-content h1 span {
    color: var(--clr-gold);
}

.x4h7-hero-desc {
    font-size: 1.05rem;
    color: #d4c0c4;
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.x4h7-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.x4h7-hero-stat {
    display: flex;
    flex-direction: column;
}

.x4h7-hero-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.x4h7-hero-stat span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* === ADVANTAGES === */
#x5p2-advantages {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #160f11 100%);
}

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

.x5p2-card {
    flex: 1 1 240px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.x5p2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-btn-red), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.x5p2-card:hover {
    border-color: var(--clr-border-light);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.x5p2-card:hover::before {
    opacity: 1;
}

.x5p2-icon {
    width: 48px;
    height: 48px;
    background: rgba(199, 5, 29, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

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

.x5p2-card p {
    font-size: 0.87rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* === TOURNAMENTS === */
#x6t4-tournaments {
    background: var(--clr-bg);
}

.x6t4-slider {
    display: flex;
    gap: 24px;
}

.x6t4-card {
    flex: 1 1 0;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.x6t4-card:hover {
    border-color: var(--clr-border-light);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.x6t4-card-header {
    background: linear-gradient(135deg, var(--clr-header) 0%, #6b1226 100%);
    padding: 20px;
    position: relative;
}

.x6t4-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.x6t4-card-num {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.x6t4-card-header h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

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

.x6t4-card-desc {
    font-size: 0.87rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.x6t4-prize {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.x6t4-prize-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.x6t4-prize-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.x6t4-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.x6t4-timer-value {
    font-weight: 700;
    color: #ff6b7a;
    font-variant-numeric: tabular-nums;
}

.x6t4-card-footer {
    padding: 0 20px 20px;
}

/* === APP INFO === */
#x7a3-app {
    background: linear-gradient(180deg, #160f11 0%, var(--clr-bg) 100%);
}

.x7a3-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.x7a3-info {
    flex: 1;
}

.x7a3-visual {
    flex-shrink: 0;
    width: 280px;
    position: relative;
}

.x7a3-phone-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.x7a3-phone-screen {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.x7a3-phone-screen img {
    width: 100%;
    border-radius: 14px;
}

.x7a3-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.x7a3-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 360px;
}

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

.x7a3-table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: var(--clr-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.x7a3-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.x7a3-table td:first-child {
    color: var(--clr-text-muted);
    font-size: 0.87rem;
}

.x7a3-table td:last-child {
    font-weight: 600;
    color: var(--clr-text);
}

.x7a3-dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === BONUSES === */
#x8b5-bonuses {
    background: var(--clr-bg);
}

.x8b5-slider {
    display: flex;
    gap: 24px;
}

.x8b5-card {
    flex: 1 1 0;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.x8b5-card:hover {
    border-color: var(--clr-border-light);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.x8b5-card-top {
    padding: 24px 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.x8b5-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.x8b5-card-icon--1 {
    background: rgba(199, 5, 29, 0.15);
}

.x8b5-card-icon--2 {
    background: rgba(245, 197, 66, 0.12);
}

.x8b5-card-icon--3 {
    background: rgba(46, 204, 113, 0.12);
}

.x8b5-card-meta {
    flex: 1;
}

.x8b5-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(199, 5, 29, 0.2);
    color: #ff6b7a;
    margin-bottom: 6px;
}

.x8b5-card-meta h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.x8b5-card-body {
    padding: 16px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.x8b5-card-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1;
}

.x8b5-card-amount small {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.x8b5-card-desc {
    font-size: 0.87rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

/* === WHEEL OF FORTUNE === */
#x9w6-wheel {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #0d0a0b 100%);
}

.x9w6-inner {
    display: flex;
    gap: 48px;
    align-items: center;
}

.x9w6-left {
    flex: 1;
}

.x9w6-left h2 {
    margin-bottom: 12px;
}

.x9w6-left p {
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.x9w6-wheel-wrap {
    position: relative;
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.x9w6-wheel-canvas-wrap {
    position: relative;
}

#x9w6-canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(199, 5, 29, 0.3), 0 0 80px rgba(0, 0, 0, 0.8);
}

.x9w6-arrow {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--clr-gold);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.x9w6-spin-btn {
    width: 100%;
}

#x9w6-result {
    display: none;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    animation: x9w6-fadeIn 0.4s ease;
    width: 100%;
}

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

#x9w6-result.win {
    border-color: rgba(245, 197, 66, 0.4);
    background: rgba(245, 197, 66, 0.06);
}

#x9w6-result.lose {
    border-color: rgba(199, 5, 29, 0.3);
}

#x9w6-result-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

#x9w6-result-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

/* === FAQ === */
#xa1f-faq {
    background: linear-gradient(180deg, #0d0a0b 0%, var(--clr-bg) 100%);
}

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

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

.xa1f-item.active {
    border-color: var(--clr-border-light);
}

.xa1f-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
    transition: color var(--transition);
}

.xa1f-question:hover {
    color: var(--clr-gold);
}

.xa1f-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform var(--transition);
}

.xa1f-item.active .xa1f-chevron {
    transform: rotate(180deg);
}

.xa1f-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.xa1f-item.active .xa1f-answer {
    max-height: 500px;
}

.xa1f-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* === CONTENT BLOCK === */
#xb2c-content {
    background: var(--clr-bg);
}

.xb2c-author {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 32px;
}

.xb2c-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-btn-red);
    flex-shrink: 0;
}

.xb2c-author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.xb2c-author-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.xb2c-author-info a {
    color: var(--clr-gold);
    font-size: 0.78rem;
}

/* Bare content styles */
.xb2c-text h2, .xb2c-text h3, .xb2c-text h4 {
    margin: 28px 0 12px;
}

.xb2c-text h2 {
    font-size: 1.4rem;
}

.xb2c-text h3 {
    font-size: 1.15rem;
    color: var(--clr-text);
}

.xb2c-text p {
    margin-bottom: 14px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.xb2c-text a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.xb2c-text ul, .xb2c-text ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.xb2c-text ul {
    list-style: disc;
}

.xb2c-text ol {
    list-style: decimal;
}

.xb2c-text li {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.65;
}

.xb2c-text strong, .xb2c-text b {
    color: var(--clr-text);
    font-weight: 700;
}

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

.xb2c-text blockquote {
    border-left: 3px solid var(--clr-btn-red);
    padding: 12px 20px;
    background: var(--clr-bg-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

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

.xb2c-text table th,
.xb2c-text table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.xb2c-text table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: var(--clr-text);
}

.xb2c-text table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.xb2c-text hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0;
}

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

/* === FOOTER === */
#xc3f-footer {
    background: var(--clr-header-dark);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
}

.xc3f-top {
    display: flex;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border);
    flex-wrap: wrap;
}

.xc3f-brand {
    flex: 1 1 220px;
}

.xc3f-logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.xc3f-brand p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.xc3f-license {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.xc3f-col {
    flex: 1 1 150px;
}

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

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

.xc3f-col ul li a {
    font-size: 0.87rem;
    color: #c0a8ae;
    transition: color var(--transition);
}

.xc3f-col ul li a:hover {
    color: var(--clr-gold);
}

.xc3f-logos-row {
    padding: 28px 0;
    border-bottom: 1px solid var(--clr-border);
}

.xc3f-logos-row h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    font-weight: 700;
    margin-bottom: 14px;
}

.xc3f-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.xc3f-logo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.xc3f-logo-badge:hover {
    border-color: var(--clr-border-light);
    color: var(--clr-text);
}

.xc3f-bottom {
    padding-top: 24px;
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.xc3f-copyright {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.xc3f-legal {
    font-size: 0.78rem;
    color: #6b4f55;
    line-height: 1.7;
}

/* === STICKY WIDGET === */
#xd4w-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, var(--clr-header) 0%, #6b1226 100%);
    border-top: 1px solid rgba(199, 5, 29, 0.4);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

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

.xd4w-text {
    flex: 1;
}

.xd4w-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.xd4w-text span {
    font-size: 0.78rem;
    color: var(--clr-gold);
    font-weight: 600;
}

.xd4w-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: color var(--transition);
    flex-shrink: 0;
}

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

.xd4w-btn {
    flex-shrink: 0;
}

body {
    padding-bottom: 64px;
}

body.xd4w-hidden {
    padding-bottom: 0;
}

#xd4w-widget.xd4w-gone {
    display: none;
}

/* === SECTION DIVIDERS === */
.x8f2a-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 0;
}

/* === ANIMATION === */
@keyframes xfade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xanimate {
    animation: xfade-in-up 0.5s ease both;
}

.xanimate--d1 {
    animation-delay: 0.1s;
}

.xanimate--d2 {
    animation-delay: 0.2s;
}

.xanimate--d3 {
    animation-delay: 0.3s;
}

/* === SLIDER MOBILE === */
.x6t4-slider-wrap, .x8b5-slider-wrap {
    position: relative;
}

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

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

.x8f2a-breadcrumb a:hover {
    color: var(--clr-gold);
}

.x8f2a-breadcrumb span {
    color: #4e2a32;
}

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

    .x3m9-burger {
        display: flex;
    }

    .x6t4-slider {
        flex-direction: column;
        gap: 16px;
    }

    .x8b5-slider {
        flex-direction: column;
        gap: 16px;
    }

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

    .x7a3-visual {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .x9w6-wheel-wrap {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .x4h7-hero-content {
        max-width: 100%;
    }

    .x5p2-grid {
    }
}

@media (max-width: 767px) {
    .x8f2a-section {
        padding: 40px 0;
    }

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

    .x4h7-hero-btns {
        flex-direction: column;
    }

    .x4h7-hero-btns .btn-7k {
        width: 100%;
        justify-content: center;
    }

    .x4h7-hero-stats {
        gap: 20px;
    }

    .x7a3-dl-btns {
        flex-direction: column;
    }

    .x7a3-dl-btns .btn-7k--store {
        justify-content: center;
    }

    .xd4w-text strong {
        font-size: 0.82rem;
    }

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

@media (max-width: 479px) {
    #x9w6-canvas {
        width: 280px !important;
        height: 280px !important;
    }

    .x9w6-wheel-wrap {
        max-width: 280px;
    }
}

/* WordPress-like meta classes for fingerprinting */
.wp-site-blocks {
    display: block;
}

.has-global-padding {
    padding: inherit;
}

.is-layout-constrained {
    max-width: inherit;
}

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

.entry-meta {
    font-size: 0.85rem;
}

.cat-links {
    display: inline;
}

.posted-on {
    display: inline;
}

.yoast-schema-graph {
    display: none;
}

/* elementor dummy classes */
.elementor-section {
    display: block;
}

.elementor-column {
    display: block;
}

.elementor-widget-text-editor {
    display: block;
}

/* theme dummy asset references */
.x-asset-1 {
    background-image: url('/wp-content/themes/7k/assets/bg-pattern.png');
}

.x-asset-2 {
    content: url('/wp-content/themes/7k/assets/sprite.svg');
}

.ygdbd {
    background: #1c1517;
    border: 1px solid #3a1e24;
    border-radius: 18px;
    padding: 44px 52px;
    max-width: 1100px;
    margin: 40px auto;
    color: #f0e8ea;
    font-size: 16px;
    line-height: 1.75;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}

.ygdbd h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #fff;
}

.ygdbd h2 {
    font-size: 24px;
    margin: 28px 0 12px;
    color: #f5c542;
}

.ygdbd p {
    margin-bottom: 16px;
    color: #b09098;
}

.ygdbd a {
    color: #f5c542;
}

.ygdbd a:hover {
    color: #ffd966;
}

@media (max-width: 768px) {
    .ygdbd {
        padding: 24px 18px;
        margin: 20px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .ygdbd h1 {
        font-size: 24px;
    }

    .ygdbd h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ygdbd {
        padding: 18px 14px;
        margin: 16px 8px;
        font-size: 14px;
    }

    .ygdbd h1 {
        font-size: 20px;
    }

    .ygdbd h2 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #x6t4-tournaments {
        padding: 40px 0;
    }

    #x6t4-tournaments .x8f2a-section-title {
        text-align: center;
        margin-bottom: 24px;
    }

    #x6t4-tournaments .x8f2a-section-title h2 {
        font-size: 22px;
    }

    #x6t4-tournaments .x8f2a-section-title p {
        font-size: 14px;
    }

    .x6t4-slider {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .x6t4-slider::-webkit-scrollbar {
        display: none;
    }

    .x6t4-card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    .x6t4-card-header {
        padding: 16px;
    }

    .x6t4-card-header h3 {
        font-size: 16px;
    }

    .x6t4-card-body {
        padding: 16px;
        gap: 12px;
    }

    .x6t4-card-desc {
        font-size: 13px;
    }

    .x6t4-prize {
        padding: 10px;
    }

    .x6t4-prize-amount {
        font-size: 18px;
    }

    .x6t4-timer {
        font-size: 12px;
    }

    .x6t4-card-footer {
        padding: 0 16px 16px;
    }

    .x6t4-card-footer .btn-7k {
        width: 100%;
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .x6t4-card {
        min-width: 92%;
    }

    .x6t4-card-header h3 {
        font-size: 14px;
    }

    .x6t4-card-desc {
        font-size: 12px;
    }

    .x6t4-prize-amount {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #x8b5-bonuses {
        padding: 40px 0;
    }

    #x8b5-bonuses .x8f2a-section-title {
        text-align: center;
        margin-bottom: 24px;
    }

    #x8b5-bonuses .x8f2a-section-title h2 {
        font-size: 22px;
    }

    #x8b5-bonuses .x8f2a-section-title p {
        font-size: 14px;
    }

    .x8b5-slider {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .x8b5-slider::-webkit-scrollbar {
        display: none;
    }

    .x8b5-card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 16px;
        padding: 16px;
    }

    .x8b5-card-top {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .x8b5-card-icon {
        font-size: 20px;
    }

    .x8b5-card-meta h3 {
        font-size: 15px;
    }

    .x8b5-card-tag {
        font-size: 11px;
    }

    .x8b5-card-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .x8b5-card-amount {
        font-size: 20px;
    }

    .x8b5-card-amount small {
        font-size: 12px;
    }

    .x8b5-card-desc {
        font-size: 13px;
    }

    .x8b5-card .btn-7k {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .x8b5-card {
        min-width: 92%;
    }

    .x8b5-card-meta h3 {
        font-size: 14px;
    }

    .x8b5-card-desc {
        font-size: 12px;
    }

    .x8b5-card-amount {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #tournaments {
        padding: 40px 0;
    }

    #tournaments .section-title {
        text-align: center;
        margin-bottom: 24px;
    }

    #tournaments .section-title h2 {
        font-size: 22px;
    }

    #tournaments .section-title p {
        font-size: 14px;
        color: #9aa3b2;
    }

    .tournaments-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 14px 10px;
        scroll-snap-type: x mandatory;
    }

    .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    .tournament-card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        background: linear-gradient(160deg, #1a2236, #141b2b);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .tournament-card-header {
        padding: 14px 16px;
        background: linear-gradient(90deg, #8b0c1c, #5c0712);
    }

    .tournament-card-header span {
        font-size: 11px;
        letter-spacing: .6px;
        color: #ffb3b3;
        display: block;
        margin-bottom: 4px;
    }

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

    .tournament-card-body {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tournament-desc {
        font-size: 13px;
        color: #9aa3b2;
        line-height: 1.5;
    }

    .tournament-prize {
        background: linear-gradient(135deg, #3b2a16, #2a1e0f);
        border-radius: 10px;
        padding: 12px;
        border: 1px solid rgba(255, 180, 0, 0.2);
    }

    .tournament-prize span {
        font-size: 11px;
        color: #c9a86a;
        display: block;
        margin-bottom: 4px;
    }

    .tournament-prize strong {
        font-size: 18px;
        color: #ffd36a;
    }

    .tournament-timer {
        font-size: 12px;
        color: #ff5c5c;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .tournament-card-footer {
        padding: 0 16px 16px;
    }

    .tournament-card-footer .btn {
        width: 100%;
        background: #e50914;
        color: #fff;
        font-size: 14px;
        padding: 12px;
        border-radius: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tournament-card {
        min-width: 92%;
    }

    .tournament-card-header h3 {
        font-size: 14px;
    }

    .tournament-desc {
        font-size: 12px;
    }

    .tournament-prize strong {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tournaments-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 12px 10px;
        scroll-snap-type: x mandatory;
    }

    .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    .tournament-card {
        min-width: 80%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 12px;
        overflow: hidden;
    }

    .tournament-card-header {
        padding: 10px 12px;
    }

    .tournament-card-header span {
        font-size: 10px;
    }

    .tournament-card-header h3 {
        font-size: 14px;
        line-height: 1.2;
    }

    .tournament-card-body {
        padding: 12px;
        gap: 8px;
    }

    .tournament-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .tournament-prize {
        padding: 8px;
        border-radius: 8px;
    }

    .tournament-prize span {
        font-size: 10px;
    }

    .tournament-prize strong {
        font-size: 15px;
    }

    .tournament-timer {
        font-size: 11px;
    }

    .tournament-card-footer {
        padding: 0 12px 12px;
    }

    .tournament-card-footer .btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .tournament-card {
        min-width: 85%;
    }

    .tournament-card-header h3 {
        font-size: 13px;
    }

    .tournament-desc {
        font-size: 11px;
    }

    .tournament-prize strong {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #tournaments,
    .tournaments,
    .tournaments-section {
        padding: 28px 0 !important;
        overflow: hidden !important;
    }

    #tournaments .container,
    #tournaments .container-wrap,
    #tournaments .section-inner {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    #tournaments .row,
    #tournaments .tournaments-grid,
    #tournaments .tournaments-list,
    #tournaments .cards-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 10px !important;
        scroll-snap-type: x mandatory !important;
    }

    #tournaments .row > *,
    #tournaments .tournament-card,
    #tournaments .card,
    #tournaments article {
        width: 210px !important;
        min-width: 210px !important;
        max-width: 210px !important;
        flex: 0 0 210px !important;
        scroll-snap-align: start !important;
    }

    #tournaments .tournament-card,
    #tournaments .card,
    #tournaments article {
        padding: 12px !important;
        border-radius: 12px !important;
        min-height: auto !important;
        height: auto !important;
    }

    #tournaments h2 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    #tournaments h3,
    #tournaments .card-title {
        font-size: 14px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    #tournaments p,
    #tournaments .card-text,
    #tournaments .tournament-desc {
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }

    #tournaments .btn,
    #tournaments a[class*="btn"] {
        width: 100% !important;
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }
}

.nx-tournaments {
    padding: 60px 0;
    background: var(--clr-bg);
}

.nx-head h2 {
    font-size: 28px;
    color: var(--clr-text);
}

.nx-head p {
    color: var(--clr-text-muted);
}

.nx-t-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
}

.nx-card {
    position: relative;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
}

.nx-card:hover {
    border-color: var(--clr-border-light);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.nx-card h3 {
    font-size: 1.1rem;
    color: #fff;
}

.nx-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.nx-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(199, 5, 29, 0.2);
    color: #ff6b7a;
    font-weight: 700;
}

.nx-badge.live {
    background: rgba(46, 204, 113, 0.2);
    color: var(--clr-success);
}

.nx-badge.new {
    background: rgba(245, 197, 66, 0.2);
    color: var(--clr-gold);
}

.nx-prize {
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.nx-prize span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.nx-prize strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.nx-timer {
    font-size: 0.85rem;
    color: #ff6b7a;
    font-weight: 600;
}

.nx-btn {
    margin-top: auto;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--clr-btn-red);
    color: #fff;
    font-weight: 700;
    transition: var(--transition);
}

.nx-btn:hover {
    background: var(--clr-btn-red-hover);
    box-shadow: 0 0 16px rgba(199, 5, 29, 0.5);
    transform: translateY(-1px);
}

@media (max-width: 768px) {

    .nx-t-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .nx-t-grid::-webkit-scrollbar {
        display: none;
    }

    .nx-card {
        min-width: 240px;
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 16px;
    }

    .nx-card h3 {
        font-size: 15px;
    }

    .nx-card p {
        font-size: 12px;
    }

    .nx-prize strong {
        font-size: 16px;
    }

    .nx-btn {
        font-size: 13px;
        padding: 10px;
    }
}

@media (min-width: 1024px) {
    .nx-tournaments {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nx-tournaments .nx-t-grid {
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 1400px) {
    .nx-tournaments {
        padding-left: 80px;
        padding-right: 80px;
    }

    .nx-tournaments .nx-t-grid {
        max-width: 1300px;
    }
}