/* Leon Casino Styles */

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.hd92k-header {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border-bottom: 2px solid #F2C94C;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.zm38v-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.zm38v-logo-link:hover {
    transform: scale(1.05);
}

.kf74n-logo-img {
    max-width: 80px;
    height: auto;
}

.jx93m-nav-menu {
    display: block;
}

.nv48l-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv48l-nav-list li {
    display: inline-block;
}

.nv48l-nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nv48l-nav-list a:hover {
    color: #F2C94C;
    background: rgba(242, 201, 76, 0.1);
}

.qw81z-btn-login {
    background: transparent;
    color: #F2C94C;
    border: 2px solid #F2C94C;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.qw81z-btn-login:hover {
    background: #F2C94C;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.4);
}

.ls49x-btn-signup {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b935 100%);
    color: #222222;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(242, 201, 76, 0.3);
}

.ls49x-btn-signup:hover {
    background: linear-gradient(135deg, #e6b935 0%, #d4a52e 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.5);
}

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

.op27k-burger span {
    width: 25px;
    height: 3px;
    background: #F2C94C;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

@media (max-width: 767px) {
    .op27k-burger {
        display: flex;
    }

    .jx93m-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #222222;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .jx93m-nav-menu.active {
        left: 0;
    }

    .nv48l-nav-list {
        flex-direction: column !important;
    }

    .nv48l-nav-list li {
        display: block;
        margin-bottom: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Online Counter */
.ty62k-online-counter {
    color: #4caf50;
    font-size: 14px;
    padding: 10px 0;
    animation: fadeInUp 1s ease;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

.zx74p-hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.qm91v-slider-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.bn48x-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.bn48x-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(34, 34, 34, 0.6) 100%);
}

.bn48x-slide.active {
    opacity: 1;
    z-index: 1;
}

.px82l-hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.px82l-hero-text h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.px82l-hero-text p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.ry49n-cta-button {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b935 100%);
    color: #222222;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(242, 201, 76, 0.4);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.ry49n-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(242, 201, 76, 0.6);
    color: #000;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 201, 76, 0.8);
    color: #222222;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #F2C94C;
    transform: translateY(-50%) scale(1.1);
}

.kl93x-nav-prev {
    left: 20px;
}

.kl93x-nav-next {
    right: 20px;
}

.vm28p-dots-wrap {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F2C94C;
    transform: scale(1.3);
}

/* Main Content */
.p3kl9-container {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.vn47x-main-content {
    background: transparent;
}

.bx92m-content-area {
    width: 100%;
}

.m4kl2-main-heading {
    font-size: 2.5rem;
    color: #F2C94C;
    text-align: center;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease;
}

.section-title {
    font-size: 2rem;
    color: #F2C94C;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F2C94C, transparent);
}

/* Tables */
.table-responsive {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.table {
    background: #1e1e1e;
    color: #e0e0e0;
    margin-bottom: 0;
}

.table thead {
    background: linear-gradient(135deg, #2a2a2a 0%, #222222 100%);
}

.table thead th {
    color: #F2C94C;
    font-weight: 700;
    border-bottom: 2px solid #F2C94C;
    padding: 15px;
    text-align: left;
}

.table tbody tr {
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.table tbody tr:hover {
    background: #252525;
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

.param-name {
    font-weight: 600;
    color: #F2C94C;
    width: 40%;
}

.param-value {
    color: #e0e0e0;
}

/* Sections */
.wq74m-casino-info,
.lp47k-mirrors-section,
.km38z-screenshots-section,
.nz72v-winners-section,
.ql84m-slot-game-section,
.hm93p-faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
    border-radius: 15px;
    padding: 40px 20px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease;
}

/* Mirrors Section */
.zx91m-update-time {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
    color: #fff;
    border-left: 4px solid #4caf50;
}

/* Screenshots */
.pv82l-screenshot-wrap {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pv82l-screenshot-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(242, 201, 76, 0.3);
}

.pv82l-screenshot-wrap img {
    border-radius: 5px;
}

.xy49n-mobile-slider {
    position: relative;
}

.screenshot-slide {
    display: none;
}

.screenshot-slide.active {
    display: block;
}

/* Slot Game */
.xv92k-slot-wrap {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.px47n-slot-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.reel {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F2C94C 0%, #e6b935 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: spinReel 0.1s infinite;
    animation-play-state: paused;
}

.wm73k-spin-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

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

/* FAQ */
.tn47k-faq-accordion .accordion-item {
    background: #1e1e1e;
    border: 1px solid #333;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.tn47k-faq-accordion .accordion-button {
    background: #2a2a2a;
    color: #e0e0e0;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}

.tn47k-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2a2a2a 0%, #222222 100%);
    color: #F2C94C;
    box-shadow: none;
}

.tn47k-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.tn47k-faq-accordion .accordion-body {
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    line-height: 1.7;
}

/* Footer */
.ft92k-footer {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    color: #e0e0e0;
    margin-top: 50px;
    border-top: 3px solid #F2C94C;
}

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

.km74x-footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.km74x-footer-menu a:hover {
    color: #F2C94C;
}

.zx84k-payment-logos img,
.lv39m-providers-logos img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.zx84k-payment-logos img:hover,
.lv39m-providers-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Fixed Widget */
.pn84v-fixed-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.pn84v-fixed-widget.show {
    opacity: 1;
    transform: translateY(0);
}

.qx72m-widget-inner {
    background: linear-gradient(135deg, #F2C94C 0%, #e6b935 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(242, 201, 76, 0.5);
    position: relative;
    min-width: 250px;
    color: #222222;
}

.widget-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #222222;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 25px;
    height: 25px;
}

.widget-text h3 {
    color: #222222;
}

/* Content Text Styling */
.yt83p-content-text {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.yt83p-content-text h2,
.yt83p-content-text h3,
.yt83p-content-text h4 {
    color: #F2C94C;
    margin: 25px 0 15px;
}

.yt83p-content-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.yt83p-content-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.yt83p-content-text table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.yt83p-content-text table th,
.yt83p-content-text table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: left;
}

.yt83p-content-text table th {
    background: #2a2a2a;
    color: #F2C94C;
    font-weight: 600;
}

.yt83p-content-text table tr:hover {
    background: #252525;
}

.yt83p-content-text a {
    color: #F2C94C;
    text-decoration: underline;
}

.yt83p-content-text a:hover {
    color: #e6b935;
}

.yt83p-content-text blockquote {
    border-left: 4px solid #F2C94C;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #b0b0b0;
}

.yt83p-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* WordPress Legacy Styles (unused but for obfuscation) */
.wp-block-image {
}

.wp-block-gallery {
}

.elementor-widget {
}

.yoast-schema {
}

.wp-embed-responsive {
}

/* Responsive */
@media (max-width: 768px) {
    .m4kl2-main-heading {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .zx74p-hero-slider {
        height: 400px;
    }

    .px82l-hero-text h2 {
        font-size: 1.8rem;
    }

    .px82l-hero-text p {
        font-size: 1rem;
    }

    .px47n-slot-display {
        gap: 10px;
    }

    .reel {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .pn84v-fixed-widget {
        bottom: 10px;
        right: 10px;
    }

    .qx72m-widget-inner {
        min-width: 200px;
        padding: 15px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .wq74m-casino-info,
    .lp47k-mirrors-section,
    .km38z-screenshots-section,
    .nz72v-winners-section,
    .ql84m-slot-game-section,
    .hm93p-faq-section {
        padding: 25px 15px;
    }

    .yt83p-content-text {
        padding: 20px 15px;
    }
}

.nsabgtd {
    --ns-bg: #0f141b;
    --ns-surface: #171e28;
    --ns-surface-2: #1d2633;
    --ns-border: #2a3546;
    --ns-text: #e9eef6;
    --ns-muted: #acb6c6;
    --ns-accent: #f2c94c;
    --ns-accent-2: #ffdd7a;
    --ns-success: #57d38c;
    --ns-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    --ns-radius: 28px;
    --ns-radius-md: 20px;
    --ns-radius-sm: 14px;
    max-width: 960px;
    margin: 32px auto;
    padding: 34px;
    color: var(--ns-text);
    background: radial-gradient(circle at top right, rgba(242, 201, 76, 0.13), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--ns-bg);
    border: 1px solid rgba(242, 201, 76, 0.14);
    border-radius: var(--ns-radius);
    box-shadow: var(--ns-shadow);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.72;
    overflow: hidden;
}

.nsabgtd *,
.nsabgtd *::before,
.nsabgtd *::after {
    box-sizing: border-box;
}

.nsabgtd h1,
.nsabgtd h2,
.nsabgtd h3,
.nsabgtd h4,
.nsabgtd h5,
.nsabgtd h6 {
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.22;
}

.nsabgtd h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.nsabgtd h2 {
    margin-top: 38px;
    padding: 18px 22px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    border-radius: var(--ns-radius-md);
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(242, 201, 76, 0.16);
}

.nsabgtd h3 {
    margin-top: 28px;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 750;
    color: var(--ns-accent);
}

.nsabgtd p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--ns-text);
}

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

.nsabgtd h2 + p,
.nsabgtd h3 + p {
    color: var(--ns-muted);
}

.nsabgtd strong {
    color: #fff;
    font-weight: 700;
}

.nsabgtd a {
    color: var(--ns-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 201, 76, 0.34);
    transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.nsabgtd a:hover {
    color: var(--ns-accent-2);
    border-color: rgba(255, 221, 122, 0.95);
}

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

.nsabgtd ul li,
.nsabgtd ol li {
    position: relative;
    list-style: none;
    margin: 0 0 12px;
    padding: 14px 16px 14px 50px;
    color: var(--ns-text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--ns-border);
    border-radius: var(--ns-radius-sm);
}

.nsabgtd ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 19px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ns-success), #7ae4a6);
    box-shadow: 0 0 0 4px rgba(87, 211, 140, 0.12);
}

.nsabgtd ol {
    counter-reset: ns-counter;
}

.nsabgtd ol li::before {
    counter-increment: ns-counter;
    content: counter(ns-counter);
    position: absolute;
    left: 12px;
    top: 11px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ns-accent), #ffbe55);
    color: #161616;
    font-size: 13px;
    font-weight: 800;
}

.nsabgtd table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    border: 1px solid var(--ns-border);
    border-radius: var(--ns-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.nsabgtd tbody,
.nsabgtd thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.nsabgtd th,
.nsabgtd td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--ns-border);
    font-size: 15px;
    color: var(--ns-text);
    background: transparent;
}

.nsabgtd th {
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.16), rgba(242, 201, 76, 0.05));
}

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

.nsabgtd blockquote {
    margin: 26px 0;
    padding: 20px 22px 20px 24px;
    border-left: 4px solid var(--ns-accent);
    border-radius: 0 18px 18px 0;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 255, 255, 0.03));
}

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

