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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #0A0A0A;
    color: #E8E8E8;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.q7k3m-header {
    background-color: #1A1A1A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.p5n8v-header-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t9k4m-logo-block {
}

.w3n7k-logo-link {
    display: block;
}

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

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

.m3t9k-menu-list {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.m3t9k-menu-list a {
    color: #E8E8E8;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.m3t9k-menu-list a:hover {
    color: #FF9933;
}

.n7k4p-online-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #E8E8E8;
    font-size: 14px;
}

.online-icon {
    font-size: 12px;
}

.v5k9m-header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-login, .t8n3k-btn-login {
    background-color: #FF9933;
    color: #FFFFFF;
}

.btn-login:hover {
    background-color: #E88A2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.btn-signup, .w4m7v-btn-signup {
    background-color: #FF9933;
    color: #FFFFFF;
}

.btn-signup:hover {
    background-color: #E88A2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.x9k5n-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.x9k5n-burger span {
    width: 25px;
    height: 3px;
    background-color: #FF9933;
    transition: all 0.3s;
}

.x9k5n-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.p6t8m-mobile-menu {
    display: none;
    background-color: #1A1A1A;
    padding: 20px;
}

.p6t8m-mobile-menu.active {
    display: block;
}

.r4k7n-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.r4k7n-mobile-menu-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.r4k7n-mobile-menu-list a {
    color: #E8E8E8;
    text-decoration: none;
    font-size: 16px;
}

.q3n7v-hero-section {
    position: relative;
    margin-bottom: 40px;
}

.k5m2x-hero-slider {
}

.p9t4b-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.j6r8s-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.l2h9m-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.t4v8k-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.n7q3w-hero-text {
    font-size: 24px;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.f5x2m-cta-btn {
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    color: #FFFFFF;
    font-size: 20px;
    padding: 15px 40px;
    border-radius: 8px;
}

.f5x2m-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

.y6k9p-breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
    color: #999;
}

.r3m7v-crumb a {
    color: #FF9933;
    text-decoration: none;
}

.w4h2n-separator {
    margin: 0 8px;
}

.q8t5x-crumb-current {
    color: #E8E8E8;
}

.d9v3k-main-content {
    flex: 1;
}

.m2p8w-pros-cons-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #1A1A1A;
    border-radius: 12px;
}

.h7t4n-pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.x5k9m-pros-block, .p6v2k-cons-block {
    background-color: #0F0F0F;
    padding: 25px;
    border-radius: 8px;
}

.j4n8v-pros-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4CAF50;
}

.n8m4t-cons-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #F44336;
}

.t9w3p-pros-list, .w3h7q-cons-list {
    list-style: none;
    padding: 0;
}

.t9w3p-pros-list li, .w3h7q-cons-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.t9w3p-pros-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.w3h7q-cons-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

.r7k3m-tournaments-section, .k8m3v-bonuses-section, .t5n9m-games-section,
.p8k3v-wheel-section, .t9v5k-reviews-section {
    margin: 50px 0;
}

.v9n5t-section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #FF9933;
}

.l4p8x-tournaments-container, .p7t4w-bonuses-container, .j7k4p-games-container {
    overflow: hidden;
}

.tournaments-slider-wrapper, .bonuses-slider-wrapper, .games-slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.q2w7k-tournament-card, .n5k8m-bonus-card, .w3m8v-game-card {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.q2w7k-tournament-card:hover, .n5k8m-bonus-card:hover, .w3m8v-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}

.m8v4n-tournament-name, .w4t9v-bonus-title, .x6t2n-game-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.t5k9p-tournament-desc, .r6n3k-bonus-text {
    font-size: 14px;
    color: #CCC;
    margin-bottom: 15px;
    line-height: 1.5;
}

.h3n7w-timer {
    font-size: 18px;
    font-weight: bold;
    color: #FF9933;
    margin: 15px 0;
}

.j6r2m-prize {
    font-size: 16px;
    margin: 15px 0;
    color: #4CAF50;
}

.x9t4v-join-btn, .q8m5t-bonus-btn, .k9p5m-play-btn {
    background-color: #FF9933;
    color: #FFFFFF;
    margin-top: 15px;
    width: 100%;
}

.x9t4v-join-btn:hover, .q8m5t-bonus-btn:hover, .k9p5m-play-btn:hover {
    background-color: #E88A2E;
}

.bonus-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.game-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.m5n9t-wheel-wrapper {
    text-align: center;
    padding: 40px;
    background-color: #1A1A1A;
    border-radius: 12px;
}

