
:root {
    --color-header: #312d2b;
    --color-footer: #312d2b;
    --color-bg: #211e1c;
    --color-login: #d7cec5;
    --color-signup: #d5812d;
    --color-text-light: #f5f5f5;
    --color-text-dark: #1a1a1a;
    --color-accent: #d5812d;
    --color-accent-hover: #c47226;
}

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

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

.kjs83hd.header-main {
    background: linear-gradient(135deg, var(--color-header) 0%, #3d3835 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.d8fh2k.navbar-brand {
    transition: transform 0.3s ease;
}

.d8fh2k.navbar-brand:hover {
    transform: scale(1.05);
}

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

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

.counter-icon {
    animation: pulse 2s infinite;
}

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

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

.btn-login {
    background-color: var(--color-login);
    color: var(--color-text-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background-color: #c9bfb6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 206, 197, 0.3);
    color: var(--color-text-dark);
}

.btn-signup {
    background-color: var(--color-signup);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
    color: #fff;
}

.k9djf3h.navbar-nav .nav-link {
    color: var(--color-text-light) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.k9djf3h.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.k9djf3h.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.j8sh2d.navbar-toggler {
    border-color: var(--color-login);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-hero {
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89538 100%);
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.5);
    color: #fff;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.casino-info-section {
    background: linear-gradient(135deg, #2a2624 0%, var(--color-bg) 100%);
}

.info-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.casino-info-table {
    margin-bottom: 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.casino-info-table td {
    padding: 16px 20px;
    border-color: rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.param-name {
    font-weight: 600;
    width: 35%;
    background: rgba(255, 255, 255, 0.03);
}

.param-value {
    width: 65%;
}

.content-section {
    background-color: #1a1816;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
}

.main-heading {
    color: var(--color-accent);
    font-size: 36px;
    font-weight: 800;
}

.author-info {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.author-info a {
    color: var(--color-accent);
    text-decoration: underline;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper h2 {
    color: var(--color-text-light);
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--color-login);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

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

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

.content-wrapper table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.tournaments-section {
    background: linear-gradient(135deg, #1f1c1a 0%, var(--color-bg) 100%);
}

.tournament-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 129, 45, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(213, 129, 45, 0.3);
    border-color: var(--color-accent);
}

.tournament-card:hover::before {
    top: -10%;
    right: -10%;
}

.tournament-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89538 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.tournament-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 16px;
    margin-top: 10px;
}

.tournament-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tournament-prize {
    background: rgba(213, 129, 45, 0.15);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid var(--color-accent);
}

.prize-label {
    font-weight: 600;
    color: var(--color-login);
    margin-right: 10px;
}

.prize-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-accent);
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.timer-icon {
    font-size: 18px;
}

.countdown {
    font-weight: 700;
    color: var(--color-accent);
}

.btn-tournament {
    background: linear-gradient(135deg, var(--color-signup) 0%, #c47226 100%);
    color: #fff;
    border: none;
    padding: 12px 0;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-tournament:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.4);
    color: #fff;
}

.app-section {
    background-color: #1a1816;
}

.app-info-table .table {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.app-info-table td {
    padding: 12px 16px;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-app-store,
.btn-play-market,
.btn-apk {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 600;
}

.btn-app-store:hover,
.btn-play-market:hover,
.btn-apk:hover {
    background: var(--color-accent);
    transform: translateX(10px);
    color: #fff;
}

.video-section {
    background: linear-gradient(135deg, #252220 0%, var(--color-bg) 100%);
}

.video-wrapper {
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.wheel-section {
    background-color: #1a1816;
}

.wheel-game-wrapper {
    max-width: 600px;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(213, 129, 45, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid var(--color-accent);
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.btn-spin {
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89538 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 48px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.3);
}

.btn-spin:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(213, 129, 45, 0.5);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wheel-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.wheel-result {
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.result-content {
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.2) 0%, rgba(213, 129, 45, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--color-accent);
}

.result-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.result-text {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.btn-claim-bonus {
    background: linear-gradient(135deg, var(--color-signup) 0%, #c47226 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-claim-bonus:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.5);
    color: #fff;
}

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

.faq-section {
    background: linear-gradient(135deg, #1f1c1a 0%, var(--color-bg) 100%);
}

.faq-wrapper {
    max-width: 900px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 18px;
    padding: 20px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.2) 0%, rgba(213, 129, 45, 0.1) 100%);
    color: var(--color-accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-accent);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    padding: 24px;
    line-height: 1.8;
}

.footer-main {
    background: linear-gradient(180deg, var(--color-footer) 0%, #252220 100%);
    color: var(--color-text-light);
    border-top: 4px solid var(--color-accent);
}

.footer-logo img {
    max-width: 160px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.footer-support p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.payment-methods img,
.game-providers img {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
}

.payment-methods img:hover,
.game-providers img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
}

.small-text {
    font-size: 13px;
}

.fixed-bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-header) 0%, #3d3835 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    padding: 16px 0;
    animation: slideUp 0.5s ease;
}

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

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

.widget-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.widget-emoji {
    font-size: 32px;
}

.widget-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-light);
    display: block;
}

.widget-subtitle {
    font-size: 16px;
    color: var(--color-login);
    display: block;
}

.widget-button {
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89538 100%);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(213, 129, 45, 0.3);
}

.widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.5);
    color: #fff;
}

@media (max-width: 991px) {
    .carousel-item img {
        height: 400px;
    }

    .section-title {
        font-size: 32px;
    }

    .main-heading {
        font-size: 28px;
    }

    .wheel-container {
        width: 300px;
        height: 300px;
    }

    .widget-text {
        gap: 10px;
    }

    .widget-emoji {
        font-size: 24px;
    }

    .widget-title {
        font-size: 18px;
    }

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

    .widget-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .carousel-item img {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 24px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .param-name,
    .param-value {
        width: 50%;
        font-size: 14px;
    }

    .tournament-title {
        font-size: 20px;
    }

    .prize-amount {
        font-size: 18px;
    }

    .wheel-container {
        width: 280px;
        height: 280px;
    }

    .btn-spin {
        padding: 12px 32px;
        font-size: 14px;
    }

    .info-table-wrapper,
    .content-wrapper {
        padding: 20px;
    }

    .widget-content {
        flex-direction: column;
        gap: 12px;
    }
}

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

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

    .section-title {
        font-size: 26px;
    }

    .wheel-container {
        width: 250px;
        height: 250px;
    }
}

.unused-class-kd93j {
    display: none;
}

.unused-wrapper-js82h {
    visibility: hidden;
}

.elementor-section {
    position: relative;
}

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

.site-branding {
    padding: 0;
}

.entry-meta {
    font-size: 14px;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.container.swmd {
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
}

.container.swmd p {
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 14px;
}

.container.swmd h1,
.container.swmd .main-heading {
    font-size: clamp(26px, 6vw, 40px);
    line-height: 1.15;
    margin: 0 0 14px;
}

.container.swmd h2 {
    font-size: clamp(20px, 4.8vw, 28px);
    line-height: 1.25;
    margin: 22px 0 12px;
}

.container.swmd h3 {
    font-size: clamp(18px, 4.2vw, 24px);
    line-height: 1.3;
    margin: 18px 0 10px;
}

.container.swmd ul,
.container.swmd ol {
    margin: 12px 0 16px 22px;
}

.container.swmd li {
    margin-bottom: 8px;
}

.container.swmd a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

section {
    padding: 56px 0;
}

@media (max-width: 991px) {
    section {
        padding: 42px 0;
    }

    .info-table-wrapper,
    .content-wrapper {
        padding: 18px;
        border-radius: 14px;
    }

    .sec-bl9k,
    .wt8mk2-content-section {
        padding: 18px;
        margin: 16px 10px;
        border-radius: 14px;
    }
}

@media (max-width: 520px) {
    section {
        padding: 34px 0;
    }

    .info-table-wrapper,
    .content-wrapper {
        padding: 14px;
        border-radius: 12px;
    }
}

.container.swmd table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 760px) {
    .info-table-wrapper,
    .content-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container.swmd table {
        min-width: 640px;
    }
}

@media (max-width: 991px) {
    .carousel-item img {
        height: 360px;
    }

    .carousel-caption {
        left: 10%;
        right: 10%;
        bottom: 18%;
    }

    .btn-hero {
        padding: 12px 26px;
        font-size: 14px;
        border-radius: 999px;
    }
}

@media (max-width: 520px) {
    .carousel-item img {
        height: 280px;
    }

    .carousel-caption {
        left: 8%;
        right: 8%;
        bottom: 14%;
    }
}

.wheel-container {
    width: min(340px, 85vw);
    height: min(340px, 85vw);
}

@media (max-width: 520px) {
    .wheel-container {
        width: min(280px, 82vw);
        height: min(280px, 82vw);
    }

    #wheelCanvas {
        width: 100% !important;
        height: 100% !important;
    }

    .btn-spin {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .tournaments-section .row,
    .bonuses-section .row {
        row-gap: 14px;
    }

    .tournament-card {
        padding: 18px;
        border-radius: 16px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 34px);
        margin-bottom: 22px;
    }
}

.fixed-bonus-widget {
    padding: 12px 0;
}

@media (max-width: 767px) {
    .widget-content {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        text-align: center;
    }

    .widget-text {
        justify-content: center;
        gap: 10px;
    }

    .widget-button {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        font-size: 14px;
    }

    body {
        padding-bottom: 92px;
    }
}

.kjs83hd.header-main {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(49, 45, 43, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

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

    .header-buttons {
        gap: 8px;
    }

    .btn-login,
    .btn-signup {
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .j8sh2d.navbar-toggler {
        border: 1px solid rgba(215, 206, 197, .25);
        border-radius: 12px;
        padding: 8px 10px;
    }

    .k9djf3h.navbar-nav .nav-link {
        padding: 12px 14px !important;
        border-radius: 12px;
        background: rgba(0, 0, 0, .18);
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .k9djf3h.navbar-nav .nav-link::after {
        display: none;
    }
}

.container.swmd p,
.container.swmd li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

#casino-info.kd92jsk {
    padding: 56px 0;
    background: linear-gradient(135deg, #2a2624 0%, #211e1c 70%);
}

#casino-info .section-title {
    font-size: clamp(24px, 6vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: #f5f5f5;
    margin: 0 0 22px;
    letter-spacing: .2px;
    position: relative;
}

#casino-info .section-title::after {
    content: "";
    display: block;
    width: 96px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, #d5812d, transparent);
    border-radius: 999px;
}

#casino-info .info-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
    overflow: hidden;
}

#casino-info .casino-info-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(49, 45, 43, .75);
    border-radius: 14px;
    overflow: hidden;
}

#casino-info .casino-info-table td {
    border: 0 !important;
    padding: 14px 16px;
    color: #e8e6e3;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.55;
}

#casino-info .casino-info-table tr + tr td {
    border-top: 1px solid rgba(255, 255, 255, .10) !important;
}

#casino-info .param-name {
    width: 36%;
    font-weight: 700;
    color: #d7cec5;
    background: rgba(255, 255, 255, .03);
}

#casino-info .param-value {
    width: 64%;
    color: #f5f5f5;
}

