:root {
    --bg-dark-green: #060b08;
    --bg-card: #0f1b14;
    --bg-card-hover: #16291e;
    --cash-green: #22c55e;
    --cash-green-glow: rgba(34, 197, 94, 0.4);
    --gold-coin: #eab308;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --font-game: 'Barlow Semi Condensed', sans-serif;
    --font-main: 'Kanit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    font-family: var(--font-main);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

.gaming-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: linear-gradient(180deg, rgba(6, 11, 8, 0.55) 0%, rgba(6, 11, 8, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1600&auto=format&fit=crop') center center / cover no-repeat;
    filter: brightness(0.4) contrast(1.1);
    background-size: cover;
    background-position: center;
}

.green-cash-glow {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 80vh;
    background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.22) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 27, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-game);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-brand img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--cash-green-glow));
}

.nav-brand span {
    color: var(--cash-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--cash-green);
}

.btn-nav-login {
    background: var(--cash-green);
    color: #000000 !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-game);
    font-weight: 800 !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--cash-green-glow);
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}

.btn-nav-login:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.hero-section {
    padding: 160px 5% 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-info .live-payout-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid var(--cash-green);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-info h1 {
    font-family: var(--font-game);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-info h1 span {
    color: var(--cash-green);
}

.hero-info p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 580px;
}

.action-holder {
    display: flex;
    align-items: center;
}

.btn-claim-now {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #000000;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-family: var(--font-game);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px var(--cash-green-glow);
    transition: all 0.2s ease;
}

.btn-claim-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.hero-showcase {
    position: relative;
    background: var(--bg-card);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-showcase .grid-mini-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mini-game-item {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.mini-game-item img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mini-game-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.mini-game-item span {
    color: var(--cash-green);
    font-family: var(--font-game);
    font-weight: 800;
    font-size: 1.1rem;
}

.stats-section {
    background: rgba(15, 27, 20, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 35px 5%;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-game);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--cash-green);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-bar {
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.brands-bar p {
    font-family: var(--font-game);
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.brands-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.brand-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    min-height: 200px;
    height: 200px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.brand-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.2) 0%, rgba(6, 11, 8, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.brand-node::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.brand-node:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(34, 197, 94, 0.1);
}

.brand-node:hover::before {
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.1) 0%, rgba(6, 11, 8, 0.9) 100%);
}

.brand-node:hover::after {
    opacity: 1;
}

.brand-node.has-bg {
    background-color: transparent;
}

.brand-node.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(6, 11, 8, 0.95) 100%);
    border-radius: 0;
    z-index: 1;
}

.brand-node.has-bg .trust-badge,
.brand-node.has-bg .brand-info-left {
    position: relative;
    z-index: 2;
}

.brand-node.has-bg .brand-info-left {
    text-align: left;
    width: 100%;
}

.brand-node.has-bg .brand-details-meta {
    font-size: 0.8rem;
    color: var(--cash-green);
    margin-top: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: 0.9;
}

.brand-node.has-bg:hover {
    background-color: transparent;
}

.trust-badge {
    position: absolute;
    top: -20px;
    left: 16px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--cash-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: var(--font-game);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: none;
}

.brand-name {
    font-family: var(--font-game);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-cat {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.content-container {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: var(--font-game);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title h2 span {
    color: var(--cash-green);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.games-grid-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.game-reward-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.game-reward-card:hover {
    border-color: var(--cash-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.1);
}

.card-image-cover {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.card-info-padding {
    padding: 20px;
}

.game-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-meta-row img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--cash-green);
}

.game-meta-row h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.game-meta-row span {
    display: block;
    font-size: 0.75rem;
    color: var(--cash-green);
    font-weight: 600;
    text-transform: uppercase;
}

.card-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 45px;
}

.loot-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 15px;
}

.loot-amount {
    font-family: var(--font-game);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cash-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-play-trigger {
    background: var(--cash-green);
    color: #00;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-game);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.2s;
}

.game-reward-card:hover .btn-play-trigger {
    background: #ffffff;
}

.cashout-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cashout-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 35px auto 0 auto;
}

.cashout-item {
    background: var(--bg-card);
    padding: 12px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    justify-content: center;
}

.cashout-item i {
    font-size: 1.3rem;
}

.cashout-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
}

