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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #211e1c;
    color: #e8e6e3;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Header Styles */
.g2v7k.site-header {
    background: linear-gradient(135deg, #312d2b 0%, #3d3835 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

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

.logo-link {
    display: flex;
}

.site-logo {
    height: 45px;
    width: auto;
    margin-left: -20px;
}

.main-nav {
    display: block;
}

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

.nav-menu a {
    color: #d7cec5;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(213, 129, 45, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
}

.online-icon {
    font-size: 16px;
}

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

.mobile-buttons {
    display: none;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-login {
    background-color: #d7cec5;
    color: #312d2b;
}

.btn-login:hover {
    background-color: #c9bfb5;
    transform: translateY(-2px);
    color: #312d2b;
}

.btn-signup {
    background-color: #d5812d;
    color: #fff;
}

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

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

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

.p7j3n.hero-section {
    background: url('/banner.jpg') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.p7j3n.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 30, 28, 0.85) 0%, rgba(49, 45, 43, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    color: #d7cec5;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #d5812d 0%, #e69945 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(213, 129, 45, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.6);
    color: #fff;
}

.btn-secondary {
    background: rgba(215, 206, 197, 0.15);
    color: #d7cec5;
    border: 2px solid #d7cec5;
}

.btn-secondary:hover {
    background: #d7cec5;
    color: #312d2b;
}

/* Main Content */
.t4n8v.main-content {
    flex: 1;
    padding: 60px 0;
}

section {
    margin-bottom: 60px;
    background: #2a2623;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #d5812d;
    text-align: center;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: #d7cec5;
    margin-bottom: 30px;
}

/* Info Table */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.info-table, .app-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid #3d3835;
    border-radius: 8px;
    overflow: hidden;
}

.info-table td, .app-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #3d3835;
    text-align: left;
}

.info-table tr:last-child td, .app-table tr:last-child td {
    border-bottom: none;
}

.info-table .param, .app-table .param {
    font-weight: 600;
    color: #d7cec5;
    width: 35%;
}

.info-table .value, .app-table .value {
    color: #e8e6e3;
}

/* Winners Section */
.winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.winner-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 15px;
    background: #3d3835;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(213, 129, 45, 0.3);
}

.winner-rank {
    font-size: 20px;
    font-weight: 700;
    color: #d5812d;
    text-align: center;
}

.winner-name {
    font-weight: 500;
    color: #e8e6e3;
}

.winner-amount {
    font-weight: 700;
    color: #4ade80;
    white-space: nowrap;
}

/* App Section */
.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-btn {
    display: block;

}

.app-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    background-color: #807870;
    border-radius: 10px;
}

.app-btn:hover img {
    transform: scale(1.05);
}

