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

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

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

/* Header */
.d4k7n-header {
    background: linear-gradient(180deg, #012B00 0%, #014a00 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 179, 0, 0.2);
}

.n8m3p-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.v2q9k-logo-block {
    flex-shrink: 0;
}

.s7n4m-logo img {
    display: block;
    max-width: 150px;
    height: auto;
}

.r5k8p-nav-desktop {
    flex-grow: 1;
}

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

.t3m7n-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.t3m7n-menu a:hover {
    color: #00B300;
}

.k9p2m-online-counter {
    color: #00B300;
    font-weight: 600;
    white-space: nowrap;
}

.w4n7k-icon {
    font-size: 1.2em;
}

.b5n8m-header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.q7k4p-btn-login {
    background-color: #FFFFFF;
    color: #012B00;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.q7k4p-btn-login:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.m3n9k-btn-signup {
    background-color: #00B300;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(0, 179, 0, 0.3);
}

.m3n9k-btn-signup:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 0, 0.5);
}

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

.p8k5m-burger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: 0.3s;
}

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

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

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

.z2m6p-mobile-menu {
    display: none;
    background-color: #012B00;
    padding: 20px 0;
}

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

.v7n4p-mobile-list {
    list-style: none;
    padding: 0;
}

.v7n4p-mobile-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v7n4p-mobile-list a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

/* Hero Section */
.h7k3m-hero-section {
    margin-bottom: 40px;
}

.p9k2m-slide {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.p9k2m-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(1, 43, 0, 0.6), rgba(10, 30, 0, 0.8));
}

.t6n3k-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.y8m5p-title {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.r3k7n-subtitle {
    font-size: 1.5em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.m9k4p-cta-btn {
    background-color: #00B300;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 179, 0, 0.4);
}

.m9k4p-cta-btn:hover {
    background-color: #009900;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 179, 0, 0.6);
}

/* Section Blocks */
.g8k4m-section-block,
.p4k7m-section-block,
.k9m4n-section-block,
.n7k4m-section-block,
.m4k8n-section-block,
.q5k8m-section-block,
.p9k5m-section-block {
    background: linear-gradient(135deg, #013800 0%, #012B00 100%);
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.2);
}

.n5m7p-section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #00B300;
}

/* Casino Table */
.w3k9m-table-wrapper {
    overflow-x: auto;
}

.k7n4p-casino-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
}

.k7n4p-casino-table td {
    padding: 15px 20px;
    border: 2px solid #00B300;
}

.r2m8k-param {
    font-weight: 600;
    color: #00B300;
    width: 40%;
}

.t5n3p-value {
    color: #FFFFFF;
}

.k7n4p-casino-table tr:hover {
    background-color: rgba(0, 179, 0, 0.1);
}

/* Winners Grid */
.v8k3n-winners-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.m2k9p-winner-card {
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid rgba(0, 179, 0, 0.3);
}

.m2k9p-winner-card:hover {
    transform: translateY(-5px);
    border-color: #00B300;
}

.y5n3k-position {
    font-size: 1.5em;
    font-weight: 700;
    color: #00B300;
    margin-bottom: 10px;
}

.r7k4m-username {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.t3n8p-amount {
    font-size: 1.3em;
    color: #FFD700;
    font-weight: 700;
}

/* Video Review */
.w7k3p-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.t5m8n-video-container {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.r3k6m-author-info {
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid #00B300;
}

.y5m2n-author-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #00B300;
    margin-bottom: 5px;
}

.m7k3p-author-title {
    font-size: 1.1em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.t4n9k-author-desc {
    line-height: 1.6;
    margin-bottom: 15px;
}

.k2m7n-linkedin {
    color: #00B300;
    text-decoration: none;
    font-weight: 600;
}

.k2m7n-linkedin:hover {
    text-decoration: underline;
}

/* Bonuses */
.v5k9m-bonus-card {
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #00B300;
    transition: all 0.3s;
}

.v5k9m-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 0, 0.3);
}

.r2n7k-bonus-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.t8m4p-bonus-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00B300;
}

