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

:root {
    --header-bg: #450b17;
    --footer-bg: #450b17;
    --btn-login: #e0e0e0;
    --btn-signup: #c7051d;
    --bg-dark: #110d0e;
    --text-light: #f5f5f5;
    --text-accent: #e0e0e0;
    --spacing: 1.5rem;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.zm3p8q1 {
    flex: 1;
}

.kx7p3m9 {
    background: linear-gradient(135deg, var(--header-bg) 0%, #6b1729 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-link {
    display: block;
}

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

.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #0f0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-login {
    background: var(--btn-login);
    color: #111;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.btn-signup {
    background: var(--btn-signup);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    background: rgba(69, 11, 23, 0.98);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-list a {
    color: var(--text-accent);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
}

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

.vn7k2x9 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/hero-banner.jpg') center/cover;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.tk9x3m2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.yn2q7k5 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bm8k4x1 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wp3n9k7 {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--btn-signup);
    color: #fff;
}

.btn-primary:hover {
    background: #e60720;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(199, 5, 29, 0.4);
}

.btn-secondary {
    background: var(--btn-login);
    color: #111;
}

.btn-secondary:hover {
    background: #fff;
    transform: scale(1.05);
}

.kp2x7m9 {
    padding: 4rem 0;
    background: #1a1617;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.lm9k3x6 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-accent);
}

.update-time {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #aaa;
}

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

.xn8p2k4 {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.xn8p2k4 th,
.xn8p2k4 td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xn8p2k4 th {
    background: rgba(199, 5, 29, 0.3);
    font-weight: 600;
    color: var(--text-accent);
}

.xn8p2k4 tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.status-online {
    color: #0f0;
    font-weight: 600;
}

.table-btn {
    background: var(--btn-signup);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.table-btn:hover {
    background: #e60720;
}

.pm7x2k9 {
    padding: 4rem 0;
}

.wk4n8x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(199, 5, 29, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn3k9x8 {
    padding: 4rem 0;
    background: #1a1617;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.app-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.app-table td {
    padding: 0.75rem 1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.download-btn img {
    height: 40px;
    width: auto;
}

.download-btn.apk {
    background: var(--btn-signup);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.download-btn.apk:hover {
    background: #e60720;
}


.tm6k8x3 {
    padding: 4rem 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, #1a1617 0%, #2a2223 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.bonus-card:hover {
    border-color: var(--btn-signup);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(199, 5, 29, 0.3);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--btn-signup);
    margin-bottom: 1rem;
}

.bonus-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.bonus-btn {
    background: var(--btn-signup);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
}

.bonus-btn:hover {
    background: #e60720;
    transform: scale(1.05);
}

.gm2k7x9 {
    padding: 4rem 0;
    background: #1a1617;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.game-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.slot-machine {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2a2223 0%, #3a2f30 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 120px;
}

.reel {
    background: #110d0e;
    border: 3px solid var(--btn-signup);
    border-radius: 12px;
    width: 100px;
    height: 120px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol {
    font-size: 3rem;
    text-align: center;
}

.reel.spinning {
    animation: spin 0.5s linear infinite;
}

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

.spin-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--btn-signup);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.spin-btn:hover:not(:disabled) {
    background: #e60720;
    transform: scale(1.02);
}

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

.game-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.game-result.win {
    animation: celebrate 0.5s ease;
}

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

.result-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

.claim-bonus-btn {
    background: #ffd700;
    color: #111;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

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

.pn9k4x7 {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: linear-gradient(135deg, #1a1617 0%, #2a2223 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--btn-signup);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.review-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    line-height: 1.7;
    color: #ccc;
    font-size: 0.95rem;
}

.review-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1617;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.form-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-accent);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-accent);
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--btn-signup);
    background: rgba(255, 255, 255, 0.08);
}

.form-submit {
    padding: 1rem;
    background: var(--btn-signup);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
}

.form-submit:hover {
    background: #e60720;
    transform: translateY(-2px);
}

.form-success {
    display: none;
    background: #0a6;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.content-wrapper {
    padding: 4rem 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-content ul,
.text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.text-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.text-content table {
    width: 100%;
    margin: 2rem auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
}

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

.text-content table th {
    background: rgba(199, 5, 29, 0.3);
    font-weight: 600;
}

.text-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 10px;
}

.nx4k8p2 {
    background: linear-gradient(135deg, var(--footer-bg) 0%, #6b1729 100%);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-accent);
    font-size: 1.1rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.support-info {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.social-icon:hover {
    background: var(--btn-signup);
}

.footer-middle {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-providers,
.game-providers {
    margin-bottom: 2rem;
}

.providers-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.providers-grid img {
    opacity: 0.7;
    transition: var(--transition);
}

.providers-grid img:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.license-info,
.copyright,
.responsible-gaming {
    margin-bottom: 1rem;
}

.license-info p,
.copyright p,
.responsible-gaming p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.age-restriction {
    color: #ff6b6b !important;
    font-weight: 600;
}

.legal-note {
    font-size: 0.8rem !important;
    color: #888 !important;
}

.floating-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--btn-signup) 0%, #e60720 100%);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

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

.widget-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.widget-btn {
    background: #fff;
    color: var(--btn-signup);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

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

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tk9x3m2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .header-actions {
        order: -1;
        margin-left: auto;
    }

    .online-counter {
        display: none;
    }

    .screenshots-grid.wk4n8x2 {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .screenshot-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .bonuses-grid.wk4n8x2 {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .bonus-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .slot-reels {
        gap: 0.5rem;
    }

    .reel {
        width: 80px;
        height: 100px;
    }

    .symbol {
        font-size: 2.5rem;
    }
}

.qx8m3k7, .vp2n9x4, .rk7m5q3, .tn4x8p9 {
    display: none;
}

.unused-class-1 {
    opacity: 0;
}

.unused-class-2 {
    visibility: hidden;
}

.wp-legacy-widget {
    display: block;
}

.container.chdk {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    color: #e8e8e8
}

.container.chdk > *:first-child {
    margin-top: 0
}

.container.chdk > *:last-child {
    margin-bottom: 0
}

.container.chdk p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(232, 232, 232, .85)
}

.container.chdk strong {
    color: #fff;
    font-weight: 850
}

.container.chdk h2,
.container.chdk h3,
.container.chdk h4 {
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.2
}

.container.chdk h2 {
    margin: 30px 0 12px;
    font-size: 26px;
    font-weight: 950;
    padding-left: 14px;
    position: relative
}

.container.chdk h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    bottom: .2em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg, #c7051d, #e01828);
    box-shadow: 0 10px 26px rgba(199, 5, 29, .35)
}

.container.chdk h3 {
    margin: 20px 0 10px;
    font-size: 20px;
    font-weight: 900
}

.container.chdk h4 {
    margin: 18px 0 8px;
    font-size: 17px;
    font-weight: 850
}

.container.chdk a {
    color: #ff4b5e;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 75, 94, .35);
    transition: color .18s, border-color .18s, background .18s
}

.container.chdk a:hover {
    color: #ff6b7a;
    border-bottom-color: rgba(255, 107, 122, .65)
}

.container.chdk a:focus-visible {
    outline: 2px solid rgba(224, 24, 40, .55);
    outline-offset: 3px;
    border-radius: 6px
}

.container.chdk ul,
.container.chdk ol {
    margin: 0 0 18px;
    padding-left: 22px;
    color: rgba(232, 232, 232, .84)
}

.container.chdk li {
    margin: 10px 0;
    line-height: 1.75
}

.container.chdk ul li::marker {
    color: rgba(255, 75, 94, .85)
}

.container.chdk ol li::marker {
    color: rgba(255, 75, 94, .85);
    font-weight: 800
}

.container.chdk table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 22px;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10)
}

.container.chdk table th,
.container.chdk table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: top
}

.container.chdk table tr:last-child th,
.container.chdk table tr:last-child td {
    border-bottom: none
}

.container.chdk table th {
    color: #fff;
    font-weight: 900;
    background: rgba(199, 5, 29, .18)
}

.container.chdk table td {
    color: rgba(232, 232, 232, .84)
}

.container.chdk img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35)
}

.container.chdk code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .95em;
    padding: .15em .35em;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff
}