.bonus-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: linear-gradient(135deg, #3d3835 0%, #312d2b 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #4a4440;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #d5812d;
    box-shadow: 0 8px 25px rgba(213, 129, 45, 0.3);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d5812d;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bonus-title {
    font-size: 26px;
    font-weight: 700;
    color: #d5812d;
    margin-bottom: 10px;
}

.bonus-amount {
    font-size: 20px;
    color: #d7cec5;
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 25px;
}

.bonus-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.bonus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.btn-bonus {
    width: 100%;
    background: linear-gradient(135deg, #d5812d 0%, #e69945 100%);
    color: #fff;
    padding: 12px;
    font-size: 16px;
}

.btn-bonus:hover {
    background: linear-gradient(135deg, #bf6f1f 0%, #d5812d 100%);
    color: #fff;
}

/* Slot Game Section */
.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.slot-reel {
    background: #3d3835;
    padding: 40px 20px;
    border-radius: 12px;
    font-size: 64px;
    border: 3px solid #d5812d;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn-slot {
    background: linear-gradient(135deg, #d5812d 0%, #e69945 100%);
    color: #fff;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
}

.btn-slot:hover:not(:disabled) {
    background: linear-gradient(135deg, #bf6f1f 0%, #d5812d 100%);
    color: #fff;
}

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

.slot-result {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
    min-height: 60px;
    padding: 15px;
    border-radius: 8px;
}

.slot-result.win {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 2px solid #4ade80;
}

.slot-result.lose {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    border: 2px solid #f87171;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #3d3835;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #3d3835;
    color: #e8e6e3;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #4a4440;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #d5812d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #2a2623;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer div {
    padding: 20px;
    line-height: 1.7;
}

/* Content Block */
.n6l9h.content-block {
    background: #2a2623;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.content-block h1, .content-block h2, .content-block h3 {
    color: #d5812d;
    margin: 25px 0 15px;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

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

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

.content-block table td, .content-block table th {
    border: 1px solid #3d3835;
    padding: 12px;
    text-align: left;
}

.content-block table th {
    background: #3d3835;
    font-weight: 600;
    color: #d7cec5;
}

/* Footer */
.r9t3x.site-footer {
    background: linear-gradient(135deg, #312d2b 0%, #251f1d 100%);
    padding: 50px 0 20px;
    margin-top: auto;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

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

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

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

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

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

.footer-menu a {
    color: #a39c95;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #d5812d;
}

.footer-support p {
    color: #a39c95;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-payments, .footer-providers {
    margin-bottom: 30px;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #d7cec5;
    margin-bottom: 15px;
    text-align: center;
}

.payment-logos, .provider-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.payment-logos img, .provider-logos img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-logos img:hover, .provider-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #3d3835;
    padding-top: 30px;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: #807870;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.copyright {
    font-weight: 600;
    color: #a39c95 !important;
}

.footer-author {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #3d3835;
}

.author-info {
    color: #a39c95;
    font-size: 14px;
}

/* Fixed Widget */
.j4m8r.widget-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #d5812d 0%, #e69945 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

.widget-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.btn-widget {
    background: #fff;
    color: #d5812d;
    padding: 12px 35px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-widget:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    color: #d5812d;
    text-decoration: none;
}

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

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

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(1080deg);
    }
}

.spinning {
    animation: spin 1s ease-in-out;
}

/* Unused styles for uniqueness */
.x3k9p {
    opacity: 0;
    pointer-events: none;
}

.q7w2m {
    display: none !important;
}

.h5t8n {
    visibility: hidden;
}

.unused-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.unused-flex {
    display: flex;
    justify-content: space-between;
}

.elementor-section {
    width: 100%;
}

.yoast-seo {
    font-size: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #312d2b;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .burger-menu {
        display: flex;
    }

    .desktop-btns {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        gap: 8px;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .bonus-slider {
        grid-template-columns: 1fr;
    }

    section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

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

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

    .widget-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .slot-display {
        gap: 10px;
    }

    .slot-reel {
        padding: 25px 10px;
        font-size: 48px;
    }

    .info-table .param {
        width: 45%;
    }
}


.cmld {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.cmld p,
.cmld li {
    font-size: 16px;
    line-height: 1.75;
    color: #e8e6e3;
}

.cmld h2 {
    font-size: 28px;
    line-height: 1.25;
    color: #d5812d;
    margin: 28px 0 14px;
}

.cmld h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #d7cec5;
    margin: 22px 0 10px;
}

.cmld a {
    color: #d5812d;
    text-decoration: none;
    border-bottom: 1px solid rgba(213, 129, 45, 0.35);
}

.cmld a:hover {
    border-bottom-color: rgba(213, 129, 45, 0.9);
}

.cmld ul,
.cmld ol {
    margin: 14px 0 18px;
    padding-left: 22px;
}

.cmld ul li,
.cmld ol li {
    margin: 8px 0;
}

.cmld ul {
    list-style: none;
    padding-left: 0;
}

.cmld ul li {
    position: relative;
    padding-left: 26px;
}

.cmld ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4ade80;
    font-weight: 700;
}

.cmld ol {
    counter-reset: cmld-ol;
    padding-left: 0;
    list-style: none;
}

.cmld ol li {
    counter-increment: cmld-ol;
    position: relative;
    padding-left: 34px;
}

.cmld ol li::before {
    content: counter(cmld-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #d5812d;
    font-weight: 700;
}

.cmld strong {
    color: #fff;
}

.cmld table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
    margin: 18px 0 24px;
    background: #2a2725;
}

.cmld th,
.cmld td {
    padding: 12px 14px;
    border: 1px solid rgba(63, 58, 55, 0.9);
    text-align: left;
    vertical-align: top;
}

.cmld th {
    background: rgba(213, 129, 45, 0.25);
    color: #fff;
    font-weight: 700;
}

.cmld blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid #d5812d;
    background: rgba(215, 206, 197, 0.06);
    border-radius: 10px;
}

.cmld img,
.cmld video,
.cmld iframe {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .container.cmld {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container.cmld {
        padding-left: 12px;
        padding-right: 12px;
    }

    .cmld p,
    .cmld li {
        font-size: 15px;
        line-height: 1.75;
    }

    .cmld h2 {
        font-size: 22px;
        margin: 22px 0 12px;
    }

    .cmld h3 {
        font-size: 18px;
        margin: 18px 0 10px;
    }

    .cmld table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 10px;
    }

    .cmld th,
    .cmld td {
        white-space: nowrap;
    }

    .cmld ul li {
        padding-left: 24px;
    }

    .cmld ol li {
        padding-left: 32px;
    }
}

@media (max-width: 420px) {
    .container.cmld {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cmld p,
    .cmld li {
        font-size: 14px;
    }

    .cmld h2 {
        font-size: 20px;
    }

    .cmld h3 {
        font-size: 17px;
    }
}

@supports (overflow: clip) {
    html, body {
        overflow-x: clip;
    }
}

.w6r2t.winners-section {
    margin: 0 auto 60px;
    padding: 28px 22px;
    background: linear-gradient(135deg, rgba(49, 45, 43, 0.92), rgba(42, 39, 37, 0.92));
    border-radius: 14px;
    border: 1px solid rgba(213, 129, 45, 0.22);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.w6r2t.winners-section .section-title {
    margin: 0 0 16px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #d5812d;
    text-align: center;
}

.w6r2t.winners-section .winners-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.w6r2t.winners-section .winner-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    background: rgba(215, 206, 197, 0.06);
    border: 1px solid rgba(213, 129, 45, 0.16);
    border-radius: 12px;
}

.w6r2t.winners-section .winner-rank {
    width: 42px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    color: #1a1816;
    background: linear-gradient(135deg, #d5812d, #e6a04a);
    box-shadow: 0 6px 16px rgba(213, 129, 45, 0.25);
}

.w6r2t.winners-section .winner-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    color: #e8e6e3;
}

.w6r2t.winners-section .winner-amount {
    font-weight: 900;
    font-size: 14px;
    color: #4ade80;
    white-space: nowrap;
}

@media (min-width: 900px) {
    .w6r2t.winners-section .winners-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .w6r2t.winners-section {
        padding: 22px 12px;
    }

    .w6r2t.winners-section .section-title {
        font-size: 20px;
    }

    .w6r2t.winners-section .winner-item {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        padding: 11px 10px;
        gap: 10px;
    }

    .w6r2t.winners-section .winner-amount {
        font-size: 13px;
    }
}
