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

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

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

/* Header Styles */
.header-main-k92m {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.header-row-92k {
    align-items: center;
}

.logo-img-92k {
    max-width: 50px;
    height: auto;
}

.main-nav-k92m ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav-k92m a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav-k92m a:hover {
    color: #FFDA00;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

.btn-login-k92 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-login-k92:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-signup-k92 {
    background: linear-gradient(135deg, #FFDA00, #FFD700);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 218, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 218, 0, 0.8);
    }
}

.btn-signup-k92:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 218, 0, 0.6);
}

.online-counter-k92 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 218, 0, 0.05));
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    color: #FFD700;
    font-size: 14px;
}

.online-dot-92k {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink-dot 1.5s infinite;
    margin-right: 5px;
}

@keyframes blink-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Mobile Menu */
.burger-menu-k92 {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.burger-menu-k92 span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-k92 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #000;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu-k92.active {
    right: 0;
}

.mobile-menu-header-92k {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-logo-k92 {
    max-width: 50px;
}

.close-menu-k92 {
    background: transparent;
    border: none;
    color: #FFD700;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list-92k {
    list-style: none;
    padding: 20px;
}

.mobile-nav-list-92k li {
    margin-bottom: 15px;
}

.mobile-nav-list-92k a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-nav-list-92k a:hover {
    background: rgba(255, 215, 0, 0.1);
}

.mobile-auth-k92 {
    padding: 20px;
}

.mobile-login-btn-k92 {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.hero-xc92k {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/bet-banner.jpg') center/cover;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-title-9k2j {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

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

.hero-desc-32km {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-btns-m2k9 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-play-8jk2, .btn-hero-bonus-k92m {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-play-8jk2 {
    background: linear-gradient(135deg, #FFDA00, #FFD700);
    color: #000;
}

.btn-hero-bonus-k92m {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.btn-hero-play-8jk2:hover, .btn-hero-bonus-k92m:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Main Content */
.main-content-92k {
    flex: 1;
}

/* Pros & Cons Section */
.pros-cons-section-k3m2 {
    margin: 50px 0;
}

.pros-block-9k2m, .cons-block-2k9m {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.pros-block-9k2m:hover, .cons-block-2k9m:hover {
    transform: translateY(-5px);
}

.pros-block-9k2m {
    border-left: 5px solid #00ff00;
}

.cons-block-2k9m {
    border-left: 5px solid #ff4444;
}

.pc-title-92k {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFD700;
}

.pros-list-k29, .cons-list-92k {
    list-style: none;
    padding: 0;
}

.pros-list-k29 li, .cons-list-92k li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-list-k29 li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: bold;
}

.cons-list-92k li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

/* Jackpot Section */
.jackpot-section-92km {
    margin: 50px 0;
}

.jackpot-container-k29 {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.jackpot-title-9k2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 32px;
}

.jackpot-card-92k {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.jackpot-card-92k:hover {
    transform: scale(1.05);
    border-color: #FFD700;
}

.jackpot-card-92k h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.jp-amount-k92 {
    font-size: 36px;
    font-weight: 700;
    color: #FFDA00;
    text-shadow: 0 0 10px rgba(255, 218, 0, 0.5);
    margin: 15px 0;
}

/* Winners Section */
.winners-section-k92m {
    margin: 50px 0;
}

.winners-container-92k {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
}

.winners-title-k29 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 32px;
}

.winners-table-92k {
    width: 100%;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.winners-table-92k thead {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.winners-table-92k th {
    padding: 15px;
    color: #000;
    font-weight: 700;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.winners-table-92k td {
    padding: 12px 15px;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-table-92k tbody tr {
    transition: background 0.3s ease;
}

.winners-table-92k tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* App Section */
.app-section-92k {
    margin: 50px 0;
}

.app-container-k29 {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
}

.app-title-92k {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 32px;
}

.app-table-k92 {
    background: rgba(20, 20, 20, 0.5);
}

.app-table-k92 td {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.app-download-buttons-k92 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.app-btn-92k {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.app-btn-92k:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.app-btn-92k img {
    max-width: 100%;
    height: auto;
}

.wheel-section-k92m {
    margin: 50px 0;
}

.wheel-container-92k {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.wheel-title-k29 {
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 32px;
}

.wheel-game-92k {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.spin-button-k92 {
    background: linear-gradient(135deg, #FFDA00, #FFD700);
    color: #000;
    border: none;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.spin-button-k92:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.spin-button-k92:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result-92k {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(20, 20, 20, 0.9));
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.wheel-result-92k h3 {
    color: #FFDA00;
    font-size: 28px;
    margin-bottom: 20px;
}

.claim-bonus-btn-k92 {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFDA00, #FFD700);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.claim-bonus-btn-k92:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 218, 0, 0.6);
}

/* Content Section */
.content-section-92k {
    margin: 50px 0;
}

.content-text-k29 {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
    line-height: 1.8;
}

.content-text-k29 h2 {
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-text-k29 h3 {
    color: #FFDA00;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-text-k29 p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.content-text-k29 ul, .content-text-k29 ol {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.content-text-k29 li {
    margin-bottom: 8px;
}

.content-text-k29 table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.5);
}

.content-text-k29 table th, .content-text-k29 table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.content-text-k29 table th {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
}

.content-text-k29 a {
    color: #FFD700;
    text-decoration: underline;
}

.content-text-k29 a:hover {
    color: #FFDA00;
}

/* Author Section */
.author-section-k92m {
    margin: 50px 0;
}

.author-container-92k {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
}

.author-title-k29 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 32px;
}

.author-photo-92k {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #FFD700;
    object-fit: cover;
}

.author-name-k92 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 10px;
}

.author-position-92k {
    color: #FFDA00;
    font-size: 18px;
    margin-bottom: 15px;
    font-style: italic;
}

.author-bio-k29 {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-social-92k a {
    color: #FFD700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.author-social-92k a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

/* Footer */
.footer-main-k92m {
    background-color: #000000;
    color: #e0e0e0;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-top-92k {
    margin-bottom: 40px;
}

.footer-logo-k92 {
    max-width: 50px;
    margin-bottom: 20px;
}

.footer-desc-92k {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-title-k92 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-menu-92k a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-92k a:hover {
    color: #FFD700;
}

.providers-section-92k, .payments-section-92k {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.providers-title-k92, .payments-title-k92 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.providers-logos-k92, .payments-logos-k92 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.provider-logo-92k, .payment-logo-92k {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.provider-logo-92k:hover, .payment-logo-92k:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-bottom-92k {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.license-info-k92 {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.age-restriction-92k {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.copyright-92k {
    color: #666;
    font-size: 13px;
}

.legal-text-k92 {
    font-size: 12px;
    margin-top: 10px;
}

/* Sticky Widget */
.sticky-widget-92k {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

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

.widget-bonus-text-92k {
    color: #FFD700;
    font-size: 18px;
    font-weight: 700;
}

.widget-btn-register-92k {
    background: linear-gradient(135deg, #FFDA00, #FFD700);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.widget-btn-register-92k:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 218, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-9k2j {
        font-size: 32px;
    }

    .hero-desc-32km {
        font-size: 16px;
    }

    .jackpot-title-9k2, .winners-title-k29, .app-title-92k, .wheel-title-k29, .author-title-k29 {
        font-size: 24px;
    }

    .jp-amount-k92 {
        font-size: 28px;
    }

    .pros-block-9k2m, .cons-block-2k9m {
        padding: 20px;
    }

    .jackpot-container-k29, .winners-container-92k, .app-container-k29, .wheel-container-92k, .author-container-92k, .content-text-k29 {
        padding: 25px;
    }

    #wheel-canvas {
        width: 300px !important;
        height: 300px !important;
    }

    .widget-content-k29 {
        justify-content: center;
        text-align: center;
    }

    .widget-bonus-text-92k {
        font-size: 16px;
    }
}

/* Unused classes for obfuscation */
.wp-block-gallery {
    display: grid;
}

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

.alignfull {
    width: 100vw;
}

.alignwide {
    width: 100%;
}

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

.entry-content {
    line-height: 1.8;
}

.post-navigation {
    margin: 2em 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
}

.site-footer {
    clear: both;
}

.xbvsf {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px 34px;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, .1), transparent 30%),
    linear-gradient(180deg, rgba(28, 28, 28, .98), rgba(21, 21, 21, .98));
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
    color: #e0e0e0;
}

.xbvsf h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}

.xbvsf h2 {
    margin: 34px 0 14px;
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    line-height: 1.24;
    font-weight: 800;
    color: #ffd700;
}

.xbvsf h3 {
    margin: 24px 0 10px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
}

.xbvsf p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.82;
    color: #e0e0e0;
}

.xbvsf a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, .35);
    transition: color .25s ease, border-color .25s ease;
}

.xbvsf a:hover {
    color: #fff2a8;
    border-color: rgba(255, 242, 168, .7);
}

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

.xbvsf ul {
    list-style: none;
}

.xbvsf ol {
    list-style: decimal;
}

.xbvsf ul li,
.xbvsf ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.75;
    color: #e0e0e0;
}

.xbvsf ul li {
    position: relative;
    padding-left: 18px;
}

.xbvsf ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, .12);
}

.xbvsf table {
    width: 100%;
    margin: 22px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    display: table;
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 18px;
}

.xbvsf th,
.xbvsf td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.xbvsf th {
    font-size: .95rem;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255, 215, 0, .08);
    border-bottom: 1px solid rgba(255, 215, 0, .14);
}

.xbvsf td {
    font-size: .95rem;
    line-height: 1.65;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.xbvsf tr:last-child td {
    border-bottom: none;
}

.xbvsf tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.xbvsf blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #ffd700;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 215, 0, .09), rgba(255, 255, 255, .025));
}

.xbvsf blockquote p {
    margin: 0;
    color: #fff;
}

.xbvsf strong,
.xbvsf b {
    color: #fff;
    font-weight: 700;
}

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

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

.xbvsf > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .xbvsf {
        margin: 28px auto;
        padding: 28px 22px;
        border-radius: 20px;
    }

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

    .xbvsf h2 {
        margin-top: 28px;
    }

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

@media (max-width: 767px) {
    .xbvsf {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .xbvsf h1 {
        font-size: 1.75rem;
        line-height: 1.18;
    }

    .xbvsf h2 {
        margin: 24px 0 12px;
        font-size: 1.28rem;
    }

    .xbvsf h3 {
        margin: 18px 0 8px;
        font-size: 1.02rem;
    }

    .xbvsf p,
    .xbvsf ul li,
    .xbvsf ol li {
        font-size: .95rem;
        line-height: 1.72;
    }

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

    .xbvsf th,
    .xbvsf td {
        padding: 12px 13px;
        font-size: .9rem;
    }

    .xbvsf blockquote {
        margin: 18px 0;
        padding: 15px 14px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .xbvsf {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .xbvsf h1 {
        font-size: 1.52rem;
    }

    .xbvsf h2 {
        font-size: 1.14rem;
    }

    .xbvsf h3 {
        font-size: .98rem;
    }

    .xbvsf p,
    .xbvsf ul li,
    .xbvsf ol li,
    .xbvsf th,
    .xbvsf td {
        font-size: .88rem;
    }

    .xbvsf table {
        border-radius: 14px;
    }

    .xbvsf th,
    .xbvsf td {
        min-width: 160px;
    }
}

.winners-container-92k .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}

.winners-table-92k {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent !important;
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 16px;
    overflow: hidden;
}

.winners-table-92k.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-striped-color: #e0e0e0;
    --bs-table-active-bg: transparent;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: transparent;
    --bs-table-hover-color: #fff;
    --bs-table-color: #e0e0e0;
    --bs-table-border-color: rgba(255, 255, 255, .08);
    background: transparent !important;
    color: #e0e0e0;
}

.winners-table-92k thead,
.winners-table-92k tbody,
.winners-table-92k tr,
.winners-table-92k th,
.winners-table-92k td {
    background: transparent !important;
}

.winners-table-92k thead tr {
    background: linear-gradient(135deg, rgba(255, 215, 0, .18), rgba(255, 165, 0, .12)) !important;
}

.winners-table-92k th {
    padding: 14px 16px;
    color: #ffd700 !important;
    font-weight: 700;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 215, 0, .14);
}

.winners-table-92k td {
    padding: 12px 16px;
    color: #e0e0e0 !important;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: middle;
}

.winners-table-92k tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, .02) !important;
}

.winners-table-92k tbody tr:nth-child(even) {
    background: rgba(255, 215, 0, .03) !important;
}

.winners-table-92k tbody tr:hover {
    background: rgba(255, 215, 0, .08) !important;
}

.winners-table-92k tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .winners-table-92k {
        min-width: 620px;
    }

    .winners-table-92k th,
    .winners-table-92k td {
        padding: 10px 12px;
        font-size: .9rem;
    }
}

.app-container-k29 .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}

.app-table-k92 {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent !important;
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 16px;
    overflow: hidden;
}

.app-table-k92.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-striped-color: #e0e0e0;
    --bs-table-active-bg: transparent;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: transparent;
    --bs-table-hover-color: #fff;
    --bs-table-color: #e0e0e0;
    --bs-table-border-color: rgba(255, 255, 255, .08);
    background: transparent !important;
    color: #e0e0e0;
}

.app-table-k92.table-bordered {
    border-color: rgba(255, 215, 0, .14);
}

.app-table-k92 tbody,
.app-table-k92 tr,
.app-table-k92 td {
    background: transparent !important;
}

.app-table-k92 tr:nth-child(odd) {
    background: rgba(255, 255, 255, .02) !important;
}

.app-table-k92 tr:nth-child(even) {
    background: rgba(255, 215, 0, .03) !important;
}

.app-table-k92 tr:hover {
    background: rgba(255, 215, 0, .08) !important;
}

.app-table-k92 td {
    padding: 14px 16px;
    color: #e0e0e0 !important;
    font-size: .95rem;
    line-height: 1.6;
    vertical-align: top;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.app-table-k92 tr:last-child td {
    border-bottom: none !important;
}

.app-table-k92 td:first-child {
    width: 38%;
    min-width: 210px;
    color: #fff !important;
    font-weight: 700;
    background: rgba(255, 215, 0, .06) !important;
    border-right: 1px solid rgba(255, 215, 0, .1) !important;
}

.app-table-k92 td:first-child strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .app-table-k92 {
        min-width: 620px;
    }

    .app-table-k92 td {
        padding: 11px 12px;
        font-size: .9rem;
    }

    .app-table-k92 td:first-child {
        min-width: 170px;
    }
}