#casino-info .param-value strong {
    color: #d5812d;
    font-weight: 800;
}

#casino-info .param-value {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 991px) {
    #casino-info.kd92jsk {
        padding: 44px 0;
    }

    #casino-info .info-table-wrapper {
        padding: 14px;
        border-radius: 14px;
    }

    #casino-info .casino-info-table td {
        padding: 12px 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #casino-info .casino-info-table,
    #casino-info .casino-info-table tbody,
    #casino-info .casino-info-table tr,
    #casino-info .casino-info-table td {
        display: block;
        width: 100%;
    }

    #casino-info .casino-info-table {
        background: transparent;
        border-radius: 0;
    }

    #casino-info .casino-info-table tr {
        background: rgba(49, 45, 43, .78);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;
        padding: 12px;
        margin: 0 0 12px;
    }

    #casino-info .casino-info-table tr + tr td {
        border-top: 0 !important;
    }

    #casino-info .casino-info-table td {
        padding: 0;
        border: 0 !important;
    }

    #casino-info .param-name {
        width: 100%;
        background: transparent;
        color: #d7cec5;
        font-weight: 800;
        font-size: 14px;
        line-height: 1.35;
        padding: 0 0 8px;
    }

    #casino-info .param-value {
        width: 100%;
        font-size: 15px;
        line-height: 1.6;
        color: #f5f5f5;
    }
}