.y3k6n-bonus-amount {
    font-size: 2em;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.m5n2k-bonus-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.p7k3m-bonus-btn {
    background-color: #00B300;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.p7k3m-bonus-btn:hover {
    background-color: #009900;
    transform: translateY(-2px);
}

/* Slots */
.p2k9m-slot-card {
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 2px solid rgba(0, 179, 0, 0.3);
    transition: all 0.3s;
}

.p2k9m-slot-card:hover {
    transform: translateY(-5px);
    border-color: #00B300;
}

.v5n3k-slot-image {
    width: 100%;
    height: 150px;
    background-color: #001a00;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.v5n3k-slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.r8k4m-slot-name {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.y3n7k-slot-provider {
    font-size: 0.9em;
    color: #00B300;
    margin-bottom: 15px;
}

.k5m2n-play-btn {
    background-color: #00B300;
    color: #FFFFFF;
    padding: 8px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.k5m2n-play-btn:hover {
    background-color: #009900;
}

/* Wheel Game */
.w7k4n-wheel-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

#p3k9m-wheel-canvas {
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.t5k7m-spin-button {
    background-color: #00B300;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.t5k7m-spin-button:hover {
    background-color: #009900;
    transform: scale(1.05);
}

.t5k7m-spin-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.y9k3n-result-box {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border-radius: 10px;
    border: 2px solid #00B300;
}

#k7m4n-result-text {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.n3k9m-claim-btn {
    background-color: #FFD700;
    color: #012B00;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.n3k9m-claim-btn:hover {
    background-color: #FFC700;
    transform: scale(1.05);
}

/* FAQ */
.t7k3m-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.r2k9m-faq-item {
    background: linear-gradient(135deg, #014a00 0%, #012B00 100%);
    border: 2px solid #00B300 !important;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.r2k9m-faq-item .accordion-button {
    background-color: transparent;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1em;
    padding: 20px;
}

.r2k9m-faq-item .accordion-button:not(.collapsed) {
    background-color: rgba(0, 179, 0, 0.2);
    color: #00B300;
}

.r2k9m-faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: #00B300;
}

.k4m7n-faq-answer {
    background-color: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    line-height: 1.8;
}

/* Footer */
.q8k5m-footer {
    background: linear-gradient(180deg, #012B00 0%, #001a00 100%);
    padding: 50px 0 20px;
    margin-top: auto;
}

.t3k7n-footer-content {
    margin-bottom: 30px;
}

.v5k8n-footer-title {
    color: #00B300;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.k2m9p-footer-menu a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.k2m9p-footer-menu a:hover {
    color: #00B300;
}

.r8k3m-payment-logos,
.y4k7m-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.r8k3m-payment-logos img,
.y4k7m-provider-logos img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 5px;
}

.n6k2m-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 179, 0, 0.3);
    margin-bottom: 20px;
}

.k5m3p-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.k5m3p-legal-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9em;
}

.k5m3p-legal-links a:hover {
    color: #00B300;
}

.p7k4m-age-warning {
    text-align: center;
    color: #FFD700;
    font-weight: 600;
}

/* Fixed Widget */
.m9k3p-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #012B00 0%, #00B300 100%);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 179, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t7k2m-widget-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
}

.p3k7m-bonus-amount {
    font-size: 1.3em;
    font-weight: 700;
    color: #FFD700;
}

.k8m2n-bonus-subtitle {
    font-size: 0.9em;
    color: #FFFFFF;
}

