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

:root {
    --clr-bg: #231336;
    --clr-bg-alt: #1a0d28;
    --clr-bg-card: #2e1a45;
    --clr-bg-card2: #341e4e;
    --clr-header: #000000;
    --clr-primary: #CC297E;
    --clr-primary-hover: #e0318c;
    --clr-secondary: #000000;
    --clr-text: #f0eaf8;
    --clr-text-muted: #b8a8d0;
    --clr-text-dark: #7a6890;
    --clr-border: #3d2460;
    --clr-border-bright: #CC297E;
    --clr-gold: #f7c948;
    --clr-green: #2ecc71;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 32px rgba(204, 41, 126, 0.10);
    --shadow-btn: 0 2px 12px rgba(204, 41, 126, 0.25);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Montserrat', Arial, sans-serif;
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.x9q2r {
    display: none;
}

.wp-block-legacy-widget {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: .875em;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

.box {
    border-radius: var(--radius-md);
}

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

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

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: .03em;
}

.btn:active {
    transform: scale(.97);
}

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

.btn--primary:hover {
    background: var(--clr-primary-hover);
    box-shadow: 0 4px 20px rgba(204, 41, 126, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--clr-secondary);
    color: #fff;
    border: 1px solid #2a2a2a;
}

.btn--secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-1px);
}

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

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

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.badge--pink {
    background: rgba(204, 41, 126, .18);
    color: var(--clr-primary);
}

.badge--gold {
    background: rgba(247, 201, 72, .12);
    color: var(--clr-gold);
}

.badge--green {
    background: rgba(46, 204, 113, .12);
    color: var(--clr-green);
}

/* HEADER */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.header-nav a {
    color: #ccc;
    font-size: .85rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.header-nav a.active {
    color: var(--clr-primary);
}

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

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 4px var(--clr-green);
    }
    50% {
        box-shadow: 0 0 10px var(--clr-green), 0 0 20px rgba(46, 204, 113, .3);
    }
}

.online-count {
    color: var(--clr-green);
    font-weight: 700;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, .08);
}

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

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 16px 20px 20px;
    gap: 4px;
    animation: slideDown .25s ease;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #ccc;
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    border-bottom: 1px solid #1a1a1a;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

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

/* HERO */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg-alt);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/r4w-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45) saturate(1.2);
    z-index: 0;
    transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 19, 54, .95) 0%, rgba(35, 19, 54, .5) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 70px 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 41, 126, .15);
    border: 1px solid rgba(204, 41, 126, .3);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-title .hl {
    color: var(--clr-primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-primary);
}

.hero-stat-lbl {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* CONTENT MAIN */
.main-content {
    flex: 1;
}

/* INFO TABLE */
.info-table-wrap {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 48px;
}

.info-table-head {
    background: linear-gradient(90deg, #1a0d28 0%, #2e1a45 100%);
    padding: 20px 28px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-table-head h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-text);
    margin: 0;
}

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

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

.info-table tr {
    border-bottom: 1px solid rgba(61, 36, 96, .6);
}

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

.info-table tr:hover {
    background: rgba(204, 41, 126, .04);
}

.info-table td {
    padding: 13px 28px;
    font-size: .88rem;
    vertical-align: top;
    line-height: 1.5;
}

.info-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 200px;
    white-space: nowrap;
    border-right: 1px solid rgba(61, 36, 96, .5);
}

.info-table td:last-child {
    color: var(--clr-text);
}

.info-table .rating-stars {
    color: var(--clr-gold);
    letter-spacing: 2px;
}

/* TOURNAMENTS */
.tournaments-section {
    margin-bottom: 48px;
}

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

.tournament-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(204, 41, 126, .2);
    border-color: rgba(204, 41, 126, .4);
}

.t-card-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.t-card-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-text);
}

.t-card-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.t-card-prize {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--clr-gold);
}

.t-card-prize-lbl {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

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

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

.timer-unit {
    background: rgba(204, 41, 126, .12);
    border: 1px solid rgba(204, 41, 126, .2);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-primary);
    min-width: 36px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.timer-sep {
    color: var(--clr-primary);
    font-weight: 700;
    align-self: center;
    font-size: .9rem;
}

.tournaments-slider {
    display: none;
}

/* VIDEO */
.video-section {
    margin-bottom: 48px;
}

.video-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-header {
    padding: 20px 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-header h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-text);
    margin: 0;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

/* WHEEL */
.wheel-section {
    margin-bottom: 48px;
}

.wheel-container {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.wheel-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.wheel-header p {
    color: var(--clr-text-muted);
    font-size: .9rem;
}

.wheel-canvas-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-primary);
    filter: drop-shadow(0 2px 6px rgba(204, 41, 126, .5));
    z-index: 10;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(204, 41, 126, .3), 0 0 0 4px var(--clr-border);
    cursor: pointer;
    transition: box-shadow var(--transition);
}

#wheelCanvas:hover {
    box-shadow: 0 0 60px rgba(204, 41, 126, .4), 0 0 0 4px rgba(204, 41, 126, .4);
}

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