@media (max-width: 520px) {
    #casino-info.kd92jsk {
        padding: 36px 0;
    }

    #casino-info .section-title {
        margin-bottom: 16px;
    }

    #casino-info .info-table-wrapper {
        padding: 12px;
        border-radius: 12px;
    }

    #casino-info .casino-info-table tr {
        border-radius: 12px;
        padding: 12px;
    }
}

#casino-info.kd92jsk {
    padding: 56px 0;
    background: linear-gradient(135deg, #1f1c1a 0%, #211e1c 70%);
}

#casino-info .section-title {
    font-size: clamp(24px, 6vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: #f5f5f5;
    margin: 0 0 22px;
    letter-spacing: .2px;
    position: relative;
}

#casino-info .section-title::after {
    content: "";
    display: block;
    width: 96px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, #d5812d, transparent);
    border-radius: 999px;
}

#casino-info .info-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
    overflow: hidden;
}

#casino-info .casino-info-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #2a2624;
}

#casino-info .casino-info-table td {
    border: 0 !important;
    padding: 14px 16px;
    color: #e8e6e3;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.55;
}

#casino-info .casino-info-table tr + tr td {
    border-top: 1px solid rgba(255, 255, 255, .10) !important;
}

#casino-info .param-name {
    width: 36%;
    font-weight: 800;
    color: #d7cec5;
    background: rgba(255, 255, 255, .03);
}