.nsabgtd hr {
    height: 1px;
    border: 0;
    margin: 30px 0;
    background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.42), transparent);
}

.nsabgtd p,
.nsabgtd li,
.nsabgtd td,
.nsabgtd th {
    overflow-wrap: anywhere;
}

.nsabgtd h2,
.nsabgtd h3 {
    scroll-margin-top: 90px;
}

.nsabgtd::-webkit-scrollbar,
.nsabgtd table::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.nsabgtd::-webkit-scrollbar-thumb,
.nsabgtd table::-webkit-scrollbar-thumb {
    background: rgba(242, 201, 76, 0.38);
    border-radius: 999px;
}

.nsabgtd::-webkit-scrollbar-track,
.nsabgtd table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .nsabgtd {
        margin: 24px 16px;
        padding: 26px 22px;
        border-radius: 24px;
    }

    .nsabgtd h2 {
        margin-top: 32px;
        padding: 16px 18px;
    }

    .nsabgtd th,
    .nsabgtd td {
        padding: 14px 14px;
    }
}

@media (max-width: 767px) {
    .nsabgtd {
        margin: 16px 12px;
        padding: 18px 14px;
        border-radius: 20px;
        line-height: 1.64;
    }

    .nsabgtd h1 {
        margin-bottom: 18px;
    }

    .nsabgtd h2 {
        margin-top: 26px;
        padding: 14px;
        font-size: 22px;
        border-radius: 16px;
    }

    .nsabgtd h3 {
        margin-top: 22px;
        font-size: 18px;
    }

    .nsabgtd p {
        font-size: 15px;
        margin-bottom: 14px;
    }

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

    .nsabgtd ul li,
    .nsabgtd ol li {
        padding: 12px 12px 12px 42px;
        margin-bottom: 10px;
        border-radius: 12px;
        font-size: 15px;
    }

    .nsabgtd ul li::before {
        left: 16px;
        top: 17px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px rgba(87, 211, 140, 0.12);
    }

    .nsabgtd ol li::before {
        left: 10px;
        top: 10px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .nsabgtd table {
        border-radius: 16px;
    }

    .nsabgtd tbody,
    .nsabgtd thead {
        min-width: 620px;
    }

    .nsabgtd th,
    .nsabgtd td {
        padding: 12px;
        font-size: 14px;
    }

    .nsabgtd blockquote {
        padding: 16px 16px 16px 18px;
        border-radius: 0 14px 14px 0;
    }
}

@media (max-width: 480px) {
    .nsabgtd {
        margin: 12px 8px;
        padding: 16px 12px;
    }

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

    .nsabgtd h2 {
        font-size: 20px;
        padding: 12px;
    }

    .nsabgtd p,
    .nsabgtd li,
    .nsabgtd td,
    .nsabgtd th {
        font-size: 14px;
    }
}

.rt83x-winners-table,
.qm74x-mirrors-table,
.kp38v-info-table,
.rt83x-winners-table thead,
.qm74x-mirrors-table thead,
.kp38v-info-table thead,
.rt83x-winners-table tbody,
.qm74x-mirrors-table tbody,
.kp38v-info-table tbody,
.rt83x-winners-table tr,
.qm74x-mirrors-table tr,
.kp38v-info-table tr,
.rt83x-winners-table th,
.qm74x-mirrors-table th,
.kp38v-info-table th,
.rt83x-winners-table td,
.qm74x-mirrors-table td,
.kp38v-info-table td {
    background: transparent !important;
    background-color: transparent !important;
}

.wk49m-winners-table-wrap,
.vb29k-mirrors-table-wrap,
.bn92x-table-wrapper {
    background: transparent !important;
}

.table > :not(caption) > * > *,
.rt83x-winners-table.table > :not(caption) > * > *,
.qm74x-mirrors-table.table > :not(caption) > * > *,
.kp38v-info-table.table > :not(caption) > * > * {
    background-color: transparent !important;
    box-shadow: none !important;
}

.rt83x-winners-table thead th,
.qm74x-mirrors-table thead th {
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.16), rgba(242, 201, 76, 0.05)) !important;
}