.wheel-result-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-gold);
    animation: fadeInUp .4s ease;
}

.wheel-result-sub {
    font-size: .9rem;
    color: var(--clr-text-muted);
    animation: fadeInUp .4s ease .1s both;
}

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

/* REVIEW CONTENT */
.review-section {
    margin-bottom: 48px;
}

.review-block {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-card);
}

.review-block h1,
.review-block h2,
.review-block h3,
.review-block h4,
.review-block h5,
.review-block h6 {
    color: var(--clr-text);
    margin-bottom: 14px;
    margin-top: 28px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.review-block h1 {
    font-size: 1.8rem;
}

.review-block h2 {
    font-size: 1.4rem;
    color: var(--clr-primary);
}

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

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

.review-block p {
    margin-bottom: 16px;
    color: var(--clr-text);
    line-height: 1.75;
}

.review-block ul, .review-block ol {
    margin: 16px 0 20px 24px;
}

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

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

.review-block li {
    margin-bottom: 8px;
    color: var(--clr-text);
    line-height: 1.6;
}

.review-block a {
    color: var(--clr-primary);
    border-bottom: 1px solid rgba(204, 41, 126, .3);
}

.review-block a:hover {
    border-color: var(--clr-primary);
}

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

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

.review-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(204, 41, 126, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    text-align: left;
    overflow-x: auto;
    display: block;
}

.review-block table th {
    background: rgba(204, 41, 126, .12);
    color: var(--clr-text);
    padding: 10px 14px;
    font-weight: 700;
    border: 1px solid var(--clr-border);
    font-size: .88rem;
}

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

.review-block table tr:nth-child(even) {
    background: rgba(255, 255, 255, .03);
}

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

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

.review-block code {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: .85em;
    color: var(--clr-primary);
}

.review-block pre {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    overflow-x: auto;
    margin: 16px 0;
}

/* AUTHOR */
.author-section {
    margin-bottom: 48px;
}

.author-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
}

.author-avatar {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(204, 41, 126, .15);
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: .72rem;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.author-title {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.author-bio {
    font-size: .88rem;
    color: var(--clr-text);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.author-link:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: rgba(204, 41, 126, .07);
}

/* FOOTER */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid #1a1a1a;
    margin-top: auto;
    padding: 48px 0 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

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

.footer-desc {
    font-size: .82rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col {
    min-width: 160px;
}

.footer-col-title {
    font-size: .78rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

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

.footer-nav a {
    color: #888;
    font-size: .84rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-logos {
    padding: 24px 0;
    border-bottom: 1px solid #1a1a1a;
}

.footer-logos-title {
    font-size: .72rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

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

.footer-logo-chip {
    background: #111;
    border: 1px solid #222;
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .72rem;
    color: #666;
    font-weight: 600;
    transition: border-color var(--transition), color var(--transition);
}

.footer-logo-chip:hover {
    border-color: #444;
    color: #999;
}

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

.footer-copyright {
    font-size: .76rem;
    color: #444;
    line-height: 1.6;
    max-width: 700px;
}

.footer-copyright strong {
    color: #666;
}

.footer-age {
    font-size: .9rem;
    font-weight: 700;
    color: #555;
}

.footer-links-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links-row a {
    font-size: .76rem;
    color: #444;
    transition: color var(--transition);
}

.footer-links-row a:hover {
    color: #888;
}

/* WIDGET */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0d0d0d 0%, #1a001a 50%, #0d0d0d 100%);
    border-top: 1px solid rgba(204, 41, 126, .3);
    z-index: 900;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .5);
    animation: slideUp .4s ease .5s both;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.widget-text {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.widget-text span {
    color: var(--clr-gold);
}

.widget-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
    line-height: 1;
}

.widget-close:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* ICONS INLINE SVG HELPERS */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

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

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

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

.breadcrumb-sep {
    color: var(--clr-border);
}

.breadcrumb span {
    color: var(--clr-primary);
    font-weight: 600;
}

/* INFO PAGE */
.info-page-content {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-card);
    margin: 32px 0 48px;
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--clr-text);
}

.info-page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 24px 0 10px;
}

.info-page-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

.info-page-content p {
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.75;
    font-size: .92rem;
}

.info-page-content ul, .info-page-content ol {
    margin: 12px 0 18px 24px;
}

.info-page-content ul {
    list-style: disc;
}

.info-page-content ol {
    list-style: decimal;
}

.info-page-content li {
    margin-bottom: 7px;
    color: var(--clr-text);
    font-size: .9rem;
    line-height: 1.6;
}

.info-page-content a {
    color: var(--clr-primary);
}

.info-page-content a:hover {
    color: var(--clr-primary-hover);
}

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

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

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: .9rem;
}

.info-page-content table td, .info-page-content table th {
    padding: 11px 16px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
}

.info-page-content table th {
    background: rgba(204, 41, 126, .12);
    font-weight: 700;
    color: var(--clr-primary);
}

.info-page-content table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 40%;
}

.info-page-content table td:last-child {
    color: var(--clr-text);
}