#casino-info .param-value {
    width: 64%;
    color: #f5f5f5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#casino-info .param-value strong {
    color: #d5812d;
    font-weight: 900;
}

@media (max-width: 991px) {
    #casino-info.kd92jsk {
        padding: 44px 0;
    }

    #casino-info .casino-info-table td {
        padding: 12px 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #casino-info .info-table-wrapper {
        border: 0;
        box-shadow: none;
    }

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

    #casino-info .casino-info-table {
        background: transparent;
    }

    #casino-info .casino-info-table tr {
        background: #2a2624;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;
        padding: 14px 14px;
        margin: 0 0 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    }

    #casino-info .casino-info-table tr + tr td {
        border-top: 0 !important;
    }

    #casino-info .casino-info-table td {
        padding: 0;
        border: 0 !important;
    }

    #casino-info .param-name {
        width: 100%;
        background: transparent;
        color: #d7cec5;
        font-weight: 900;
        font-size: 14px;
        line-height: 1.35;
        padding: 0 0 8px;
    }

    #casino-info .param-value {
        width: 100%;
        font-size: 15px;
        line-height: 1.6;
        color: #f5f5f5;
    }
}

@media (max-width: 520px) {
    #casino-info.kd92jsk {
        padding: 36px 0;
    }

    #casino-info .section-title {
        margin-bottom: 16px;
    }

    #casino-info .casino-info-table tr {
        border-radius: 12px;
        padding: 12px;
    }
}

