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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.65;
    overflow-x: hidden;
}

.xw29jd-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header-kd92j {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner-8djk2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left-md82j {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-img-8djk2 {
    max-width: 180px;
    height: auto;
}

.header-nav-kd92j {
    display: flex;
}

.nav-list-md82j {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nav-link-kd93j {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link-kd93j:hover {
    color: #ffd700;
}

.header-right-md82j {
    display: flex;
    align-items: center;
    gap: 20px;
}

.online-counter-kd92j {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.online-dot-8djk2 {
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: pulse-kd92j 2s infinite;
}

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

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

.btn-login-8djk2,
.btn-signup-md82j {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-login-8djk2 {
    background-color: #0062cc;
    color: #fff;
}

.btn-login-8djk2:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-signup-md82j {
    background-color: #28a745;
    color: #fff;
}

.btn-signup-md82j:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.p8dj2k-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/banner-1w.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.kd92js-hero-content {
    max-width: 800px;
}

.m3kd9s-hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.js83kd-hero-subtitle {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-92jsk {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-92jsk:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Main Content */
.jd83ks-main-content {
    padding: 40px 0;
}

.section-title-8djks {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

/* Casino Info Table */
.kd83js-casino-info {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-wrapper-kd92j {
    overflow-x: auto;
}

.info-table-3jd8k {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.info-table-3jd8k tr {
    border-bottom: 1px solid #e0e0e0;
}

.info-table-3jd8k td {
    padding: 15px 20px;
    text-align: left;
}

.param-8djk2 {
    font-weight: 600;
    color: #555;
    width: 35%;
}

.value-kd93j {
    color: #333;
}

/* Winners Section */
.md92js-winners {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.winners-grid-kd82j {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.winner-card-8jd2k {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
}

.winner-card-8jd2k:hover {
    transform: translateY(-3px);
}

.winner-pos-k2d8j {
    font-weight: 700;
    color: #ffc107;
    font-size: 18px;
}

.winner-name-md82j {
    flex: 1;
    margin: 0 15px;
    color: #333;
}

.winner-amount-8dk2j {
    font-weight: 600;
    color: #28a745;
    font-size: 16px;
}

/* Tournaments */
.kd92js-tournaments {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tournaments-wrapper-8jd2k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.tournament-card-kd93j {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s;
}

.tournament-card-kd93j:hover {
    transform: translateY(-5px);
}

.tournament-title-md82j {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tournament-desc-8dj2k {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.tournament-timer-kd82j {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.timer-value-md92j {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.tournament-prize-kd82j {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-tournament-kd92j {
    display: block;
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #667eea;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-tournament-kd92j:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Slot Game */
.slot-game-kd92j {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 45px;
    text-align: center;
    color: #fff;
}

.slot-machine-8djk2 {
    max-width: 500px;
    margin: 30px auto;
}

.slot-reels-kd93j {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reel-md82j {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-spin-kd92j {
    padding: 18px 60px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-spin-kd92j:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.btn-spin-kd92j:active {
    transform: scale(0.95);
}

.slot-result-8djk2 {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.result-text-md92j {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-claim-kd82j {
    display: inline-block;
    padding: 14px 40px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-claim-kd82j:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Review Content */
.review-content-kd92j {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-content-kd92j h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.review-content-kd92j h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.review-content-kd92j p {
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.review-content-kd92j li {
    margin-bottom: 10px;
}

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

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

.review-content-kd92j table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section-8djk2 {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.review-card-md82j {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card-md82j:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.review-avatar-8djk2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-md82j {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.stars-8djk2 {
    color: #ffc107;
    font-size: 18px;
}

.review-text-md92j {
    line-height: 1.6;
    color: #555;
}

/* Review Form */
.review-form-wrapper-kd92j {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.form-title-8djk2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.review-form-md82j {
    max-width: 600px;
}

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

.form-group-kd93j label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-input-8djk2,
.form-textarea-kd92j {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.form-input-8djk2:focus,
.form-textarea-kd92j:focus {
    outline: none;
    border-color: #28a745;
}

.btn-submit-review-md82j {
    padding: 14px 35px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-review-md82j:hover {
    background: #218838;
    transform: translateY(-2px);
}

.form-success-kd93j {
    margin-top: 20px;
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

/* Footer */
.footer-kd92j {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-inner-8djk2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo-kd93j {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-desc-8djk2 {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-title-kd93j {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-menu-8djk2 {
    list-style: none;
}

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

.footer-link-md82j {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-link-md82j:hover {
    color: #ffd700;
    opacity: 1;
}

.payment-logos-kd92j,
.providers-logos-kd92j {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-logo-8djk2,
.provider-logo-8djk2 {
    width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-bottom-kd93j {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright-md82j {
    font-size: 14px;
    margin-bottom: 10px;
}

.legal-text-kd93j {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.legal-links-md82j {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-link-8djk2 {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.legal-link-8djk2:hover {
    opacity: 1;
}

/* Floating Widget */
.floating-widget-kd92j {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: float-widget-kd92j 3s ease-in-out infinite;
}

@keyframes float-widget-kd92j {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.widget-content-8djk2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.widget-text-md82j {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

.widget-btn-kd93j {
    padding: 12px 28px;
    background: #fff;
    color: #28a745;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.widget-btn-kd93j:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Unused/Extra Styles for uniqueness */
.legacy-box-kd92j {
    display: none;
}

.deprecated-element-8djk2 {
    visibility: hidden;
}

.old-wrapper-md82j {
    opacity: 0;
}

.unused-container-kd93j {
    position: absolute;
    left: -9999px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .header-nav-kd92j {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s;
    }

    .header-nav-kd92j.active {
        left: 0;
    }

    .nav-list-md82j {
        flex-direction: column;
        gap: 15px;
    }

    .burger-menu-kd92j {
        display: flex;
    }

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

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

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

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

    .js83kd-hero-subtitle {
        font-size: 18px;
    }

    .tournaments-wrapper-8jd2k {
        grid-template-columns: 1fr;
    }

    .slot-reels-kd93j {
        gap: 10px;
    }

    .reel-md82j {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .floating-widget-kd92j {
        bottom: 10px;
        right: 10px;
        padding: 15px;
    }

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

@media (max-width: 768px) {
    .header-buttons-kd93j {
        gap: 5px;
    }

    .btn-login-8djk2,
    .btn-signup-md82j {
        padding: 8px 16px;
        font-size: 14px;
    }

    .online-counter-kd92j {
        font-size: 12px;
    }

    .winners-grid-kd82j {
        grid-template-columns: 1fr;
    }

    .reviews-grid-kd92j {
        grid-template-columns: 1fr;
    }
}

:root {
    --lw-header: #0a0a0a;
    --lw-footer: #0a0a0a;
    --lw-menu: #0a0a0a;
    --lw-btn-accent: #ffd400;
    --lw-btn-accent-hover: #ffdf47;
    --lw-btn-primary: #f3c300;
    --lw-btn-primary-hover: #ffd84d;
    --lw-bg: #171717;
    --lw-surface: #202020;
    --lw-surface-2: #292929;
    --lw-border: #3a3a3a;
    --lw-text: #f4f4f4;
    --lw-muted: #b7b7b7;
    --lw-success: #49d68a;
    --lw-danger: #ff6767;
    --lw-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    --lw-radius-sm: 10px;
    --lw-radius-md: 18px;
    --lw-radius-lg: 28px;
    --lw-font: "Inter", "Open Sans", "Roboto", sans-serif;
    --lw-container: 1280px;
    --lw-trans: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top right, rgba(255, 212, 0, 0.08), transparent 24%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 20%),
    var(--lw-bg);
    color: var(--lw-text);
    font-family: var(--lw-font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--lw-btn-accent);
    text-decoration: none;
    transition: color var(--lw-trans), opacity var(--lw-trans), transform var(--lw-trans);
}

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

.container {
    width: min(100% - 32px, var(--lw-container));
    margin-inline: auto;
}

.xw29jd-wrapper {
    min-height: 100vh;
}

.section-title-8djks {
    margin: 0 0 22px;
    font-size: clamp(1.55rem, 2vw, 2.1rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--lw-text);
}

.section-title-8djks::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lw-btn-accent), transparent);
}

.btn-login-8djk2,
.btn-signup-md82j,
.btn-92jsk,
.btn-tournament-kd92j,
.btn-spin-kd92j,
.btn-claim-kd82j,
.btn-submit-review-md82j,
.widget-btn-kd93j {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--lw-trans), box-shadow var(--lw-trans), background var(--lw-trans), color var(--lw-trans), border-color var(--lw-trans);
}

.btn-login-8djk2 {
    min-height: 44px;
    padding: 0 18px;
    background: transparent;
    border: 2px solid var(--lw-btn-accent);
    color: var(--lw-btn-accent);
}

.btn-login-8djk2:hover {
    background: rgba(255, 212, 0, 0.12);
    color: var(--lw-btn-accent-hover);
    transform: translateY(-1px);
}

.btn-signup-md82j,
.btn-92jsk,
.btn-tournament-kd92j,
.btn-claim-kd82j,
.btn-submit-review-md82j,
.widget-btn-kd93j {
    min-height: 46px;
    padding: 0 22px;
    background: linear-gradient(180deg, var(--lw-btn-primary), #e6b700);
    color: #111;
    box-shadow: 0 10px 24px rgba(255, 212, 0, 0.2);
}

.btn-signup-md82j:hover,
.btn-92jsk:hover,
.btn-tournament-kd92j:hover,
.btn-claim-kd82j:hover,
.btn-submit-review-md82j:hover,
.widget-btn-kd93j:hover {
    background: linear-gradient(180deg, var(--lw-btn-primary-hover), var(--lw-btn-primary));
    color: #111;
    transform: translateY(-2px);
}

.header-kd92j {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner-8djk2 {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left-md82j {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.logo-link-kd93j {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img-8djk2 {
    width: 180px;
    height: 50px;
    object-fit: contain;
}

.header-nav-kd92j {
    display: block;
}

.nav-list-md82j {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link-kd93j {
    position: relative;
    color: var(--lw-text);
    font-weight: 700;
    font-size: 0.96rem;
    line-height: 1;
    padding: 10px 0;
}

.nav-link-kd93j::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--lw-btn-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--lw-trans);
}

.nav-link-kd93j:hover {
    color: var(--lw-btn-accent);
}

.nav-link-kd93j:hover::after {
    transform: scaleX(1);
}

.header-right-md82j {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.online-counter-kd92j {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--lw-muted);
    white-space: nowrap;
}

.online-dot-8djk2 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lw-success);
    box-shadow: 0 0 0 0 rgba(73, 214, 138, 0.55);
    animation: pulseonline 1.8s infinite;
}

@keyframes pulseonline {
    0% {
        box-shadow: 0 0 0 0 rgba(73, 214, 138, 0.55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(73, 214, 138, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(73, 214, 138, 0);
    }
}

.online-text-md82j {
    font-size: 0.92rem;
}

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

.burger-menu-kd92j {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--lw-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu-kd92j span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--lw-text);
    transition: transform var(--lw-trans), opacity var(--lw-trans);
}

.p8dj2k-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: linear-gradient(110deg, rgba(10, 10, 10, 0.85) 15%, rgba(10, 10, 10, 0.38) 52%, rgba(10, 10, 10, 0.12) 100%),
    url("/hero-banner.jpg") center/cover no-repeat;
}

.p8dj2k-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 212, 0, 0.16), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 16%);
    pointer-events: none;
}

.kd92js-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, var(--lw-container));
    margin-inline: auto;
    padding: 90px 0 100px;
    max-width: 760px;
}

.m3kd9s-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.js83kd-hero-subtitle {
    margin: 0 0 28px;
    max-width: 620px;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: rgba(244, 244, 244, 0.86);
}

.btn-hero {
    min-width: 224px;
    min-height: 56px;
    font-size: 1rem;
    padding: 0 28px;
}

.jd83ks-main-content {
    padding: 42px 0 72px;
}

.kd83js-casino-info,
.md92js-winners,
.kd92js-tournaments,
.slot-game-kd92j,
.review-content-kd92j,
.reviews-section-8djk2 {
    margin-bottom: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--lw-radius-lg);
    padding: 28px;
    box-shadow: var(--lw-shadow);
    position: relative;
    overflow: hidden;
}

.kd83js-casino-info::before,
.md92js-winners::before,
.kd92js-tournaments::before,
.slot-game-kd92j::before,
.review-content-kd92j::before,
.reviews-section-8djk2::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.55), transparent);
}

.table-wrapper-kd92j {
    overflow-x: auto;
    border-radius: var(--lw-radius-md);
    background: rgba(0, 0, 0, 0.14);
}

.info-table-3jd8k {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
}

.info-table-3jd8k tr:not(:last-child) {
    border-bottom: 1px solid var(--lw-border);
}

.param-8djk2,
.value-kd93j {
    padding: 16px 18px;
    vertical-align: top;
    font-size: 0.98rem;
}

.param-8djk2 {
    width: 34%;
    color: var(--lw-muted);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
}

.value-kd93j {
    color: var(--lw-text);
}

.winners-grid-kd82j {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.winner-card-8jd2k {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: var(--lw-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform var(--lw-trans), border-color var(--lw-trans), box-shadow var(--lw-trans);
}

.winner-card-8jd2k:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 212, 0, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.winner-pos-k2d8j {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 212, 0, 0.12);
    color: var(--lw-btn-accent);
    font-weight: 800;
    font-size: 0.92rem;
}

.winner-name-md82j {
    color: var(--lw-text);
    font-weight: 700;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.winner-amount-8dk2j {
    color: var(--lw-success);
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.tournaments-wrapper-8jd2k {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tournament-card-kd93j {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: var(--lw-radius-md);
    background: linear-gradient(180deg, rgba(255, 212, 0, 0.06), rgba(255, 255, 255, 0.02)),
    var(--lw-surface);
    border: 1px solid rgba(255, 212, 0, 0.14);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.tournament-title-md82j {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--lw-text);
}

.tournament-desc-8dj2k {
    margin: 0 0 16px;
    color: var(--lw-muted);
    flex: 1;
}

.tournament-timer-kd82j {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--lw-border);
}

.timer-label-8jdk2 {
    color: var(--lw-muted);
    font-size: 0.92rem;
}

.timer-value-md92j {
    color: var(--lw-btn-accent);
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.tournament-prize-kd82j {
    margin-bottom: 18px;
    color: var(--lw-text);
    font-weight: 700;
}

.tournament-prize-kd82j strong {
    color: var(--lw-success);
}

.btn-tournament-kd92j {
    width: 100%;
    min-height: 48px;
}

.slot-machine-8djk2 {
    max-width: 680px;
    margin: 0 auto;
    padding: 10px 0 4px;
    text-align: center;
}

.slot-reels-kd93j {
    display: inline-grid;
    grid-template-columns: repeat(3, 110px);
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 212, 0, 0.08), rgba(255, 255, 255, 0.02)),
    #121212;
    border: 1px solid rgba(255, 212, 0, 0.18);
    box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.04), 0 16px 30px rgba(0, 0, 0, 0.28);
}

.reel-md82j {
    height: 110px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.1rem;
    background: linear-gradient(180deg, #2b2b2b, #1d1d1d);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-spin-kd92j {
    min-width: 230px;
    min-height: 56px;
    margin-top: 24px;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.slot-result-8djk2 {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--lw-radius-md);
    background: rgba(73, 214, 138, 0.08);
    border: 1px solid rgba(73, 214, 138, 0.22);
}

.result-text-md92j {
    margin: 0 0 14px;
    color: var(--lw-text);
    font-size: 1rem;
}

.review-content-kd92j {
    padding: 32px;
}

.yhfg {
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: var(--lw-text);
}

.yhfg h1,
.yhfg h2,
.yhfg h3,
.yhfg h4,
.yhfg h5,
.yhfg h6 {
    margin: 0 0 16px;
    color: var(--lw-text);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.yhfg h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 22px;
}

.yhfg h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    margin-top: 42px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--lw-border);
}

.yhfg h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    margin-top: 28px;
    color: var(--lw-btn-accent);
}

.yhfg p {
    margin: 0 0 16px;
    color: var(--lw-muted);
    font-size: 1rem;
    line-height: 1.78;
}

.yhfg > p:first-of-type {
    font-size: 1.06rem;
    color: var(--lw-text);
}

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

.yhfg li {
    margin-bottom: 10px;
    color: var(--lw-muted);
    line-height: 1.72;
}

.yhfg li::marker {
    color: var(--lw-btn-accent);
    font-weight: 800;
}

.yhfg strong,
.yhfg b {
    color: var(--lw-text);
    font-weight: 800;
}

.yhfg blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--lw-btn-accent);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 212, 0, 0.07);
}

.yhfg blockquote p {
    margin: 0;
    color: var(--lw-text);
}

.yhfg table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--lw-border);
    background: rgba(255, 255, 255, 0.02);
}

.yhfg th,
.yhfg td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--lw-border);
    text-align: left;
    vertical-align: top;
}

.yhfg th {
    background: rgba(255, 212, 0, 0.08);
    color: var(--lw-btn-accent);
    font-size: 0.9rem;
    font-weight: 800;
}

.yhfg td {
    color: var(--lw-text);
    font-size: 0.96rem;
}

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

.reviews-grid-kd92j {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.review-card-md82j {
    min-height: 100%;
    padding: 22px;
    border-radius: var(--lw-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.review-avatar-8djk2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 212, 0, 0.35);
    flex-shrink: 0;
}

.review-author-info-kd92j {
    min-width: 0;
}

.review-author-md82j {
    display: block;
    font-weight: 800;
    color: var(--lw-text);
}

.review-rating-kd93j {
    margin-top: 4px;
}

.stars-8djk2 {
    letter-spacing: 0.12em;
    color: var(--lw-btn-accent);
    font-size: 0.92rem;
}

.review-text-md92j {
    margin: 0;
    color: var(--lw-muted);
    line-height: 1.7;
}

.review-form-wrapper-kd92j {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px;
    border-radius: var(--lw-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-title-8djk2 {
    margin: 0 0 18px;
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--lw-text);
}

.review-form-md82j {
    display: grid;
    gap: 14px;
}

.form-group-kd93j {
    display: grid;
    gap: 8px;
}

.form-group-kd93j label {
    font-weight: 700;
    color: var(--lw-muted);
}

.form-input-8djk2,
.form-textarea-kd92j {
    width: 100%;
    border: 1px solid var(--lw-border);
    border-radius: 14px;
    background: #121212;
    color: var(--lw-text);
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color var(--lw-trans), box-shadow var(--lw-trans), background var(--lw-trans);
}

.form-input-8djk2:focus,
.form-textarea-kd92j:focus {
    border-color: rgba(255, 212, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.12);
}

.form-textarea-kd92j {
    min-height: 140px;
    resize: vertical;
}

.btn-submit-review-md82j {
    min-height: 50px;
    justify-self: start;
    padding-inline: 24px;
}

.form-success-kd93j {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(73, 214, 138, 0.08);
    border: 1px solid rgba(73, 214, 138, 0.22);
    color: var(--lw-text);
}

.footer-kd92j {
    margin-top: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--lw-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner-8djk2 {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
    gap: 26px;
    padding: 42px 0 28px;
}

.footer-section-md82j {
    min-width: 0;
}

.footer-logo-kd93j {
    width: 160px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-desc-8djk2 {
    margin: 0;
    max-width: 300px;
    color: var(--lw-muted);
}

.footer-title-kd93j {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--lw-text);
}

.footer-menu-8djk2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-link-md82j {
    color: var(--lw-muted);
    font-weight: 600;
}

.footer-link-md82j:hover {
    color: var(--lw-btn-accent);
}

.payment-logos-kd92j,
.providers-logos-kd92j {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo-8djk2,
.provider-logo-8djk2 {
    width: 72px;
    height: 42px;
    object-fit: contain;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-kd93j {
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal-8djk2 {
    display: grid;
    gap: 10px;
}

.copyright-md82j,
.legal-text-kd93j {
    margin: 0;
    color: var(--lw-muted);
}

.legal-links-md82j {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-link-8djk2 {
    color: var(--lw-btn-accent);
    font-weight: 600;
}

.legal-link-8djk2:hover {
    color: var(--lw-btn-accent-hover);
}

@media (max-width: 1199px) {
    .header-left-md82j {
        gap: 20px;
    }

    .nav-list-md82j {
        gap: 16px;
    }

    .winners-grid-kd82j {
        grid-template-columns: 1fr;
    }

    .tournaments-wrapper-8jd2k {
        grid-template-columns: 1fr;
    }

    .reviews-grid-kd92j {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner-8djk2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .header-inner-8djk2 {
        min-height: 78px;
        gap: 14px;
    }

    .header-left-md82j {
        gap: 14px;
    }

    .header-nav-kd92j {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        padding: 16px;
        border-radius: 18px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    }

    .header-nav-kd92j.open {
        display: block;
    }

    .nav-list-md82j {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-item-8djk2 {
        width: 100%;
    }

    .nav-link-kd93j {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

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

    .burger-menu-kd92j {
        display: inline-flex;
    }

    .logo-img-8djk2 {
        width: 154px;
        height: 44px;
    }

    .p8dj2k-hero {
        min-height: 560px;
        background-position: center right;
    }

    .kd92js-hero-content {
        padding: 72px 0 78px;
    }

    .jd83ks-main-content {
        padding: 28px 0 60px;
    }

    .kd83js-casino-info,
    .md92js-winners,
    .kd92js-tournaments,
    .slot-game-kd92j,
    .review-content-kd92j,
    .reviews-section-8djk2 {
        padding: 22px;
    }

    .reviews-grid-kd92j {
        grid-template-columns: 1fr;
    }

    .footer-inner-8djk2 {
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 24px, var(--lw-container));
    }

    .header-inner-8djk2 {
        min-height: 72px;
        gap: 10px;
    }

    .header-right-md82j {
        gap: 8px;
    }

    .header-buttons-kd93j {
        gap: 8px;
    }

    .btn-login-8djk2,
    .btn-signup-md82j {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.84rem;
    }

    .burger-menu-kd92j {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .p8dj2k-hero {
        min-height: 480px;
    }

    .kd92js-hero-content {
        padding: 56px 0 64px;
    }

    .m3kd9s-hero-title {
        margin-bottom: 14px;
    }

    .js83kd-hero-subtitle {
        margin-bottom: 22px;
    }

    .btn-hero {
        width: 100%;
        max-width: 320px;
    }

    .section-title-8djks {
        font-size: 1.42rem;
        margin-bottom: 18px;
    }

    .kd83js-casino-info,
    .md92js-winners,
    .kd92js-tournaments,
    .slot-game-kd92j,
    .review-content-kd92j,
    .reviews-section-8djk2 {
        margin-bottom: 18px;
        padding: 18px 16px;
        border-radius: 22px;
    }

    .info-table-3jd8k {
        min-width: 100%;
    }

    .info-table-3jd8k,
    .info-table-3jd8k tbody,
    .info-table-3jd8k tr,
    .info-table-3jd8k td {
        display: block;
        width: 100%;
    }

    .info-table-3jd8k tr {
        padding: 14px 0;
        border-bottom: 1px solid var(--lw-border);
    }

    .param-8djk2,
    .value-kd93j {
        width: 100%;
        padding: 0;
        background: transparent;
    }

    .param-8djk2 {
        margin-bottom: 6px;
        font-size: 0.86rem;
    }

    .value-kd93j {
        font-size: 0.96rem;
    }

    .winner-card-8jd2k {
        grid-template-columns: auto 1fr;
        gap: 10px 12px;
    }

    .winner-amount-8dk2j {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 64px;
    }

    .slot-reels-kd93j {
        grid-template-columns: repeat(3, 82px);
        gap: 10px;
        padding: 14px;
        border-radius: 20px;
    }

    .reel-md82j {
        height: 82px;
        font-size: 2.25rem;
        border-radius: 16px;
    }

    .btn-spin-kd92j {
        width: 100%;
        min-width: 0;
    }

    .review-content-kd92j {
        padding: 22px 16px;
    }

    .yhfg h1 {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .yhfg h2 {
        margin-top: 34px;
        font-size: 1.34rem;
    }

    .yhfg h3 {
        margin-top: 24px;
        font-size: 1.1rem;
    }

    .yhfg p,
    .yhfg li,
    .yhfg td,
    .yhfg th {
        font-size: 0.95rem;
    }

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

    .yhfg table {
        border: 0;
        background: transparent;
    }

    .yhfg thead {
        display: none;
    }

    .yhfg tbody {
        display: grid;
        gap: 12px;
    }

    .yhfg tr {
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--lw-border);
    }

    .yhfg td {
        padding: 10px 0;
        border-bottom: 1px solid var(--lw-border);
    }

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

    .review-form-wrapper-kd92j {
        padding: 18px 16px;
    }

    .btn-submit-review-md82j {
        width: 100%;
        justify-self: stretch;
    }

    .floating-widget-kd92j {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }

    .widget-content-8djk2 {
        justify-content: space-between;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .widget-text-md82j {
        font-size: 0.92rem;
    }

    .widget-btn-kd93j {
        min-height: 42px;
        padding-inline: 16px;
    }

    .footer-inner-8djk2 {
        grid-template-columns: 1fr;
        padding: 34px 0 24px;
    }

    .footer-bottom-kd93j {
        padding: 18px 0 24px;
    }

    .legal-links-md82j {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .header-inner-8djk2 {
        align-items: center;
    }

    .logo-img-8djk2 {
        width: 132px;
        height: 38px;
    }

    .header-buttons-kd93j {
        gap: 6px;
    }

    .btn-login-8djk2,
    .btn-signup-md82j {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .burger-menu-kd92j {
        width: 38px;
        height: 38px;
    }

    .p8dj2k-hero {
        min-height: 430px;
    }

    .kd92js-hero-content {
        padding: 46px 0 54px;
    }

    .m3kd9s-hero-title {
        font-size: 1.92rem;
    }

    .js83kd-hero-subtitle {
        font-size: 0.98rem;
    }

    .winner-pos-k2d8j {
        min-width: 46px;
        height: 34px;
        padding: 0 10px;
        font-size: 0.84rem;
    }

    .winner-name-md82j {
        font-size: 0.94rem;
    }

    .winner-amount-8dk2j {
        padding-left: 58px;
        font-size: 0.92rem;
    }

    .slot-reels-kd93j {
        grid-template-columns: repeat(3, 70px);
    }

    .reel-md82j {
        height: 70px;
        font-size: 1.95rem;
    }

    .widget-content-8djk2 {
        flex-direction: column;
        align-items: stretch;
    }

    .widget-btn-kd93j {
        width: 100%;
    }
}

.p8dj2k-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(110deg, rgba(10, 10, 10, 0.72) 12%, rgba(10, 10, 10, 0.34) 52%, rgba(10, 10, 10, 0.14) 100%),
    url("/banner-1w.jpg") center center / cover no-repeat;
}

.p8dj2k-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 212, 0, 0.12), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.06), transparent 16%);
    pointer-events: none;
}

.kd92js-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, var(--lw-container));
    margin-inline: auto;
    padding: 68px 0 72px;
    max-width: 760px;
}

.m3kd9s-hero-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.js83kd-hero-subtitle {
    margin: 0 0 24px;
    max-width: 620px;
    font-size: clamp(1rem, 1.9vw, 1.28rem);
    color: rgba(244, 244, 244, 0.88);
}

.btn-hero {
    min-width: 210px;
    min-height: 52px;
    font-size: 0.98rem;
    padding: 0 26px;
}

@media (max-width: 767px) {
    .p8dj2k-hero {
        min-height: 420px;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.42) 55%, rgba(10, 10, 10, 0.2) 100%),
        url("/banner-1w.jpg") center center / cover no-repeat;
    }

    .kd92js-hero-content {
        padding: 48px 0 52px;
    }

    .m3kd9s-hero-title {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
        margin-bottom: 12px;
    }

    .js83kd-hero-subtitle {
        margin-bottom: 18px;
        font-size: 0.96rem;
    }

    .btn-hero {
        min-height: 48px;
        min-width: 190px;
        font-size: 0.94rem;
    }
}

@media (max-width: 575px) {
    .p8dj2k-hero {
        min-height: 380px;
    }

    .kd92js-hero-content {
        padding: 40px 0 44px;
    }

    .m3kd9s-hero-title {
        font-size: 1.6rem;
    }

    .js83kd-hero-subtitle {
        font-size: 0.92rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
}

.header-kd92j {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-kd92j .container {
    width: min(100% - 40px, 1180px);
}

.header-inner-8djk2 {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-left-md82j {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.logo-img-8djk2 {
    width: 156px;
    height: 42px;
    object-fit: contain;
}

.header-nav-kd92j {
    display: block;
}

.nav-list-md82j {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link-kd93j {
    position: relative;
    color: var(--lw-text);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    padding: 8px 0;
}

.header-right-md82j {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.online-counter-kd92j {
    padding: 8px 12px;
}

.header-buttons-kd93j {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login-8djk2,
.btn-signup-md82j {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.84rem;
}

.burger-menu-kd92j {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--lw-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu-kd92j span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--lw-text);
    transition: transform var(--lw-trans), opacity var(--lw-trans);
}

@media (max-width: 991px) {
    .header-kd92j .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner-8djk2 {
        min-height: 64px;
        gap: 10px;
    }

    .logo-img-8djk2 {
        width: 138px;
        height: 38px;
    }

    .header-nav-kd92j {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        padding: 14px;
        border-radius: 16px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    }

    .header-nav-kd92j.open {
        display: block;
    }

    .nav-list-md82j {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .nav-item-8djk2 {
        width: 100%;
    }

    .nav-link-kd93j {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

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

    .burger-menu-kd92j {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    .header-inner-8djk2 {
        min-height: 60px;
    }

    .logo-img-8djk2 {
        width: 124px;
        height: 34px;
    }

    .header-buttons-kd93j {
        gap: 6px;
    }

    .btn-login-8djk2,
    .btn-signup-md82j {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.76rem;
    }

    .burger-menu-kd92j {
        width: 38px;
        height: 38px;
    }
}

.header-kd92j {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-kd92j .container {
    position: relative;
}

.header-inner-8djk2 {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header-left-md82j {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.logo-link-kd93j {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img-8djk2 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.header-right-md82j {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-buttons-kd93j {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login-8djk2,
.btn-signup-md82j {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-login-8djk2 {
    border: 2px solid var(--lw-btn-accent);
    color: var(--lw-btn-accent);
    background: transparent;
}

.btn-signup-md82j {
    background: var(--lw-btn-primary);
    color: #111;
}

.online-counter-kd92j {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.online-dot-8djk2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #49d68a;
}

.header-nav-kd92j {
    display: block;
}

.nav-list-md82j {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-kd93j {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 8px 0;
    display: block;
}

.burger-menu-kd92j {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.burger-menu-kd92j span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

@media (max-width: 991px) {
    .online-counter-kd92j {
        display: none;
    }

    .burger-menu-kd92j {
        display: inline-flex;
    }

    .header-nav-kd92j {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 12px 14px;
        z-index: 2000;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    }

    .header-nav-kd92j.open {
        display: block;
    }

    .nav-list-md82j {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-item-8djk2 {
        width: 100%;
    }

    .nav-link-kd93j {
        width: 100%;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-item-8djk2:last-child .nav-link-kd93j {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .header-inner-8djk2 {
        min-height: 60px;
    }

    .logo-img-8djk2 {
        width: 34px;
        height: 34px;
    }

    .header-buttons-kd93j {
        gap: 6px;
    }

    .btn-login-8djk2,
    .btn-signup-md82j {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.74rem;
    }

    .burger-menu-kd92j {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
}