.container.chdk pre {
    margin: 16px 0 22px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: auto
}

.container.chdk pre code {
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .88)
}

.container.chdk hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    margin: 22px 0
}

@media (max-width: 1024px) {
    .container.chdk {
        padding: 30px 18px
    }

    .container.chdk h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .container.chdk {
        padding: 22px 14px;
        border-radius: 16px
    }

    .container.chdk p {
        font-size: 15.5px
    }

    .container.chdk h2 {
        font-size: 22px;
        padding-left: 12px
    }

    .container.chdk h3 {
        font-size: 18px
    }

    .container.chdk ul,
    .container.chdk ol {
        padding-left: 18px
    }

    .container.chdk table {
        display: block;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 420px) {
    .container.chdk {
        padding: 18px 12px
    }

    .container.chdk h2 {
        font-size: 20px
    }

    .container.chdk p {
        font-size: 15px
    }
}

@media (prefers-reduced-motion: reduce) {
    .container.chdk a {
        transition: none
    }
}

.gm2k7x9 {
    padding: 56px 0;
}

.gm2k7x9 .qr4m1p8 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm2k7x9 .lm9k3x6 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.02em;
    color: #fff;
}

.gm2k7x9 .game-subtitle {
    margin: 0 0 26px;
    text-align: center;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.6;
}

.gm2k7x9 .slot-machine {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px 26px 28px;
    border-radius: 22px;
    background: radial-gradient(1200px 520px at 50% 0%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
}

.gm2k7x9 .slot-reels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 22px 14px;
    margin: 8px auto 22px;
    border-radius: 18px;
    background: rgba(0, 0, 0, .32);
    border: 1px solid rgba(255, 255, 255, .08);
}

.gm2k7x9 .reel {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    background: radial-gradient(240px 140px at 50% 0%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .75));
    border: 2px solid rgba(224, 24, 40, .9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .5),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateZ(0);
}