.r7k4w-wheel-canvas {
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
}

.w8t3m-spin-btn {
    background-color: #FF9933;
    color: #FFFFFF;
    font-size: 18px;
    padding: 15px 50px;
}

.w8t3m-spin-btn:hover {
    background-color: #E88A2E;
}

.w8t3m-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.n4k7p-wheel-result {
    margin-top: 30px;
    padding: 20px;
    background-color: #0F0F0F;
    border-radius: 8px;
}

.result-text {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.q2v8k-claim-btn {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.q2v8k-claim-btn:hover {
    background-color: #45a049;
}

.content-area {
    margin: 40px 0;
    padding: 30px;
    background-color: #1A1A1A;
    border-radius: 12px;
}

.h6t9m-main-heading {
    font-size: 36px;
    margin-bottom: 25px;
    color: #FF9933;
}

.x9k2m h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #FFFFFF;
}

.x9k2m h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #FFFFFF;
}

.x9k2m p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.x9k2m ul, .x9k2m ol {
    margin: 15px 0;
    padding-left: 30px;
}

.x9k2m li {
    margin-bottom: 10px;
}

.x9k2m table {
    width: 100%;
    margin: 25px auto;
    border-collapse: collapse;
    max-width: 800px;
}

.x9k2m th, .x9k2m td {
    padding: 12px 15px;
    border: 2px solid #333;
    text-align: left;
}

.x9k2m th {
    background-color: #2A2A2A;
    font-weight: 600;
}

.x9k2m tr:nth-child(even) {
    background-color: #151515;
}

.k4n8p-reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 10px;
}

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

.w5t9n-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-info {
}

.p3k8m-reviewer-name {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.x6n2t-rating {
    color: #FFD700;
    font-size: 14px;
}

.r8v4k-review-text {
    line-height: 1.6;
    color: #CCC;
}

.n7k5m-review-form-wrapper {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
}

.t4v9p-form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FF9933;
}

.w8k3n-review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #E8E8E8;
}

.q5m8t-form-input, .p9k4v-form-textarea {
    padding: 12px;
    border: 2px solid #333;
    border-radius: 6px;
    background-color: #0F0F0F;
    color: #E8E8E8;
    font-family: 'Open Sans', Arial, sans-serif;
}

.q5m8t-form-input:focus, .p9k4v-form-textarea:focus {
    outline: none;
    border-color: #FF9933;
}

.r7t3k-submit-btn {
    background-color: #FF9933;
    color: #FFFFFF;
    padding: 12px 30px;
    align-self: flex-start;
}

.r7t3k-submit-btn:hover {
    background-color: #E88A2E;
}

.k8n5m-success-msg {
    margin-top: 20px;
    padding: 20px;
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 8px;
}

.m8k4v-footer {
    background-color: #1A1A1A;
    padding: 40px 0 20px;
    margin-top: auto;
}

.t5n9p-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.k7m3v-footer-logo img {
    max-width: 150px;
}

.footer-menu-title, .footer-payments-title, .footer-providers-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FF9933;
}

.n4t8m-footer-menu-list {
    list-style: none;
    padding: 0;
}

.n4t8m-footer-menu-list li {
    margin-bottom: 10px;
}

.n4t8m-footer-menu-list a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s;
}

.n4t8m-footer-menu-list a:hover {
    color: #FF9933;
}

.r6m9t-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.k5n7t-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-name {
    font-size: 12px;
    color: #999;
    background-color: #0F0F0F;
    padding: 5px 10px;
    border-radius: 4px;
}

