/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #0A1E00;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Header Styles */
.h3k9m-header {
    background-color: #012B00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.r7k3m-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.p5m9x-logo {
    display: block;
}

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

.t4m7n-nav {
    display: block;
}

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

.r7m4n-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.r7m4n-nav-link:hover {
    color: #00B300;
}

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

.p2k7n-online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 14px;
}

.m9k4x-online-icon {
    color: #00B300;
    font-size: 12px;
}

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

.btn-g5w2p {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-login-k3m8n {
    background-color: #FFFFFF;
    color: #012B00;
}

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

.btn-signup-m4k9n {
    background-color: #00B300;
    color: #ffffff;
}

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

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

.p5n8k-burger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.z9k3m-hero {
    background-image: url('/banner-cas-1x.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.z9k3m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 43, 0, 0.9) 0%, rgba(10, 30, 0, 0.8) 100%);
}

.p4n7x-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.h2s9l-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.m8q4k-hero-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
}

.x3v7n-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-d8k3m {
    background-color: #00B300;
    color: #ffffff;
    font-size: 18px;
    padding: 15px 40px;
}

.btn-primary-d8k3m:hover {
    background-color: #009900;
    transform: scale(1.05);
}

.btn-secondary-f2n9x {
    background-color: #FFFFFF;
    color: #012B00;
    font-size: 18px;
    padding: 15px 40px;
}

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

/* Main Content */
.l6t4r-main {
    flex: 1;
    padding: 40px 0;
}

.s4p8w-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Jackpots Section */
.j7m3k-jackpots {
    margin-bottom: 60px;
}

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

.t9k4m-jackpot-card {
    background: linear-gradient(135deg, #013300 0%, #012B00 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.2);
}

.t9k4m-jackpot-card:hover {
    transform: translateY(-10px);
}

.w3n7p-jackpot-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.q8s2l-jackpot-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.v5m9x-jackpot-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00B300;
    margin-bottom: 20px;
}

.btn-jackpot-k3n8m {
    background-color: #00B300;
    color: #ffffff;
}

.btn-jackpot-k3n8m:hover {
    background-color: #009900;
}

/* Screenshots Section */
.b8n3k-screenshots {
    margin-bottom: 60px;
}

.y6m2l-screenshots-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.n9k4x-screenshot-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.p3m8n-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.n9k4x-screenshot-slide:hover .p3m8n-screenshot-img {
    transform: scale(1.05);
}

.k7n2m-slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #013300;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #00B300;
}

/* Tournaments Section */
.t5k9n-tournaments {
    margin-bottom: 60px;
}

