/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-header: #312d2b;
    --color-btn-login: #d7cec5;
    --color-btn-signup: #d5812d;
    --color-bg: #211e1c;
    --color-text: #e5e5e5;
    --color-accent: #d5812d;
}

body {
    font-family: 'ProximaNova', 'Roboto', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.elementor-widget-container {
    visibility: hidden;
}

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

a {
    color: var(--color-btn-login);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-btn-signup);
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

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

/* Header */
.header-section {
    background: linear-gradient(135deg, var(--color-header) 0%, #3a3532 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.header-flex {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo-block img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-block img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-x7kl2 {
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login-9x {
    background: var(--color-btn-login);
    color: #1a1818;
}

.btn-login-9x:hover {
    background: #e6ddd4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 206, 197, 0.3);
}

.btn-signup-3k {
    background: linear-gradient(135deg, var(--color-btn-signup) 0%, #f09237 100%);
    color: #fff;
}

.btn-signup-3k:hover {
    background: linear-gradient(135deg, #f09237 0%, var(--color-btn-signup) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 129, 45, 0.4);
}

.online-count-4m {
    color: #4ade80;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-count-4m::before {
    content: '●';
    animation: pulse-5n 2s infinite;
}

@keyframes pulse-5n {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.burger-menu-7p {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.burger-menu-7p span {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero-section-2w {
    background: url('/banner-s.png') center/cover no-repeat;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section-2w::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 30, 28, 0.85) 0%, rgba(49, 45, 43, 0.75) 100%);
}

.hero-content-8q {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.hero-text-6d h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-text-6d p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.btn-hero-1v {
    background: linear-gradient(135deg, var(--color-btn-signup) 0%, #f09237 100%);
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(213, 129, 45, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-1v:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(213, 129, 45, 0.5);
}

.promo-card-9h {
    background: linear-gradient(135deg, #2a2725 0%, #3f3a37 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--color-btn-signup);
}

.promo-card-9h h3 {
    color: var(--color-btn-signup);
    margin-bottom: 15px;
    font-size: 22px;
}

.promo-code-5t {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    color: #4ade80;
    border: 2px dashed var(--color-btn-signup);
}

.promo-actions-3r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.btn-copy-4k, .btn-activate-8l {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-4k {
    background: var(--color-btn-login);
    color: #1a1818;
}

.btn-activate-8l {
    background: var(--color-btn-signup);
    color: #fff;
}

.promo-status-7m {
    margin-top: 15px;
    padding: 8px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 4px;
    text-align: center;
    color: #4ade80;
    font-size: 14px;
}

/* Content Sections */
.content-wrapper-5x {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-block-2p {
    background: linear-gradient(135deg, #2a2725 0%, #322f2c 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(215, 206, 197, 0.1);
}

.section-block-2p h2 {
    color: var(--color-btn-signup);
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    border-bottom: 3px solid var(--color-btn-signup);
    padding-bottom: 12px;
}

/* Mirrors Table */
.mirrors-table-6w {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto;
    display: block;
}

.mirrors-table-6w table {
    width: 100%;
    min-width: 600px;
}

.mirrors-table-6w th,
.mirrors-table-6w td {
    padding: 15px;
    text-align: left;
    border: 2px solid rgba(215, 206, 197, 0.2);
}

.mirrors-table-6w th {
    background: var(--color-header);
    color: var(--color-btn-signup);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.mirrors-table-6w tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.mirrors-table-6w tr:hover {
    background: rgba(213, 129, 45, 0.1);
}

.mirror-status-9f {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active-3x {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.current-time-1z {
    color: var(--color-btn-signup);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Tournaments */
.tournaments-grid-4h {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.tournament-card-7b {
    background: linear-gradient(135deg, #3a3532 0%, #2a2725 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(213, 129, 45, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card-7b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-btn-signup) 0%, #f09237 100%);
}

.tournament-card-7b:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(213, 129, 45, 0.3);
    border-color: var(--color-btn-signup);
}

.tournament-card-7b h3 {
    color: var(--color-btn-signup);
    margin-bottom: 15px;
    font-size: 22px;
}

.tournament-card-7b p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.tournament-timer-2k {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #4ade80;
}

.tournament-prize-8n {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-btn-signup);
    text-align: center;
    margin-top: 10px;
}

/* Video Review */
.video-container-3d {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}

.video-container-3d iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.author-info-6k {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    align-items: center;
}

.author-avatar-9m img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-btn-signup);
}

.author-details-5p h4 {
    color: var(--color-btn-signup);
    margin-bottom: 5px;
}

.author-details-5p p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.author-details-5p a {
    color: var(--color-btn-login);
    text-decoration: underline;
}

/* Wheel Game */
.wheel-game-container-7x {
    text-align: center;
    padding: 40px 20px;
}

.wheel-canvas-4q {
    margin: 30px auto;
    display: block;
    max-width: 100%;
}

.wheel-btn-8r {
    background: linear-gradient(135deg, var(--color-btn-signup) 0%, #f09237 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wheel-btn-8r:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(213, 129, 45, 0.4);
}

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

.wheel-result-5m {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2725 0%, #322f2c 100%);
    border-radius: 12px;
    border: 2px solid var(--color-btn-signup);
    display: none;
}

.wheel-result-5m.show {
    display: block;
    animation: fadeIn-2x 0.5s ease;
}

@keyframes fadeIn-2x {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wheel-result-5m h3 {
    color: #4ade80;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Reviews */
.reviews-grid-9k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.review-card-3l {
    background: linear-gradient(135deg, #3a3532 0%, #2a2725 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--color-btn-signup);
    transition: all 0.3s ease;
}

.review-card-3l:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.review-avatar-2n img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-btn-login);
}

.review-author-4w h4 {
    color: var(--color-btn-signup);
    margin-bottom: 5px;
}

.review-stars-6m {
    display: flex;
    gap: 3px;
}

.review-stars-6m svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.review-text-8p {
    line-height: 1.7;
    font-size: 15px;
}

/* Review Form */
.review-form-5h {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
}

.review-form-5h h3 {
    color: var(--color-btn-signup);
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group-9d {
    margin-bottom: 20px;
}

.form-group-9d label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-btn-login);
    font-weight: 600;
}

.form-group-9d input,
.form-group-9d textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(215, 206, 197, 0.2);
    border-radius: 6px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group-9d input:focus,
.form-group-9d textarea:focus {
    outline: none;
    border-color: var(--color-btn-signup);
    background: rgba(0, 0, 0, 0.6);
}

.form-group-9d textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-7k {
    background: linear-gradient(135deg, var(--color-btn-signup) 0%, #f09237 100%);
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-7k:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(213, 129, 45, 0.4);
}

/* Footer */
.footer-section-4n {
    background: linear-gradient(135deg, var(--color-header) 0%, #3a3532 100%);
    padding: 50px 20px 30px;
    margin-top: auto;
}

.footer-content-8x {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid-2m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block-6r h4 {
    color: var(--color-btn-signup);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-menu-3t {
    list-style: none;
}

.footer-menu-3t li {
    margin-bottom: 12px;
}

.footer-menu-3t a {
    color: var(--color-text);
    transition: color 0.3s ease;
}

.footer-menu-3t a:hover {
    color: var(--color-btn-signup);
}

.payment-logos-9v,
.provider-logos-4k {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-logos-9v img,
.provider-logos-4k img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-logos-9v img:hover,
.provider-logos-4k img:hover {
    opacity: 1;
}

.footer-bottom-7h {
    border-top: 1px solid rgba(215, 206, 197, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-7h p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(229, 229, 229, 0.8);
    margin-bottom: 10px;
}

.footer-license-2q {
    font-size: 13px;
    color: rgba(229, 229, 229, 0.6);
    margin-top: 15px;
}

/* Fixed Widget */
.fixed-widget-5r {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--color-btn-signup) 0%, #f09237 100%);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.5);
    animation: pulse-widget-3n 2s infinite;
    max-width: 300px;
}

@keyframes pulse-widget-3n {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.fixed-widget-5r h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.fixed-widget-5r p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.widget-btn-9t {
    background: #fff;
    color: var(--color-btn-signup);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.widget-btn-9t:hover {
    background: var(--color-btn-login);
    transform: scale(1.05);
}

.widget-close-4f {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease;
}

.widget-close-4f:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Content Area Styling */
.content-area-1x {
    line-height: 1.8;
}

.content-area-1x h2,
.content-area-1x h3,
.content-area-1x h4 {
    color: var(--color-btn-signup);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-area-1x h2 {
    font-size: 28px;
}

.content-area-1x h3 {
    font-size: 24px;
}

.content-area-1x h4 {
    font-size: 20px;
}

.content-area-1x p {
    margin-bottom: 20px;
}

.content-area-1x ul,
.content-area-1x ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-area-1x li {
    margin-bottom: 10px;
}

.content-area-1x table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.content-area-1x th,
.content-area-1x td {
    padding: 12px;
    border: 2px solid rgba(215, 206, 197, 0.2);
    text-align: left;
}

.content-area-1x th {
    background: var(--color-header);
    color: var(--color-btn-signup);
    font-weight: 700;
}

.content-area-1x tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.content-area-1x strong {
    color: var(--color-btn-signup);
}

.content-area-1x a {
    color: var(--color-btn-login);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-8q {
        grid-template-columns: 1fr;
    }

    .tournaments-grid-4h {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-flex {
        grid-template-columns: auto 1fr auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-header);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu-7p {
        display: flex;
    }

    .hero-text-6d h1 {
        font-size: 32px;
    }

    .section-block-2p {
        padding: 25px 20px;
    }

    .section-block-2p h2 {
        font-size: 24px;
    }

    .promo-actions-3r {
        grid-template-columns: 1fr;
    }

    .fixed-widget-5r {
        left: 20px;
        right: 20px;
        max-width: none;
    }

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

/* Unused WordPress Styles */
.wp-block-cover {
    display: none;
}

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

.wp-block-button {
    margin: 10px 0;
}

.elementor-section {
    visibility: hidden;
}

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

.container.about {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 28px 22px;
    background: linear-gradient(135deg, rgba(49, 45, 43, .92), rgba(42, 39, 37, .92));
    border: 1px solid rgba(213, 129, 45, .18);
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
}

.container.about > * + * {
    margin-top: 14px;
}

.container.about p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(232, 230, 227, .92);
}

.container.about h1 {
    margin-top: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    color: #d5812d;
    letter-spacing: .2px;
}

.container.about h2 {
    margin-top: 22px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: #d5812d;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(213, 129, 45, .22);
}

.container.about h3 {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
    color: rgba(215, 206, 197, .95);
}

.container.about a {
    color: #d5812d;
    text-decoration: none;
    border-bottom: 1px solid rgba(213, 129, 45, .35);
    transition: color .2s ease, border-color .2s ease;
    overflow-wrap: anywhere;
}

.container.about a:hover {
    color: #f09237;
    border-bottom-color: rgba(240, 146, 55, .7);
}

.container.about ul,
.container.about ol {
    padding-left: 20px;
    margin-top: 10px;
}

.container.about li {
    margin: 10px 0;
    color: rgba(232, 230, 227, .9);
    line-height: 1.75;
}

.container.about ul li {
    position: relative;
    padding-left: 10px;
}

.container.about ul li::marker {
    color: rgba(213, 129, 45, .95);
}

.container.about ol li::marker {
    color: rgba(213, 129, 45, .95);
    font-weight: 800;
}

.container.about blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid rgba(213, 129, 45, .8);
    background: rgba(0, 0, 0, .25);
    border-radius: 10px;
}

.container.about table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 10px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(213, 129, 45, .16);
}

.container.about th,
.container.about td {
    padding: 12px 12px;
    border-bottom: 1px solid rgba(215, 206, 197, .14);
    border-right: 1px solid rgba(215, 206, 197, .12);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.container.about tr:last-child td {
    border-bottom: 0;
}

.container.about th:last-child,
.container.about td:last-child {
    border-right: 0;
}

.container.about th {
    background: rgba(213, 129, 45, .16);
    color: rgba(232, 230, 227, .95);
    font-weight: 900;
}

.container.about img,
.container.about iframe,
.container.about video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .container.about {
        width: 100%;
        padding: 20px 14px;
        border-radius: 14px;
    }

    .container.about h1 {
        font-size: 26px;
    }

    .container.about h2 {
        font-size: 20px;
    }

    .container.about h3 {
        font-size: 17px;
    }

    .container.about p {
        font-size: 15px;
        line-height: 1.8;
    }

    .container.about ul,
    .container.about ol {
        padding-left: 18px;
    }

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

    .container.about th,
    .container.about td {
        font-size: 14px;
        padding: 10px 10px;
    }
}

@media (max-width: 420px) {
    .container.about {
        padding: 18px 12px;
    }

    .container.about h1 {
        font-size: 23px;
    }

    .container.about h2 {
        font-size: 19px;
    }

    .container.about p {
        font-size: 14px;
    }
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#page, .site, .wrapper-main {
    width: 100%;
    max-width: 100%;
}

.header-section, .hero-section-2w, .content-wrapper-5x, .section-block-2p, .fixed-widget-5r {
    max-width: 100%;
}

.hero-content-8q, .header-container, .content-wrapper-5x {
    width: min(1140px, 100%);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-content-8q {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 14px;
    }

    .content-wrapper-5x {
        padding: 26px 14px;
    }

    .section-block-2p {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .section-block-2p h2 {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-text-6d h1 {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .hero-text-6d p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .btn-hero-1v {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
    }

    .promo-card-9h {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .promo-card-9h h3 {
        font-size: 16px;
    }

    .promo-code-5t {
        font-size: 18px;
        padding: 12px;
        border-radius: 12px;
        letter-spacing: 1.5px;
    }

    .promo-status-7m {
        font-size: 12px;
    }

    .promo-actions-3r {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-copy-4k, .btn-activate-8l {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .mirrors-table-6w {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        border: 1px solid rgba(215, 206, 197, 0.14);
        background: rgba(0, 0, 0, 0.22);
    }

    .mirrors-table-6w table {
        min-width: 640px;
    }

    .tournaments-grid-4h {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tournament-card-7b {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .tournament-card-7b h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tournament-card-7b p {
        font-size: 14px;
    }

    .tournament-timer-2k {
        font-size: 16px;
        padding: 10px;
        border-radius: 12px;
    }

    .tournament-prize-8n {
        font-size: 20px;
    }

    .video-container-3d {
        border-radius: 14px;
        overflow: hidden;
    }

    .wheel-game-container-7x {
        padding: 12px 0;
    }

    .wheel-game-container-7x p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .wheel-canvas-4q {
        width: min(320px, 100%);
        height: auto;
    }

    .wheel-btn-8r {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    .wheel-result-5m {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .reviews-grid-9k {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card-3l {
        padding: 14px;
        border-radius: 14px;
    }

    .review-header-7t {
        gap: 10px;
        margin-bottom: 10px;
    }

    .review-author-4w h4 {
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
    }

    .review-stars-6m svg {
        width: 16px;
        height: 16px;
    }

    .review-text-8p {
        font-size: 14px;
        line-height: 1.7;
    }

    .review-form-5h {
        padding: 16px 14px;
        border-radius: 14px;
        margin-top: 16px;
    }

    .review-form-5h h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .form-group-9d input,
    .form-group-9d textarea {
        padding: 12px 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-submit-7k {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
    }

    .content-area-1x h2 {
        font-size: 20px;
    }

    .content-area-1x h3 {
        font-size: 18px;
    }

    .content-area-1x h4 {
        font-size: 16px;
    }

    .content-area-1x p, .content-area-1x li {
        font-size: 14px;
    }

    .content-area-1x table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .fixed-widget-5r {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 14px;
        border-radius: 14px;
        max-width: none;
    }

    .fixed-widget-5r h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .fixed-widget-5r p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .widget-btn-9t {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 12px;
    }

    .header-flex {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        align-items: center;
    }

    .logo-block img {
        height: 36px;
        width: auto;
    }

    .header-actions {
        gap: 8px;
        justify-content: flex-end;
    }

    .btn-x7kl2.btn-login-9x,
    .btn-x7kl2.btn-signup-3k {
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 8px;
        white-space: nowrap;
    }

    .online-count-4m {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 56px;
        background: rgba(49, 45, 43, .98);
        flex-direction: column;
        gap: 0;
        padding: 10px 12px;
        z-index: 1200;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    }

    .nav-menu a {
        display: block;
        padding: 12px 12px;
        border-radius: 10px;
        font-size: 14px;
    }

    .nav-menu a + a {
        margin-top: 6px;
    }

    .burger-menu-7p {
        display: flex;
        width: 40px;
        height: 38px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 10px;
        background: rgba(0, 0, 0, .25);
        border: 1px solid rgba(215, 206, 197, .12);
    }

    .burger-menu-7p span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section-2w {
        padding: 18px 0;
        background-attachment: scroll;
    }

    .hero-text-6d {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .btn-x7kl2.btn-login-9x,
    .btn-x7kl2.btn-signup-3k {
        padding: 7px 8px;
        font-size: 11px;
    }

    .nav-menu {
        top: 54px;
    }

    .section-block-2p {
        padding: 16px 12px;
    }

    .promo-card-9h {
        padding: 14px 12px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn-hero-1v:hover,
    .btn-x7kl2:hover,
    .tournament-card-7b:hover,
    .review-card-3l:hover {
        transform: none;
    }
}

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
}

body {
    padding-top: 76px;
}

@media (max-width: 768px) {
    body {
        padding-top: 58px;
    }
}
