
:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-footer: #000000;
    --clr-accent: #FFDD00;
    --clr-accent2: #FFE533;
    --clr-text: #FFFFFF;
    --clr-text-muted: #b0b0b0;
    --clr-card: #252525;
    --clr-card2: #2a2a2a;
    --clr-border: #333333;
    --clr-input: #1a1a1a;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    opacity: 0.85;
}

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

/* ========== PRELOADER ========== */
#xp8k2-preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

#xp8k2-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

#xp8k2-preloader .spin {
    width: 48px;
    height: 48px;
    border: 4px solid #333;
    border-top-color: var(--clr-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

.header-logo a {
    display: flex;
    align-items: center;
}

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

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

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

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

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

.header-online {
    font-size: 11px;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 8px;
    white-space: nowrap;
}

.header-online .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

/* Buttons */
.btn-login {
    background: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    border-radius: 8px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

.btn-signup {
    background: var(--clr-accent);
    color: #000;
    border: 2px solid var(--clr-accent);
    border-radius: 8px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background: var(--clr-accent2);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

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

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

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

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: 1px solid #222;
    display: block;
}

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

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

/* ========== HERO ========== */
#xhero-section {
    position: relative;
    overflow: hidden;
    height: 480px;
    min-height: 320px;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

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

.hero-content h1 {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 22px;
    line-height: 1.6;
}

.hero-btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 32px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 221, 0, 0.5);
    color: #000;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-dots button.active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

/* ========== BREADCRUMBS ========== */
#breadcrumbs-block {
    background: #111;
    border-bottom: 1px solid #222;
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

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

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

.breadcrumbs .sep {
    color: #444;
}

.breadcrumbs .current {
    color: #fff;
}

/* ========== SECTIONS ========== */
.section-wrap {
    padding: 48px 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

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

/* ========== INFO TABLE ========== */
.info-table-wrap {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 500px;
}

.info-table tr {
    border-bottom: 1px solid var(--clr-border);
}

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

.info-table td {
    padding: 12px 18px;
    text-align: left;
    font-size: 14px;
    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 var(--clr-border);
    background: rgba(255, 255, 255, 0.03);
}

.info-table td:last-child {
    color: #fff;
}

.info-table tr:hover td {
    background: rgba(255, 221, 0, 0.04);
}

/* ========== TOURNAMENTS ========== */
.cards-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cards-grid .card-item {
    flex: 1 1 280px;
    min-width: 260px;
}

.tourn-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tourn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 221, 0, 0.12);
}

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

.tourn-card .tc-badge {
    background: rgba(255, 221, 0, 0.15);
    color: var(--clr-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.tourn-card .tc-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tourn-card .tc-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.tourn-card .tc-prize {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

.tourn-card .tc-prize-label {
    font-size: 11px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.tourn-card .tc-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tourn-card .tc-timer-label {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.timer-parts {
    display: flex;
    gap: 6px;
}

.timer-part {
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 4px 8px;
    text-align: center;
    min-width: 42px;
}

.timer-part .val {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.timer-part .lbl {
    font-size: 9px;
    color: var(--clr-text-muted);
    display: block;
    text-transform: uppercase;
}

.tc-btn {
    display: block;
    text-align: center;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px;
    transition: all var(--transition);
}

.tc-btn:hover {
    background: var(--clr-accent2);
    color: #000;
    transform: none;
}

/* ========== APP BLOCK ========== */
.app-block {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--clr-border);
}

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

.app-info {
    flex: 1 1 300px;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
}

.app-table tr {
    border-bottom: 1px solid var(--clr-border);
}

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

.app-table td {
    padding: 9px 12px;
    font-size: 13px;
}

.app-table td:first-child {
    color: var(--clr-text-muted);
    width: 140px;
}

.app-table td:last-child {
    color: #fff;
    font-weight: 600;
}

.app-dl {
    flex: 0 0 auto;
}

.app-dl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all var(--transition);
    text-decoration: none;
    min-width: 200px;
}

.dl-btn:hover {
    background: var(--clr-accent);
    color: #000;
    border-color: var(--clr-accent);
}

.dl-btn svg {
    flex-shrink: 0;
}

.dl-btn-inner .sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    display: block;
}

.dl-btn-inner .name {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

/* ========== BONUSES ========== */
.bonus-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 221, 0, 0.12);
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.bonus-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

.bonus-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.bonus-terms {
    font-size: 11px;
    color: #555;
    margin-bottom: 16px;
}

.bonus-btn {
    display: block;
    text-align: center;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    transition: all var(--transition);
}

.bonus-btn:hover {
    background: var(--clr-accent2);
    color: #000;
}

/* ========== WHEEL OF FORTUNE ========== */
.wheel-section {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
}

.wheel-section .section-title {
    text-align: center;
}

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

.wheel-wrap {
    position: relative;
    display: inline-block;
    margin: 24px auto;
}

#x7e4f-canvas {
    display: block;
    max-width: 300px;
    max-height: 300px;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 221, 0, 0.5));
}