.t9k4p-footer-info {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.w3m8v-footer-text, .n6k2t-footer-support {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    line-height: 1.6;
}

.n6k2t-footer-support a {
    color: #FF9933;
    text-decoration: none;
}

.r7k5m-footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.m4t9n-copyright, .k8v3p-legal-text, .w5n8k-age-restriction {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.k8v3p-legal-text a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
}

.k8v3p-legal-text a:hover {
    color: #FF9933;
}

.v3k8m-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.w7n4t-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.widget-text {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.m5k9v-widget-btn {
    background-color: #FFFFFF;
    color: #FF9933;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
}

.m5k9v-widget-btn:hover {
    background-color: #F5F5F5;
    transform: scale(1.05);
}

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

    .k8v5n-nav-menu {
        display: none;
    }

    .x9k5n-burger {
        display: flex;
    }

    .h7t4n-pros-cons-wrapper {
        grid-template-columns: 1fr;
    }

    .tournaments-slider-wrapper, .bonuses-slider-wrapper, .games-slider-wrapper {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .q2w7k-tournament-card, .n5k8m-bonus-card, .w3m8v-game-card {
        scroll-snap-align: start;
        min-width: 280px;
    }

    .t4v8k-hero-title {
        font-size: 32px;
    }

    .n7q3w-hero-text {
        font-size: 18px;
    }
}

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

    .n7k4p-online-counter {
        display: none;
    }

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

    .w7n4t-widget-content {
        flex-direction: column;
        text-align: center;
    }

    .r7k4w-wheel-canvas {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .p9t4b-slide {
        height: 350px;
    }
}

.v2k9m-unused {
    display: none;
}

.t7n3k-legacy-block {
    opacity: 0;
    visibility: hidden;
}

.wp-post-content {
}

.elementor-section {
}

.yoast-schema {
}

.cvs {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 20px 72px;
    background: linear-gradient(180deg, #111111 0%, #171717 100%);
    border: 1px solid rgba(255, 153, 51, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    color: #e9e9e9;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow: hidden;
}

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

.cvs h1,
.cvs h2,
.cvs h3,
.cvs h4,
.cvs h5,
.cvs h6 {
    margin: 32px 0 16px;
    color: #ff9933;
    font-weight: 700;
    line-height: 1.25;
}

.cvs h1 {
    margin-top: 0;
    font-size: 40px;
}

.cvs h2 {
    font-size: 30px;
}

.cvs h3 {
    font-size: 24px;
}

.cvs p,
.cvs ul,
.cvs ol,
.cvs table,
.cvs blockquote,
.cvs dl {
    margin: 0 0 20px;
}

.cvs p {
    color: #e9e9e9;
}

.cvs a {
    color: #ffb566;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    word-break: break-word;
}

.cvs a:hover {
    color: #ffd1a0;
}

.cvs ul,
.cvs ol {
    padding-left: 24px;
}

.cvs li {
    margin-bottom: 10px;
}

.cvs ul li::marker,
.cvs ol li::marker {
    color: #ff9933;
    font-weight: 700;
}

.cvs strong,
.cvs b {
    color: #fff0df;
    font-weight: 700;
}

.cvs em {
    color: #f5f5f5;
}

.cvs blockquote {
    padding: 20px 22px;
    border-left: 4px solid #ff9933;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, rgba(255, 153, 51, 0.05) 100%);
    color: #f3f3f3;
}

.cvs blockquote p:last-child {
    margin-bottom: 0;
}

.cvs table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #171717;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.14);
}

.cvs table thead {
    background: linear-gradient(90deg, #ff9933 0%, #ffb347 100%);
}

.cvs table tbody {
    background: #171717;
}

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

.cvs th,
.cvs td {
    min-width: 190px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 153, 51, 0.12);
    text-align: left;
    vertical-align: top;
}

.cvs th {
    color: #111111;
    font-weight: 700;
}

.cvs td {
    color: #e8e8e8;
}

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

.cvs hr {
    height: 1px;
    margin: 32px 0;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
}

.cvs h2,
.cvs h3,
.cvs table,
.cvs blockquote {
    scroll-margin-top: 110px;
}

@media (max-width: 992px) {
    .cvs {
        padding: 40px 18px 56px;
        border-radius: 20px;
    }

    .cvs h1 {
        font-size: 34px;
    }

    .cvs h2 {
        font-size: 27px;
    }

    .cvs h3 {
        font-size: 22px;
    }

    .cvs th,
    .cvs td {
        min-width: 165px;
        padding: 13px 14px;
    }
}

@media (max-width: 768px) {
    .cvs {
        padding: 32px 16px 48px;
        font-size: 15px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .cvs h1 {
        font-size: 28px;
    }

    .cvs h2 {
        margin-top: 28px;
        font-size: 23px;
    }

    .cvs h3 {
        margin-top: 24px;
        font-size: 20px;
    }

    .cvs p,
    .cvs ul,
    .cvs ol,
    .cvs table,
    .cvs blockquote,
    .cvs dl {
        margin-bottom: 18px;
    }

    .cvs ul,
    .cvs ol {
        padding-left: 20px;
    }

    .cvs blockquote {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .cvs th,
    .cvs td {
        min-width: 150px;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cvs {
        padding: 24px 14px 40px;
        font-size: 14px;
        border-radius: 16px;
    }

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

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

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

    .cvs li {
        margin-bottom: 8px;
    }

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

    .cvs th,
    .cvs td {
        min-width: 135px;
        padding: 10px;
        font-size: 13px;
    }
}