.y6k4m-widget-btn {
    background-color: #FFFFFF;
    color: #012B00;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

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

.n2k9m-widget-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Styling */
.f3q7n-text-content {
    background: linear-gradient(135deg, #013800 0%, #012B00 100%);
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 40px;
}

.f3q7n-text-content h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00B300;
}

.f3q7n-text-content h2 {
    font-size: 2em;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #00B300;
}

.f3q7n-text-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.f3q7n-text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.f3q7n-text-content ul,
.f3q7n-text-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.f3q7n-text-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.f3q7n-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.f3q7n-text-content table td,
.f3q7n-text-content table th {
    padding: 12px 15px;
    border: 1px solid #00B300;
    text-align: left;
}

.f3q7n-text-content table th {
    background-color: rgba(0, 179, 0, 0.2);
    font-weight: 700;
}

/* Unused WordPress styles for obfuscation */
.h5v8n-unused {
    display: none;
}

.g3k9m-legacy {
    visibility: hidden;
}

.wp-block-image {
    margin: 0;
}

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

/* Responsive */
@media (max-width: 991px) {
    .r5k8p-nav-desktop,
    .k9p2m-online-counter {
        display: none !important;
    }

    .p8k5m-burger {
        display: flex;
    }

    .y8m5p-title {
        font-size: 2em;
    }

    .r3k7n-subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .n5m7p-section-title {
        font-size: 1.8em;
    }

    .g8k4m-section-block,
    .p4k7m-section-block,
    .k9m4n-section-block,
    .n7k4m-section-block,
    .m4k8n-section-block,
    .q5k8m-section-block,
    .p9k5m-section-block {
        padding: 25px 15px;
    }

    .t7k2m-widget-content {
        flex-direction: column;
        gap: 10px;
    }

    .n6k2m-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .y8m5p-title {
        font-size: 1.5em;
    }

    .r3k7n-subtitle {
        font-size: 1em;
    }

    .m9k4p-cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .k7n4p-casino-table {
        font-size: 0.9em;
    }

    .k7n4p-casino-table td {
        padding: 10px;
    }
}

.tqns {
    --tqns-bg: #0a1e00;
    --tqns-surface: #0f2a06;
    --tqns-surface-2: #13340a;
    --tqns-border: rgba(0, 179, 0, 0.22);
    --tqns-border-strong: rgba(0, 179, 0, 0.38);
    --tqns-title: #ffffff;
    --tqns-text: rgba(255, 255, 255, 0.92);
    --tqns-muted: rgba(255, 255, 255, 0.72);
    --tqns-accent: #00b300;
    --tqns-accent-2: #36d936;
    --tqns-gold: #ffd24a;
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 20px 88px;
    color: var(--tqns-text);
    font-family: 'Open Sans', Arial, sans-serif;
}

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

.tqns h1,
.tqns h2,
.tqns h3,
.tqns h4,
.tqns h5,
.tqns h6 {
    color: var(--tqns-title);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tqns h1 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin: 0 0 20px;
}

.tqns h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin: 42px 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--tqns-border);
    position: relative;
}

.tqns h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 86px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tqns-accent), var(--tqns-accent-2));
}

.tqns h3 {
    font-size: clamp(1.08rem, 2.1vw, 1.38rem);
    margin: 28px 0 12px;
    color: var(--tqns-accent-2);
}

.tqns p {
    margin: 0 0 16px;
    color: var(--tqns-text);
    font-size: 1rem;
    line-height: 1.8;
}

.tqns p + ul,
.tqns p + ol,
.tqns p + table,
.tqns p + blockquote {
    margin-top: 4px;
}

.tqns a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 179, 0, 0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
    word-break: break-word;
}

.tqns a:hover {
    color: var(--tqns-accent-2);
    text-decoration-color: var(--tqns-accent-2);
}

.tqns strong,
.tqns b {
    color: #ffffff;
    font-weight: 800;
}

.tqns em,
.tqns i {
    color: #e8ffe8;
}

.tqns ul,
.tqns ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

.tqns li {
    margin-bottom: 10px;
    line-height: 1.75;
    color: var(--tqns-text);
}

.tqns ul li::marker,
.tqns ol li::marker {
    color: var(--tqns-accent-2);
    font-weight: 800;
}

.tqns blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--tqns-accent);
    border-radius: 0 16px 16px 0;
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.12), rgba(19, 52, 10, 0.92));
    box-shadow: inset 0 0 0 1px rgba(0, 179, 0, 0.1);
}

.tqns blockquote p {
    margin: 0;
    color: #eaffea;
}

.tqns table {
    width: 100%;
    margin: 22px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--tqns-border-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 42, 6, 0.98), rgba(10, 30, 0, 0.98));
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.tqns thead th,
.tqns table th {
    background: linear-gradient(180deg, rgba(0, 179, 0, 0.2), rgba(0, 179, 0, 0.11));
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    text-align: left;
    padding: 15px 16px;
    border-right: 1px solid rgba(0, 179, 0, 0.18);
    border-bottom: 1px solid var(--tqns-border-strong);
}