.features-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-loot-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.feature-loot-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

.feature-loot-box h3 {
    font-family: var(--font-game);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.feature-loot-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.reviews-section {
    padding: 50px 5%;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 35px auto 0 auto;
}

.review-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    text-align: left;
}

.stars {
    color: var(--gold-coin);
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.review-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-info .avatar {
    width: 35px;
    height: 35px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--cash-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.reviewer-info name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

.faq-section {
    padding: 40px 5% 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-block-wrapper {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-btn-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    color: #fff;
    font-family: var(--font-game);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-btn-toggle i {
    color: var(--cash-green);
    transition: transform 0.25s;
}

.faq-block-wrapper.open .faq-btn-toggle i {
    transform: rotate(180deg);
}

.faq-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-panel-content p {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.main-footer {
    background: #040705;
    padding: 35px 5%;
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.main-footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.main-footer-links a:hover {
    color: var(--cash-green);
}

.main-footer p span {
    color: var(--cash-green);
}

.live-payout-popup {
    position: fixed;
    bottom: -120px;
    left: 25px;
    background: #111e17;
    border: 1px solid var(--cash-green);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    z-index: 10000;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.live-payout-popup.active {
    bottom: 25px;
}

.live-payout-popup img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--cash-green);
}

.popup-info b {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.popup-info span {
    font-size: 0.8rem;
    color: var(--cash-green);
    font-weight: 700;
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 27, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--cash-green);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1005;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.7);
    direction: ltr;
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.6s;
}

.cookie-consent-bar.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.cookie-text {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 70%;
}

.cookie-text i {
    color: var(--cash-green);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px var(--cash-green-glow));
}

.cookie-buttons-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cookie-accept {
    background: var(--cash-green);
    color: #000;
    border: none;
    padding: 10px 28px;
    font-family: var(--font-game);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 15px var(--cash-green-glow);
    transition: all 0.25s ease;
}

.btn-cookie-accept:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: rgba(255, 255, 255, 0.05);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 24px;
    font-family: var(--font-game);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.btn-cookie-reject:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .brands-flex {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 35px;
    }
    .hero-info p { margin: 0 auto 30px auto; }
    .action-holder { justify-content: center; }
    
    .nav-links, .btn-nav-login { 
        display: none !important; 
    }
    
    .navbar { 
        padding: 12px 5%; 
        justify-content: center;
    }
    .nav-brand { font-size: 1.8rem; }
    .nav-brand img { height: 36px; }
    .hero-info h1 { font-size: 2.6rem; }
    .section-title h2 { font-size: 2.2rem; }
    .live-payout-counter { display: inline-flex; }
    .live-payout-popup {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
    }
    .cookie-consent-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    .cookie-text {
        max-width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    .cookie-buttons-group {
        width: 100%;
        justify-content: center;
    }
    
    .brands-flex {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    .brand-node {
        min-width: unset !important;
        padding: 20px !important;
        height: 180px;
        min-height: 180px;
    }
    .brand-node.has-bg {
        min-height: 180px !important;
    }
    .brand-name {
        font-size: 1.2rem !important;
    }
    .brand-cat {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 640px) {
    .brands-flex {
        grid-template-columns: 1fr !important;
    }
    .brand-node {
        height: 160px;
        min-height: 160px;
    }
    .brand-node.has-bg {
        min-height: 160px !important;
    }
}

@media (max-width: 480px) {
    .hero-info h1 { font-size: 2.1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .hero-showcase { padding: 15px; }
    
    .hero-showcase .grid-mini-games { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px;
    }
    .mini-game-item { padding: 8px; }
    .mini-game-item img { height: 130px; }
    .mini-game-item h4 { font-size: 0.85rem; }
    .mini-game-item span { font-size: 0.95rem; }
    
    .btn-claim-now { width: 100%; justify-content: center; font-size: 1.15rem; }
    
    .cookie-buttons-group {
        width: 100%;
        flex-direction: column;
    }
    .btn-cookie-accept, .btn-cookie-reject {
        width: 100%;
    }
}