.kp38v-info-table .param-name {
    background: rgba(242, 201, 76, 0.06) !important;
}

.rt83x-winners-table tbody tr:hover,
.qm74x-mirrors-table tbody tr:hover,
.kp38v-info-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.rt83x-winners-table th,
.rt83x-winners-table td,
.qm74x-mirrors-table th,
.qm74x-mirrors-table td,
.kp38v-info-table th,
.kp38v-info-table td {
    color: #ffffff !important;
}

.kp38v-info-table .param-name {
    color: #f2c94c !important;
}

.rt83x-winners-table .text-success,
.qm74x-mirrors-table .text-success,
.kp38v-info-table .text-success {
    color: #4ade80 !important;
}

.hd92k-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(24, 24, 24, 0.94));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 201, 76, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.kf74n-logo-img {
    max-height: 56px;
    width: auto;
    display: block;
}

.op27k-burger {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(242, 201, 76, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    gap: 5px;
    vertical-align: middle;
}

.op27k-burger span {
    width: 20px;
    height: 2px;
    margin: 0;
    background: #f2c94c;
    border-radius: 999px;
}

.jx93m-nav-menu {
    transition: all 0.3s ease;
}

.nv48l-nav-list {
    list-style: none;
}

.nv48l-nav-list a {
    font-size: 15px;
    line-height: 1.2;
}

.qw81z-btn-login,
.ls49x-btn-signup {
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .hd92k-header .container {
        max-width: 100%;
    }

    .hd92k-header .row {
        --bs-gutter-x: 12px;
    }

    .kf74n-logo-img {
        max-height: 48px;
    }

    .qw81z-btn-login,
    .ls49x-btn-signup {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .hd92k-header {
        border-bottom: 1px solid rgba(242, 201, 76, 0.14);
    }

    .hd92k-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hd92k-header .row {
        position: relative;
        --bs-gutter-x: 10px;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .kf74n-logo-img {
        max-height: 42px;
    }

    .hd92k-header .col-6.text-end {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .hd92k-header .d-inline-flex.gap-2.me-2 {
        margin-right: 0 !important;
        gap: 8px !important;
    }

    .hd92k-header .d-inline-flex.gap-2.me-2 .btn {
        min-width: auto;
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    .op27k-burger {
        display: inline-flex;
        flex: 0 0 46px;
    }

    .jx93m-nav-menu {
        position: fixed;
        top: 74px;
        left: 12px;
        right: 12px;
        width: auto;
        height: auto;
        max-height: calc(100vh - 92px);
        padding: 14px;
        overflow-y: auto;
        background: linear-gradient(180deg, #1b1f28 0%, #131821 100%);
        border: 1px solid rgba(242, 201, 76, 0.12);
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
        left: 12px;
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .jx93m-nav-menu.active {
        left: 12px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nv48l-nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        width: 100%;
    }

    .nv48l-nav-list li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .nv48l-nav-list li a {
        display: flex;
        align-items: center;
        min-height: 48px;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nv48l-nav-list li a:hover,
    .nv48l-nav-list li a:focus {
        color: #f2c94c;
        background: rgba(242, 201, 76, 0.08);
        border-color: rgba(242, 201, 76, 0.18);
    }

    .nv48l-nav-list li.d-none {
        display: none !important;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.48);
        z-index: 998;
    }

    .hd92k-header {
        z-index: 1001;
    }
}

@media (max-width: 575px) {
    .hd92k-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hd92k-header .row {
        --bs-gutter-x: 8px;
    }

    .kf74n-logo-img {
        max-height: 38px;
    }

    .hd92k-header .d-inline-flex.gap-2.me-2 {
        gap: 6px !important;
    }

    .hd92k-header .d-inline-flex.gap-2.me-2 .btn {
        padding: 7px 9px;
        font-size: 11px;
        min-height: 36px;
    }

    .qw81z-btn-login,
    .ls49x-btn-signup {
        border-radius: 9px;
    }

    .op27k-burger {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        flex: 0 0 42px;
    }

    .op27k-burger span {
        width: 18px;
    }

    .jx93m-nav-menu {
        top: 68px;
        left: 10px;
        right: 10px;
        padding: 12px;
        border-radius: 16px;
        max-height: calc(100vh - 82px);
    }

    .jx93m-nav-menu.active {
        left: 10px;
    }

    .nv48l-nav-list li a {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 389px) {
    .hd92k-header .d-inline-flex.gap-2.me-2 .btn {
        padding: 7px 8px;
        font-size: 10px;
    }

    .kf74n-logo-img {
        max-height: 34px;
    }

    .op27k-burger {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}