.info-page-content table tr:nth-child(even) {
    background: rgba(255, 255, 255, .02);
}

.info-page-content table tr:hover {
    background: rgba(204, 41, 126, .04);
}

/* FAQ */
.faq-section {
    margin-bottom: 48px;
}

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

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

.faq-item.open {
    border-color: rgba(204, 41, 126, .4);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-q-text {
    font-size: .92rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: .9rem;
    font-weight: 700;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
    border-color: var(--clr-primary);
    background: rgba(204, 41, 126, .12);
    color: var(--clr-primary);
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeInUp .2s ease;
}

@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-nav {
        gap: 2px;
    }

    .header-nav a {
        font-size: .8rem;
        padding: 6px 9px;
    }
}

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

    .header-online {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

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

    .hero-stats {
        gap: 20px;
    }

    .tournaments-grid {
        display: none;
    }

    .tournaments-slider {
        display: block;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .author-links {
        justify-content: center;
    }

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

    .info-table td {
        padding: 10px 16px;
    }

    .info-table td:first-child {
        width: 150px;
    }

    .footer-top {
        gap: 24px;
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 10px 48px 10px 16px;
        gap: 8px;
    }

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

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

@media (max-width: 480px) {
    .tournaments-grid {
        grid-template-columns: 1fr;
    }

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

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

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

.swiper-tournament .swiper-slide {
    height: auto;
}

.swiper-tournament .tournament-card {
    height: 100%;
}

.swiper-pagination-bullet {
    background: var(--clr-border) !important;
}

.swiper-pagination-bullet-active {
    background: var(--clr-primary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--clr-primary) !important;
    width: 34px !important;
    height: 34px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 700 !important;
}

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

.wp-caption-text {
    font-size: .85em;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 4px;
}

.alignleft {
    float: left;
    margin: 0 16px 8px 0;
}

.alignright {
    float: right;
    margin: 0 0 8px 16px;
}

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

.sticky-post-label {
    display: none;
}

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

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

.entry-content {
    display: contents;
}

@media (max-width: 768px) {

    html {
        font-size: 15px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

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

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

    .section-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
    }

    .btn--lg {
        padding: 16px 20px;
    }

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

    .hero-overlay {
        background: linear-gradient(to top, rgba(35, 19, 54, .96), rgba(35, 19, 54, .72));
    }

    .hero-content {
        max-width: 100%;
        padding: 56px 0 42px;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 15px;
        margin: 18px auto 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 16px;
        text-align: center;
        margin-top: 30px;
        padding-top: 24px;
    }

    .hero-stat-num {
        font-size: 24px;
    }

    .breadcrumb {
        display: none;
    }

    .info-table-wrap {
        border-radius: 16px;
    }

    .info-table {
        min-width: 700px;
    }

    .info-table td {
        padding: 12px 16px;
        font-size: 14px;
    }

    .info-table-head {
        padding: 18px;
    }

    .info-table-head h2 {
        font-size: 18px;
    }

    .tournaments-grid {
        display: grid !important;
        grid-template-columns:1fr;
        gap: 18px;
    }

    .tournaments-slider {
        display: none !important;
    }

    .tournament-card {
        padding: 20px;
    }

    .t-card-name {
        font-size: 20px;
    }

    .t-card-prize {
        font-size: 28px;
    }

    .review-block {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .review-block h1 {
        font-size: 30px;
    }

    .review-block h2 {
        font-size: 24px;
    }

    .review-block h3 {
        font-size: 20px;
    }

    .review-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .review-block img {
        width: 100%;
        height: auto;
    }

    .wheel-container {
        padding: 22px 16px;
    }

    #wheelCanvas {
        width: 280px !important;
        height: 280px !important;
        max-width: 100%;
    }

    .faq-q {
        padding: 16px;
    }

    .faq-q-text {
        font-size: 15px;
    }

    .faq-a {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    .author-card {
        padding: 22px 18px;
        text-align: center;
    }

    .author-avatar {
        width: 84px;
        height: 84px;
        margin: 0 auto;
    }

    .author-links {
        justify-content: center;
    }

    .footer-top {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .sticky-widget {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        border-radius: 16px;
        padding: 14px;
        justify-content: center;
        text-align: center;
    }

    .widget-text {
        white-space: normal;
        font-size: 14px;
    }

    iframe {
        max-width: 100%;
        height: auto;
    }

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

    table {
        display: block;
        overflow-x: auto;
    }

}

@media (max-width: 480px) {

    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns:1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

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

    #wheelCanvas {
        width: 240px !important;
        height: 240px !important;
    }

    .info-table td {
        font-size: 13px;
        padding: 10px 12px;
    }

    .review-block {
        padding: 18px 14px;
    }

    .review-block h1 {
        font-size: 26px;
    }

    .review-block h2 {
        font-size: 22px;
    }

    .review-block h3 {
        font-size: 18px;
    }

    .author-card {
        padding: 18px 14px;
    }

    .sticky-widget {
        padding: 12px;
    }

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

    .btn {
        font-size: 15px;
    }
}