.gm2k7x9 .reel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 40%, rgba(0, 0, 0, .35));
    pointer-events: none;
}

.gm2k7x9 .symbol {
    font-size: 56px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 10px 25px rgba(0, 0, 0, .45);
}

.gm2k7x9 .spin-btn {
    width: min(760px, 100%);
    margin: 0 auto;
    display: block;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #d80b22, #b4061a);
    color: #fff;
    font-weight: 950;
    letter-spacing: .06em;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 46px rgba(199, 5, 29, .35),
    inset 0 1px 0 rgba(255, 255, 255, .15);
    transition: transform .15s, box-shadow .15s, filter .15s;
}

.gm2k7x9 .spin-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 22px 56px rgba(199, 5, 29, .45),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.gm2k7x9 .spin-btn:active {
    transform: translateY(0);
    filter: brightness(.98);
}

.gm2k7x9 .spin-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gm2k7x9 .game-result {
    margin: 18px auto 0;
    width: min(760px, 100%);
    min-height: 54px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .26);
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
    letter-spacing: -.01em;
}

@media (max-width: 900px) {
    .gm2k7x9 {
        padding: 44px 0
    }

    .gm2k7x9 .lm9k3x6 {
        font-size: 30px
    }

    .gm2k7x9 .slot-machine {
        padding: 28px 18px 22px
    }

    .gm2k7x9 .slot-reels {
        gap: 12px;
        padding: 18px 12px
    }

    .gm2k7x9 .reel {
        width: 120px;
        height: 120px
    }

    .gm2k7x9 .symbol {
        font-size: 50px
    }

    .gm2k7x9 .spin-btn {
        padding: 16px 18px;
        font-size: 17px
    }
}

@media (max-width: 640px) {
    .gm2k7x9 .qr4m1p8 {
        padding: 0 14px
    }

    .gm2k7x9 .lm9k3x6 {
        font-size: 26px
    }

    .gm2k7x9 .game-subtitle {
        font-size: 15px;
        margin-bottom: 18px
    }

    .gm2k7x9 .slot-machine {
        border-radius: 18px
    }

    .gm2k7x9 .slot-reels {
        gap: 10px;
        padding: 14px 10px;
        border-radius: 16px;
    }

    .gm2k7x9 .reel {
        width: 96px;
        height: 96px;
        border-radius: 14px;
    }

    .gm2k7x9 .symbol {
        font-size: 40px
    }

    .gm2k7x9 .spin-btn {
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 16px;
    }

    .gm2k7x9 .game-result {
        border-radius: 12px;
        min-height: 50px;
        font-size: 14.5px;
    }
}

@media (max-width: 360px) {
    .gm2k7x9 .reel {
        width: 88px;
        height: 88px
    }

    .gm2k7x9 .symbol {
        font-size: 36px
    }
}

@media (prefers-reduced-motion: reduce) {
    .gm2k7x9 .spin-btn {
        transition: none
    }
}

.slot-machine {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 22px;
    border-radius: 22px;
    background: radial-gradient(120% 160% at 50% 0%, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .06) 30%, rgba(0, 0, 0, .22) 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px)
}

.slot-reels {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 22px;
    justify-items: center;
    margin: 18px auto 22px;
    max-width: 520px
}

.reel {
    width: 150px;
    height: 150px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0b0b0f 0%, #060608 100%);
    border: 2px solid rgba(199, 5, 29, .9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .05);
    overflow: hidden;
    position: relative
}

.reel:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
    z-index: 2
}

.reel-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translate3d(0, 0, 0)
}

.symbol {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .6))
}

.spin-btn {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: block;
    padding: 18px 18px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(90deg, #c7051d 0%, #e60720 55%, #c7051d 100%);
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 18px;
    box-shadow: 0 16px 40px rgba(199, 5, 29, .35);
    transition: transform .15s ease, filter .2s ease, opacity .2s ease
}

.spin-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05)
}

.spin-btn:active {
    transform: translateY(0px);
    filter: brightness(.98)
}

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

.game-result {
    margin-top: 16px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.result-text {
    font-weight: 800;
    font-size: 18px;
    color: #ffd700
}

.claim-bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: #ffd700;
    color: #121212;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(255, 215, 0, .25);
    transition: transform .15s ease, filter .2s ease
}

.claim-bonus-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03)
}

.game-result.win {
    animation: pop .35s ease
}

@keyframes pop {
    0% {
        transform: scale(.98);
        opacity: .6
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

@media (max-width: 768px) {
    .slot-machine {
        padding: 22px 16px;
        border-radius: 18px
    }

    .slot-reels {
        gap: 14px;
        max-width: 420px
    }

    .reel {
        width: 118px;
        height: 118px;
        border-radius: 16px
    }

    .symbol {
        height: 118px;
        font-size: 52px
    }

    .spin-btn {
        padding: 16px;
        border-radius: 14px;
        font-size: 16px
    }
}

@media (max-width: 420px) {
    .slot-reels {
        gap: 10px
    }

    .reel {
        width: 104px;
        height: 104px
    }

    .symbol {
        height: 104px;
        font-size: 46px
    }
}