#casino-info,
#casino-info .info-table-wrapper,
#casino-info .casino-info-table,
#casino-info .casino-info-table * {
    background: transparent;
}

#casino-info .info-table-wrapper {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
}

#casino-info .casino-info-table.table {
    --bs-table-bg: #2a2624;
    --bs-table-color: #e8e6e3;
    --bs-table-striped-bg: #272321;
    --bs-table-striped-color: #e8e6e3;
    --bs-table-hover-bg: #312c29;
    --bs-table-hover-color: #ffffff;
    background-color: #2a2624 !important;
    color: #e8e6e3 !important;
    border-color: rgba(255, 255, 255, .10) !important;
    margin: 0 !important;
}

#casino-info .casino-info-table > :not(caption) > * > * {
    background-color: #2a2624 !important;
    color: #e8e6e3 !important;
    box-shadow: none !important;
}

#casino-info .casino-info-table tr:hover > * {
    background-color: #312c29 !important;
}

#casino-info .param-name {
    background-color: rgba(255, 255, 255, .03) !important;
    color: #d7cec5 !important;
    font-weight: 800;
}

#casino-info .param-value {
    background-color: #2a2624 !important;
    color: #f5f5f5 !important;
}

#casino-info .casino-info-table td {
    border-color: rgba(255, 255, 255, .10) !important;
}

#app {
    background: transparent;
    padding: 70px 0;
}

#app .container {
    max-width: 1100px;
}

#app .row {
    row-gap: 20px;
}

#app h3 {
    color: #e8e6e3;
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 14px !important;
}

#app p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    margin-bottom: 18px !important;
}

#app .app-info-table {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
}

#app .app-info-table .table {
    --bs-table-bg: transparent;
    --bs-table-color: #e8e6e3;
    --bs-table-striped-bg: rgba(255, 255, 255, .04);
    --bs-table-striped-color: #e8e6e3;
    --bs-table-hover-bg: rgba(213, 129, 45, .10);
    --bs-table-hover-color: #fff;
    margin: 0 !important;
    background: transparent !important;
    color: #e8e6e3 !important;
    border-color: rgba(255, 255, 255, .10) !important;
}

#app .app-info-table .table > :not(caption) > * > * {
    background: transparent !important;
    color: #e8e6e3 !important;
    border-color: rgba(255, 255, 255, .10) !important;
    padding: 14px 16px !important;
    box-shadow: none !important;
}

#app .app-info-table .table tbody tr:hover > * {
    background: rgba(255, 255, 255, .04) !important;
}

#app .app-info-table strong {
    color: #d7cec5;
    font-weight: 800;
}

#app .app-download-buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
}

#app .btn-app-store,
#app .btn-play-market,
#app .btn-apk {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    color: #e8e6e3 !important;
    font-weight: 800;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

#app .btn-app-store:hover,
#app .btn-play-market:hover,
#app .btn-apk:hover {
    transform: translateY(-2px);
    border-color: rgba(213, 129, 45, .55) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
    background: rgba(213, 129, 45, .08) !important;
}

#app .btn-app-store img,
#app .btn-play-market img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(0, 0, 0, .25);
    padding: 6px;
}

@media (max-width: 991px) {
    #app {
        padding: 50px 0;
    }

    #app .col-lg-6 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    #app {
        padding: 40px 0;
    }

    #app h3 {
        font-size: 22px;
    }

    #app p {
        font-size: 15px;
    }

    #app .app-info-table .table > :not(caption) > * > * {
        padding: 12px 12px !important;
        font-size: 14px;
    }

    #app .btn-app-store,
    #app .btn-play-market,
    #app .btn-apk {
        padding: 12px 12px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 380px) {
    #app .app-info-table .table > :not(caption) > * > * {
        font-size: 13px;
    }
}