.w3p7m-tournaments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.l9k3x-tournament-card {
    background: linear-gradient(135deg, #002200 0%, #013300 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.2);
}

.q2n8m-tournament-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.r5k7n-tournament-desc {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.t6m3k-tournament-timer {
    font-size: 24px;
    font-weight: 700;
    color: #00B300;
    margin-bottom: 15px;
}

.p9n2x-tournament-prize {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.btn-tournament-m8k3n {
    background-color: #00B300;
    color: #ffffff;
}

.btn-tournament-m8k3n:hover {
    background-color: #009900;
}

/* Mini Game Section */
.g8k3n-minigame {
    margin-bottom: 60px;
}

.m5n9x-slot-machine {
    background: linear-gradient(135deg, #013300 0%, #002200 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 179, 0, 0.3);
}

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

.r8n3k-reel {
    width: 100px;
    height: 100px;
    background-color: #012B00;
    border: 3px solid #00B300;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.btn-spin-t4k8m {
    background-color: #00B300;
    color: #ffffff;
    font-size: 20px;
    padding: 15px 50px;
}

.btn-spin-t4k8m:hover {
    background-color: #009900;
}

.btn-spin-t4k8m:disabled {
    background-color: #666666;
    cursor: not-allowed;
}

.w9k2n-result-message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    min-height: 60px;
}

.w9k2n-result-message.win {
    color: #00B300;
}

.w9k2n-result-message.lose {
    color: #cccccc;
}

/* Content Section */
.v7n3m-content-section {
    margin-bottom: 60px;
}

.k2m8x-article-content {
    background-color: #013300;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.k2m8x-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.k2m8x-article-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #ffffff;
}

.k2m8x-article-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.k2m8x-article-content ul,
.k2m8x-article-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.k2m8x-article-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.k2m8x-article-content table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    border: 2px solid #00B300;
}

.k2m8x-article-content th,
.k2m8x-article-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #00B300;
}

.k2m8x-article-content th {
    background-color: #012B00;
    font-weight: 600;
}

.k2m8x-article-content td {
    background-color: #002200;
}

.k2m8x-article-content a {
    color: #00B300;
    text-decoration: underline;
}

.k2m8x-article-content a:hover {
    color: #009900;
}

/* FAQ Section */
.f6k9n-faq {
    margin-bottom: 60px;
}

.q3n7m-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.w8k2n-faq-item {
    background-color: #013300;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.t4m9x-faq-question:hover {
    background-color: #013800;
}

.faq-icon-p2k7n {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

.r5n8k-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.r5n8k-faq-answer > div {
    padding: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Author Section */
.a7k3n-author {
    margin-bottom: 60px;
}

.m9k2x-author-card {
    background-color: #013300;
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.q7m3n-author-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00B300;
}

.w2k9m-author-person {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.r8n3k-author-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.t4k8n-author-link {
    color: #00B300;
    text-decoration: none;
    font-weight: 600;
}

.t4k8n-author-link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.f8k3m-footer {
    background-color: #012B00;
    padding: 40px 0 20px;
    margin-top: auto;
}

.r7k4n-footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.l3m8k-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.q4n9m-footer-list {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.r8m3k-footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.r8m3k-footer-link:hover {
    color: #00B300;
}

.m5k8n-footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.p9k2n-footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.w4m8k-payment-icons,
.q5m9k-provider-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.r7k3n-payment-icon,
.t3k8n-provider-icon {
    height: 40px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.r7k3n-payment-icon:hover,
.t3k8n-provider-icon:hover {
    filter: brightness(1.1);
}

.k9m3n-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #013800;
}

.p2k8m-footer-legal p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

/* Fixed Widget */
.x9k3m-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #012B00 0%, #013300 100%);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

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

.w4m8n-widget-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.btn-widget-k2n7m {
    background-color: #00B300;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
}

.btn-widget-k2n7m:hover {
    background-color: #009900;
}

/* Unused Styles for Uniqueness */
.unused-style-1 {
    display: none;
}

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

.z9x4k-unused {
    opacity: 0;
}

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

.t7k2q-unused {
    width: 0;
    height: 0;
}

/* WordPress-like Classes */
.wp-block-group {
}

.wp-block-column {
}

.wp-block-columns {
}

.elementor-element {
}

.elementor-widget {
}

.yoast-breadcrumb {
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .t4m7n-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #012B00;
        padding: 20px;
    }

    .t4m7n-nav.active {
        display: block;
    }

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

    .t9k3m-burger {
        display: flex;
    }

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

    .m8q4k-hero-text {
        font-size: 16px;
    }

    .x3v7n-hero-buttons {
        flex-direction: column;
    }

    .y6m2l-screenshots-container {
        grid-template-columns: 1fr;
    }

    .k7n2m-slider-dots {
        display: flex;
    }

    .w3p7m-tournaments-container {
        grid-template-columns: 1fr;
    }

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

    .r8n3k-reel {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .k2m8x-article-content {
        padding: 20px;
    }

    .k2m8x-article-content table {
        display: block;
        overflow-x: auto;
    }

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

@media (max-width: 480px) {
    .x7k2n-header-buttons {
        order: -1;
    }

    .p2k7n-online-count {
        font-size: 12px;
    }
}

.lhftr {
    max-width: 980px;
    margin: 0 auto 24px;
    padding: 34px 24px 42px;
    color: #eef8ea;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #102709;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.lhftr h1,
.lhftr h2,
.lhftr h3,
.lhftr h4,
.lhftr h5,
.lhftr h6 {
    color: #ffffff;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.lhftr h2 {
    font-size: clamp(1.38rem, 2.2vw, 1.92rem);
    margin-top: 46px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lhftr h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.34rem);
    margin-top: 28px;
    margin-bottom: 14px;
    color: #8dff8d;
}

.lhftr h4 {
    font-size: 1.04rem;
    margin-top: 22px;
    margin-bottom: 12px;
}

.lhftr p {
    margin-bottom: 16px;
    color: #c2d0bc;
    font-size: 1rem;
    line-height: 1.76;
}

.lhftr > p:first-of-type {
    color: #eef8ea;
    font-size: 1.05rem;
}

.lhftr a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.lhftr a:hover {
    color: #cffff0;
}

.lhftr strong,
.lhftr b {
    color: #ffffff;
    font-weight: 800;
}

.lhftr em,
.lhftr i {
    font-style: italic;
}

.lhftr ul,
.lhftr ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.lhftr ul li,
.lhftr ol li {
    margin-bottom: 10px;
    color: #c2d0bc;
    line-height: 1.72;
}

.lhftr ul li::marker,
.lhftr ol li::marker {
    color: #00b300;
    font-weight: 800;
}

.lhftr li p {
    margin-bottom: 0;
}

.lhftr blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid #00b300;
    border-radius: 0 14px 14px 0;
    background: rgba(0, 179, 0, 0.08);
}

.lhftr blockquote p {
    margin: 0;
    color: #eef8ea;
}

.lhftr table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.lhftr thead tr {
    background: #012b00;
}

.lhftr th,
.lhftr td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lhftr th {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.lhftr td {
    color: #eef8ea;
    font-size: 0.95rem;
}

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

.lhftr hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 32px 0;
}

.lhftr img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.lhftr .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 16px;
}

.lhftr .table-wrap table {
    margin: 0;
    min-width: 700px;
}

@media (max-width: 767px) {
    .lhftr {
        padding: 22px 16px 28px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .lhftr h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .lhftr h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        padding-bottom: 8px;
        font-size: 1.26rem;
    }

    .lhftr h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-size: 1.05rem;
    }

    .lhftr p {
        font-size: 0.95rem;
        line-height: 1.72;
        margin-bottom: 14px;
    }

    .lhftr ul,
    .lhftr ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .lhftr ul li,
    .lhftr ol li {
        margin-bottom: 8px;
    }

    .lhftr blockquote {
        margin: 22px 0;
        padding: 16px;
    }

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

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

    .lhftr thead {
        display: none;
    }

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

    .lhftr tr {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lhftr td {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .lhftr td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #8dff8d;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 479px) {
    .lhftr {
        padding-left: 14px;
        padding-right: 14px;
    }

    .lhftr h1 {
        font-size: 1.64rem;
    }

    .lhftr h2 {
        font-size: 1.16rem;
    }

    .lhftr h3 {
        font-size: 1.01rem;
    }

    .lhftr p,
    .lhftr td,
    .lhftr ul li,
    .lhftr ol li {
        font-size: 0.92rem;
    }
}