.wheel-spin-btn {
    background: var(--clr-accent);
    color: #000;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
    padding: 14px 48px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
}

.wheel-spin-btn:hover:not(:disabled) {
    background: var(--clr-accent2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.4);
}

.wheel-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result {
    margin-top: 20px;
    padding: 20px 28px;
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-accent);
    display: none;
    animation: fadeIn 0.4s ease;
}

.wheel-result.win {
    border-color: #00e676;
}

.wheel-result.lose {
    border-color: #ff4444;
}

.wheel-result h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.wheel-result.win h3 {
    color: #00e676;
}

.wheel-result.lose h3 {
    color: #ff4444;
}

.wheel-result p {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.wheel-result .get-bonus-btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: all var(--transition);
}

.wheel-result .get-bonus-btn:hover {
    background: var(--clr-accent2);
    color: #000;
}

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

/* ========== REVIEWS ========== */
.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

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

.review-meta .r-date {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.review-stars svg {
    fill: var(--clr-accent);
}

.review-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

/* Review form */
.review-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-top: 32px;
}

.review-form-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--clr-input);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(255, 221, 0, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit-btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

.form-submit-btn:hover {
    background: var(--clr-accent2);
    transform: translateY(-1px);
}

.form-success {
    display: none;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid #00e676;
    border-radius: 8px;
    padding: 14px 18px;
    color: #00e676;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-success.show {
    display: block;
}

/* ========== CONTENT BLOCK ========== */
#xc9m1-content-block {
    padding: 40px 0;
}

.content-inner h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 24px 0 12px;
}

.content-inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px;
}

.content-inner h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 16px 0 8px;
}

.content-inner p {
    color: #ccc;
    margin-bottom: 14px;
    line-height: 1.7;
}

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

.content-inner li {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 4px;
}

.content-inner ul li::marker {
    color: var(--clr-accent);
}

.content-inner a {
    color: var(--clr-accent);
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    min-width: 400px;
}

.content-table-wrap {
    overflow-x: auto;
}

.content-inner table th {
    background: #111;
    color: var(--clr-accent);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-size: 13px;
}

.content-inner table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: #ccc;
    font-size: 13px;
}

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

.content-inner blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    background: rgba(255, 221, 0, 0.05);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #ccc;
}

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

.content-inner em {
    color: var(--clr-text-muted);
}

/* Author block */
.author-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

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

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

.author-info .a-role {
    font-size: 12px;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.author-info .a-bio {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.author-info a {
    font-size: 12px;
    color: var(--clr-accent);
    margin-top: 4px;
    display: inline-block;
}

/* ========== FOOTER ========== */
#site-footer {
    background: var(--clr-footer);
    border-top: 2px solid #222;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
}

.footer-logo {
    flex: 0 0 auto;
}

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

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

.footer-nav-col h4 {
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-col a {
    display: block;
    color: var(--clr-text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

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

.footer-payment-logos, .footer-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 6px;
}

.payment-badge, .provider-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
}

.footer-legal {
    font-size: 11px;
    color: #444;
    margin-top: 8px;
    line-height: 1.6;
}

#xw3q9-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #000 0%, #111 50%, #000 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    animation: slideUp 0.5s ease;
}

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

.widget-text strong {
    color: var(--clr-accent);
    font-size: 15px;
}

.widget-text span {
    color: #ccc;
    font-size: 12px;
}

.widget-close {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 18px;
    padding: 2px 6px;
    transition: color var(--transition);
}

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

.widget-btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    border-radius: 8px;
    padding: 9px 22px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: all var(--transition);
    flex-shrink: 0;
}

.widget-btn:hover {
    background: var(--clr-accent2);
    color: #000;
    transform: translateY(-1px);
}

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

.slider-wrap {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-track .card-item {
    flex: 0 0 calc(100% - 16px);
    margin-right: 16px;
}

.slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.slider-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #444;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-nav button.active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

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

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

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

.wp-block-spacer {
    height: 0;
    display: none;
}

.elementor-invisible {
    visibility: hidden;
    position: absolute;
    opacity: 0;
}

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

.xkl9f-wrap {
}

.bm4r2-item {
}

.zqp5n-row {
}

.vt7e8-col {
}

.nc3j1-box {
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

    .burger-btn {
        display: flex;
    }

    #xhero-section {
        height: 340px;
    }

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

    .slider-nav {
        display: flex;
    }

    .slider-track .card-item {
        flex: 0 0 calc(90vw - 48px);
    }

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

@media (max-width: 640px) {
    #xhero-section {
        height: 280px;
    }

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

    .section-wrap {
        padding: 32px 0;
    }

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

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

    .timer-part .val {
        font-size: 15px;
    }

    .author-block {
        flex-direction: column;
    }

    .footer-inner {
        gap: 18px;
    }

    #xw3q9-widget {
        flex-wrap: wrap;
    }

    .widget-text {
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tyrd thead tr {
    background: #101010;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .tyrd thead {
        display: none;
    }

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

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

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

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

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

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

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

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

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

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

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