.tqns thead th:last-child,
.tqns table th:last-child {
    border-right: 0;
}

.tqns table td {
    padding: 14px 16px;
    color: var(--tqns-text);
    border-right: 1px solid rgba(0, 179, 0, 0.12);
    border-bottom: 1px solid rgba(0, 179, 0, 0.12);
    vertical-align: top;
    background: transparent;
}

.tqns table td:last-child {
    border-right: 0;
}

.tqns table tr:last-child td {
    border-bottom: 0;
}

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

.tqns tbody tr:hover td {
    background: rgba(0, 179, 0, 0.08);
}

.tqns hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 0, 0.45), transparent);
    margin: 28px 0;
}

.tqns img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 22px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.tqns h1 + p {
    font-size: 1.04rem;
    color: #f4fff4;
}

.tqns h2 + p,
.tqns h3 + p {
    margin-top: 0;
}

.tqns table td:first-child,
.tqns table th:first-child {
    width: 32%;
}

@media (max-width: 767px) {
    .tqns {
        padding: 24px 14px 76px;
    }

    .tqns h1 {
        margin-bottom: 16px;
    }

    .tqns h2 {
        margin: 32px 0 14px;
        padding-bottom: 10px;
    }

    .tqns h2::after {
        width: 66px;
    }

    .tqns h3 {
        margin: 22px 0 10px;
    }

    .tqns p {
        font-size: 0.97rem;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .tqns ul,
    .tqns ol {
        padding-left: 20px;
        margin-bottom: 16px;
    }

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

    .tqns blockquote {
        margin: 20px 0;
        padding: 16px;
        border-radius: 0 14px 14px 0;
    }

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

    .tqns table {
        border: 0;
        background: transparent;
        box-shadow: none;
        margin: 18px 0;
    }

    .tqns thead {
        display: none;
    }

    .tqns tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tqns tr {
        border: 1px solid var(--tqns-border-strong);
        border-radius: 16px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(15, 42, 6, 0.98), rgba(10, 30, 0, 0.98));
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    }

    .tqns td {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 179, 0, 0.12);
        padding: 12px 14px;
    }

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

    .tqns table td:first-child {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .tqns {
        padding-left: 12px;
        padding-right: 12px;
    }

    .tqns h1 {
        font-size: 1.75rem;
    }

    .tqns h2 {
        font-size: 1.26rem;
    }

    .tqns h3 {
        font-size: 1.02rem;
    }

    .tqns p,
    .tqns li,
    .tqns td,
    .tqns th {
        font-size: 0.93rem;
    }

    .tqns blockquote {
        padding: 14px;
    }
}

#casino-info .w3k9m-table-wrapper,
#casino-info .k7n4p-casino-table,
#casino-info .k7n4p-casino-table tbody,
#casino-info .k7n4p-casino-table tr,
#casino-info .k7n4p-casino-table td {
    background: transparent !important;
}

#casino-info .k7n4p-casino-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 28, 4, 0.98), rgba(14, 44, 7, 0.98)) !important;
    border: 1px solid rgba(0, 179, 0, 0.24);
    border-radius: 16px;
    overflow: hidden;
}

#casino-info .k7n4p-casino-table tr {
    background: transparent !important;
}

#casino-info .k7n4p-casino-table td {
    background: transparent !important;
    color: #ffffff;
    border-right: 1px solid rgba(0, 179, 0, 0.16);
    border-bottom: 1px solid rgba(0, 179, 0, 0.16);
}

#casino-info .k7n4p-casino-table td:last-child {
    border-right: 0;
}

#casino-info .k7n4p-casino-table tr:last-child td {
    border-bottom: 0;
}

#casino-info .k7n4p-casino-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02) !important;
}

#casino-info .k7n4p-casino-table tr:hover td {
    background: rgba(0, 179, 0, 0.08) !important;
}

#casino-info .r2m8k-param {
    background: rgba(0, 179, 0, 0.08) !important;
    color: #7dff7d;
    font-weight: 700;
}

#casino-info .t5n3p-value {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92);
}
