* {
    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;
}

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

.c0nt41n3r_mx {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

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

.h34d3r_l0g0 img {
    height: 30px;
    width: 80px;
}

.n4v_m41n {
    display: none;
}

.n4v_l1st {
    display: flex;
    list-style: none;
    gap: 25px;
}

.n4v_1t3m a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 15px;
}

.n4v_1t3m a:hover {
    color: #F2C94C;
}

.0nl1n3_c0unt3r {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(242, 201, 76, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.0nl1n3_d0t {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.0nl1n3_txt {
    color: #e0e0e0;
    font-size: 14px;
}

.h34d3r_4ct10ns {
    display: flex;
    gap: 10px;
}

.btn_l0g1n {
    background: #F2C94C;
    color: #222222;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.btn_l0g1n:hover {
    background: #d9b43d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(242, 201, 76, 0.3);
}

.btn_s1gnup {
    background: #F2C94C;
    color: #222222;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.btn_s1gnup:hover {
    background: #d9b43d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(242, 201, 76, 0.3);
}

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

.burg3r_btn span {
    width: 25px;
    height: 3px;
    background: #F2C94C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burg3r_btn.4ct1v3 span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burg3r_btn.4ct1v3 span:nth-child(2) {
    opacity: 0;
}

.burg3r_btn.4ct1v3 span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.m0b1l3_m3nu {
    display: none;
    background: #222222;
    padding: 20px;
    margin-top: 15px;
}

.m0b1l3_m3nu.4ct1v3 {
    display: block;
}

.m0b_n4v_l1st {
    list-style: none;
}

.m0b_n4v_l1st li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.m0b_n4v_l1st li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.h3r0_s3ct10n {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/banner-leon.png') center/cover;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.h3r0_c0nt3nt {
    max-width: 700px;
    margin: 0 auto;
}

.h3r0_t1tl3 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.h3r0_subt1tl3 {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn_h3r0 {
    display: inline-block;
    background: linear-gradient(135deg, #F2C94C 0%, #d9b43d 100%);
    color: #222222;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.4);
}

.btn_h3r0:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.6);
}

.btn_pr1m4ry {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Main Content */
.m41n_c0nt3nt {
    flex: 1;
}

.s3ct10n_h34d3r {
    text-align: center;
    margin-bottom: 40px;
}

.s3c_t1tl3 {
    font-size: 32px;
    color: #F2C94C;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

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

/* Info Table */
.1nf0_t4bl3_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.t4bl3_wr4pp3r {
    overflow-x: auto;
}

.1nf0_t4bl3 {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.1nf0_t4bl3 td {
    padding: 15px 20px;
    border: 1px solid #333;
    text-align: left;
}

.p4r4m_n4m3 {
    font-weight: 700;
    color: #F2C94C;
    width: 40%;
}

.p4r4m_v4lu3 {
    color: #e0e0e0;
}

.1nf0_t4bl3 tr:hover {
    background: rgba(242, 201, 76, 0.05);
}

/* Winners Section */
.w1nn3rs_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.w1nn3rs_gr1d {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.w1nn3r_c4rd {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.w1nn3r_c4rd:hover {
    border-color: #F2C94C;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.2);
}

.w1nn3r_r4nk {
    background: #F2C94C;
    color: #222222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.w1nn3r_n4m3 {
    flex: 1;
    color: #e0e0e0;
    font-size: 16px;
}

.w1nn3r_4m0unt {
    color: #4caf50;
    font-weight: 700;
    font-size: 16px;
}

/* Bonuses Section */
.b0nus3s_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.b0nus3s_sl1d3r {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.b0nus_c4rd {
    background: linear-gradient(135deg, #222222 0%, #2a2a2a 100%);
    border: 2px solid #F2C94C;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.b0nus_c4rd:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 201, 76, 0.3);
}

.b0nus_1c0n {
    font-size: 50px;
    margin-bottom: 20px;
}

.b0nus_t1tl3 {
    font-size: 22px;
    color: #F2C94C;
    margin-bottom: 15px;
}

.b0nus_4m0unt {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.b0nus_d3sc {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn_b0nus {
    display: inline-block;
    background: #F2C94C;
    color: #222222;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn_b0nus:hover {
    background: #d9b43d;
    transform: scale(1.05);
}

/* Games Section */
.g4m3s_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.g4m3s_sl1d3r {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.g4m3_c4rd {
    background: #222222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.g4m3_c4rd:hover {
    border-color: #F2C94C;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.3);
}

.g4m3_1mg {
    height: 150px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.g4m3_pl4c3h0ld3r {
    font-size: 60px;
}

.g4m3_n4m3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.g4m3_pr0v1d3r {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn_pl4y {
    display: inline-block;
    background: #F2C94C;
    color: #222222;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn_pl4y:hover {
    background: #d9b43d;
    transform: scale(1.05);
}

/* Slot Game */
.sl0t_g4m3_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.sl0t_g4m3_wr4pp3r {
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
}

.sl0t_m4ch1n3 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #F2C94C;
    border-radius: 15px;
    padding: 40px;
}

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

.r33l {
    background: #222222;
    border: 2px solid #333;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symb0l {
    font-size: 50px;
}

.r33l.sp1nn1ng .symb0l {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.sp1n_btn {
    background: linear-gradient(135deg, #F2C94C 0%, #d9b43d 100%);
    color: #222222;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp1n_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.4);
}

.sp1n_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.w1n_m3ss4g3 {
    margin-top: 30px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-radius: 10px;
    padding: 30px;
}

.w1n_t1tl3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.w1n_txt {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.btn_cl41m {
    display: inline-block;
    background: #ffffff;
    color: #4caf50;
    padding: 12px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn_cl41m:hover {
    transform: scale(1.05);
}

/* Content Section */
.c0nt3nt_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.txt_c0nt3nt {
    color: #e0e0e0;
    line-height: 1.8;
}

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

.txt_c0nt3nt h3 {
    color: #F2C94C;
    margin: 25px 0 15px;
    font-size: 24px;
}

.txt_c0nt3nt p {
    margin-bottom: 20px;
}

.txt_c0nt3nt ul, .txt_c0nt3nt ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

.txt_c0nt3nt a:hover {
    color: #d9b43d;
}

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

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

.txt_c0nt3nt table th {
    background: #222222;
    color: #F2C94C;
    font-weight: 700;
}

/* FAQ Section */
.f4q_s3ct10n {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.f4q_1t3ms {
    margin-top: 30px;
}

.f4q_1t3m {
    background: #222222;
    border: 2px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.f4q_qu3st10n {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.f4q_qu3st10n:hover {
    background: rgba(242, 201, 76, 0.05);
}

.f4q_qu3st10n h3 {
    font-size: 18px;
    color: #F2C94C;
    margin: 0;
}

.f4q_1c0n {
    font-size: 24px;
    color: #F2C94C;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.f4q_1t3m.4ct1v3 .f4q_1c0n {
    transform: rotate(45deg);
}

.f4q_4nsw3r {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.f4q_1t3m.4ct1v3 .f4q_4nsw3r {
    max-height: 500px;
}

.f4q_4nsw3r > div {
    padding: 0 20px 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Footer */
.f00t3r_m41n {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    padding: 50px 20px 30px;
    margin-top: 50px;
}

.f00t3r_t0p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.f00t3r_n4v ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.f00t3r_n4v a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f00t3r_n4v a:hover {
    color: #F2C94C;
}

.p4ym3nts_s3ct10n,
.pr0v1d3rs_s3ct10n {
    margin-bottom: 30px;
}

.p4y_t1tl3,
.pr0v_t1tl3 {
    color: #F2C94C;
    font-size: 18px;
    margin-bottom: 15px;
}

.p4y_l0g0s,
.pr0v_l0g0s {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.p4y_1t3m,
.pr0v_1t3m {
    background: #2a2a2a;
    padding: 8px 15px;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 14px;
}

.f00t3r_b0tt0m {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.l3g4l_1nf0 p {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.4uth0r_1nf0 a {
    color: #F2C94C;
    text-decoration: none;
}

.4uth0r_1nf0 a:hover {
    text-decoration: underline;
}

/* Widget */
.w1dg3t_f1x3d {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #F2C94C 0%, #d9b43d 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

.w1dg3t_txt {
    color: #222222;
    font-size: 16px;
}

.w1dg3t_btn {
    background: #222222;
    color: #F2C94C;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.w1dg3t_btn:hover {
    background: #333;
    transform: scale(1.05);
}

/* Slider Dots */
.sl1d3r_d0ts {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.d0t {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.d0t.4ct1v3 {
    background: #F2C94C;
}

/* Responsive */
@media (min-width: 768px) {
    .n4v_m41n {
        display: block;
    }

    .0nl1n3_c0unt3r {
        display: flex;
    }

    .burg3r_btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .h3r0_t1tl3 {
        font-size: 28px;
    }

    .h3r0_subt1tl3 {
        font-size: 16px;
    }

    .s3c_t1tl3 {
        font-size: 24px;
    }

    .1nf0_t4bl3_s3ct10n,
    .w1nn3rs_s3ct10n,
    .b0nus3s_s3ct10n,
    .g4m3s_s3ct10n,
    .sl0t_g4m3_s3ct10n,
    .c0nt3nt_s3ct10n,
    .f4q_s3ct10n {
        padding: 25px 20px;
    }

    .b0nus3s_sl1d3r,
    .g4m3s_sl1d3r {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .b0nus_c4rd,
    .g4m3_c4rd {
        scroll-snap-align: center;
        min-width: 280px;
    }

    .sl1d3r_d0ts {
        display: flex;
    }

    .w1nn3rs_gr1d {
        grid-template-columns: 1fr;
    }

    .f00t3r_t0p {
        flex-direction: column;
        text-align: center;
    }

    .f00t3r_n4v ul {
        flex-direction: column;
        gap: 10px;
    }

    .w1dg3t_c0nt3nt {
        flex-direction: column;
        text-align: center;
    }
}
.qndgtc {
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 20px 56px;
    color: #e8e8e8;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.72;
}

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

.qndgtc h1,
.qndgtc h2,
.qndgtc h3 {
    color: #ffffff;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

.qndgtc h1 {
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    margin: 0 0 22px;
    padding: 0 0 18px;
    position: relative;
}

.qndgtc h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00aeef 0%, #67d4ff 100%);
}

.qndgtc h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    margin: 34px 0 16px;
}

.qndgtc h3 {
    font-size: clamp(1.08rem, 2.2vw, 1.35rem);
    margin: 24px 0 12px;
}

.qndgtc p {
    margin: 0 0 16px;
    color: #d8d8d8;
    font-size: 1rem;
}

.qndgtc strong,
.qndgtc b {
    color: #ffffff;
    font-weight: 700;
}

.qndgtc a {
    color: #00aeef;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, opacity .2s ease;
    word-break: break-word;
}

.qndgtc a:hover {
    color: #67d4ff;
}

.qndgtc ul,
.qndgtc ol {
    margin: 0 0 20px;
    padding: 0;
}

.qndgtc ul {
    list-style: none;
}

.qndgtc ul li,
.qndgtc ol li {
    position: relative;
    margin: 0 0 12px;
    color: #d8d8d8;
}

.qndgtc ul li {
    padding-left: 22px;
}

.qndgtc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00aeef;
    box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.12);
}

.qndgtc ol {
    padding-left: 22px;
}

.qndgtc ol li::marker {
    color: #00aeef;
    font-weight: 700;
}

.qndgtc table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    background: #161616;
}

.qndgtc thead,
.qndgtc tbody,
.qndgtc tr {
    width: 100%;
}

.qndgtc thead tr {
    background: #0f0f0f;
}

.qndgtc th,
.qndgtc td {
    padding: 14px 16px;
    border-bottom: 1px solid #2a2a2a;
    text-align: left;
    vertical-align: top;
    font-size: .96rem;
}

.qndgtc th {
    color: #00aeef;
    font-weight: 700;
}

.qndgtc td {
    color: #d8d8d8;
    background: transparent;
}

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

.qndgtc tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.qndgtc hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,174,239,.5) 50%, rgba(255,255,255,0) 100%);
    margin: 32px 0;
}

.qndgtc blockquote {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 3px solid #00aeef;
    border-radius: 0 14px 14px 0;
    background: rgba(0, 174, 239, 0.06);
}

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

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

@media (min-width: 769px) {
    .qndgtc {
        background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
        border: 1px solid #242424;
        border-radius: 24px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    }

    .qndgtc table {
        display: table;
    }
}

@media (max-width: 768px) {
    .qndgtc {
        padding: 24px 14px 40px;
    }

    .qndgtc h1 {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .qndgtc h1::after {
        width: 68px;
        height: 3px;
    }

    .qndgtc h2 {
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .qndgtc p,
    .qndgtc li,
    .qndgtc td,
    .qndgtc th {
        font-size: .95rem;
    }

    .qndgtc table {
        border-radius: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .qndgtc table::-webkit-scrollbar {
        height: 8px;
    }

    .qndgtc table::-webkit-scrollbar-thumb {
        background: #2c2c2c;
        border-radius: 999px;
    }

    .qndgtc th,
    .qndgtc td {
        min-width: 180px;
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    .qndgtc {
        padding: 20px 12px 34px;
    }

    .qndgtc p {
        margin-bottom: 14px;
    }

    .qndgtc ul li {
        padding-left: 18px;
    }

    .qndgtc ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
        box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
    }

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

    .qndgtc th,
    .qndgtc td {
        min-width: 150px;
        padding: 12px;
    }
}

.un1qu3_cl4ss_1 { opacity: 0.9; }
.un1qu3_cl4ss_2 { letter-spacing: 0.5px; }
.un1qu3_cl4ss_3 { text-transform: uppercase; }
.ex4mpl3_wr4pp3r { display: block; }
.r4nd0m_st1l3 { visibility: visible; }
.m1sc_cl4ss { position: relative; }

.topwins-block {
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.topwins-head {
    margin-bottom: 24px;
}

.topwins-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
}

.topwins-subtitle {
    margin: 0;
    color: #9f9f9f;
    font-size: 15px;
    line-height: 1.5;
}

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

.topwins-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
    border: 1px solid #262626;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.topwins-card:hover {
    transform: translateY(-3px);
    border-color: #f0c84b;
    box-shadow: 0 12px 30px rgba(240, 200, 75, 0.12);
}

.topwins-rank {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0c84b;
    color: #111111;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(240, 200, 75, 0.35);
}

.topwins-user {
    min-width: 0;
    flex: 1 1 auto;
}

.topwins-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topwins-game {
    margin-top: 6px;
    color: #8f8f8f;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topwins-sum {
    flex: 0 0 auto;
    color: #ffd54a;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
}

.topwins-card--gold {
    border-color: rgba(240, 200, 75, 0.35);
}

.topwins-card--silver .topwins-rank {
    background: #d7dce2;
    box-shadow: 0 0 24px rgba(215, 220, 226, 0.35);
}

.topwins-card--bronze .topwins-rank {
    background: #c98952;
    box-shadow: 0 0 24px rgba(201, 137, 82, 0.35);
}

@media (max-width: 900px) {
    .topwins-block {
        padding: 24px;
        border-radius: 20px;
    }

    .topwins-title {
        font-size: 28px;
    }

    .topwins-grid {
        grid-template-columns: 1fr;
    }

    .topwins-name {
        font-size: 22px;
    }

    .topwins-sum {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .topwins-block {
        padding: 18px;
        border-radius: 18px;
    }

    .topwins-title {
        font-size: 24px;
    }

    .topwins-subtitle {
        font-size: 14px;
    }

    .topwins-card {
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
    }

    .topwins-rank {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .topwins-name {
        font-size: 18px;
    }

    .topwins-game {
        font-size: 12px;
        margin-top: 4px;
    }

    .topwins-sum {
        font-size: 16px;
    }
}
.leon-info-box {
    background: linear-gradient(180deg, #181818 0%, #111111 100%);
    border: 1px solid #2b2b2b;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.leon-info-box__head {
    margin-bottom: 20px;
}

.leon-info-box__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.leon-info-box__table-wrap {
    overflow-x: auto;
    border: 1px solid #2f2f2f;
    border-radius: 18px;
    background: #101010;
}

.leon-info-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: transparent;
}

.leon-info-table tr {
    background: transparent;
    transition: background 0.2s ease;
}

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

.leon-info-table tr:hover {
    background: rgba(255, 215, 64, 0.06);
}

.leon-info-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #252525;
    vertical-align: top;
    background: transparent;
}

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

.leon-info-table__label {
    width: 280px;
    min-width: 280px;
    color: #f0c84b;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.45;
    border-right: 1px solid #252525;
}

.leon-info-table__value {
    color: #f3f3f3;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .leon-info-box {
        padding: 22px;
        border-radius: 20px;
    }

    .leon-info-box__title {
        font-size: 28px;
    }

    .leon-info-table {
        min-width: 680px;
    }
}

@media (max-width: 640px) {
    .leon-info-box {
        padding: 16px;
        border-radius: 18px;
    }

    .leon-info-box__title {
        font-size: 24px;
    }

    .leon-info-box__table-wrap {
        border-radius: 14px;
    }

    .leon-info-table {
        min-width: 0;
    }

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

    .leon-info-table tr {
        padding: 0;
        border-bottom: 1px solid #252525;
    }

    .leon-info-table tr:last-child {
        border-bottom: 0;
    }

    .leon-info-table td {
        border: 0;
        padding: 0;
    }

    .leon-info-table__label {
        width: 100%;
        min-width: 0;
        border-right: 0;
        padding: 14px 14px 6px;
        font-size: 13px;
        color: #c9c9c9;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .leon-info-table__value {
        padding: 0 14px 14px;
        font-size: 15px;
        color: #ffffff;
    }
}
.m0b1l3_m3nu {
    display: none;
}

.m0b1l3_m3nu.4ct1v3 {
                  display: block;
              }
.m0b1l3_m3nu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background: #222222;
    padding: 0 20px;
}

.m0b1l3_m3nu.4ct1v3 {
                  max-height: 400px;
                  opacity: 1;
                  padding: 20px;
              }