:root {
    --bg-body: #050505;
    --bg-panel: #141414;
    --bg-panel-hover: #222222;
    --bg-glass: rgba(20, 20, 20, 0.95);
    --primary: #269900 ;
    --primary-glow: rgba(255, 215, 0, 0.3);
    --accent: #33b80b;
    --accent-gradient: linear-gradient(135deg, #269900  0%, #31fd42 50%, #33b80b 100%);
    --danger: #ff4757;
    --gold: #2bfb24;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --border: rgba(255, 215, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
    --header-height: 70px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 90px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(184, 134, 11, 0.1), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.08), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    background: rgba(5, 5, 5, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    margin: 0 20px;
    flex-grow: 1;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.desktop-menu::-webkit-scrollbar {
    display: none;
}

.nav-item-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-link-item svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.nav-item-wrapper:hover .nav-link-item,
.nav-link-item.active {
    color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mega-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 134, 11, 0.1);
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.nav-item-wrapper:hover .mega-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mega-header {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.menu-provider-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}

.menu-provider-card:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.menu-provider-card span {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    font-family: var(--font-display);
}

.menu-provider-card img {
    max-width: 90%;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.menu-provider-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.btn-more {
    border: 1px dashed var(--text-muted);
    background: transparent;
}

.btn-more span {
    color: var(--text-muted);
}

.badge-tag {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 9px;
    font-weight: 900;
    color: #000;
    padding: 2px 5px;
    border-bottom-right-radius: 6px;
    z-index: 2;
}

.badge-hot {
    background: #ff4757;
    color: white;
}

.badge-new {
    background: var(--gold);
    color: black;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.marquee-container {
    margin-top: var(--header-height);
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.marquee-content {
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.85rem;
    width: 100%;
}

.marquee-content span {
    color: var(--primary);
    font-weight: 700;
    margin: 0 5px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.hero {
    padding: 50px 0 60px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('./assets/background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-banner {
    background: radial-gradient(circle at center, #222, #000);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.1);
}

.hero-banner::after {
    content: 'JACKPOT';
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.05);
    letter-spacing: 10px;
    position: absolute;
    transform: rotate(-10deg);
}

.hero-badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

.hero-title-small {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1rem;
    color: #d1d5db;
    margin: 20px 0 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-big-price {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.promo-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.hero-btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.total-jackpot-section {
    padding: 0 0 40px 0;
    position: relative;
    z-index: 5;
    margin-top: -30px;
}

.jp-banner-gold {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.1);
    animation: borderPulse 3s infinite;
}

.jp-subtitle {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.jp-display {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 0%, #269900  30%, #33b80b 70%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.5));
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.jp-note {
    font-size: 0.7rem;
    color: #555;
    margin-top: 5px;
    font-style: italic;
}

.jp-banner-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(30deg);
    animation: shineMove 4s infinite;
    pointer-events: none;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        border-color: #33b80b;
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
        border-color: #269900 ;
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        border-color: #33b80b;
    }
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.provider-section {
    margin-bottom: 40px;
    overflow: hidden;
}

.provider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.provider-track::-webkit-scrollbar {
    height: 4px;
    display: block;
}

.provider-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.provider-track::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 5px var(--primary-glow);
}

.provider-card {
    flex-shrink: 0;
    min-width: 110px;
    height: 50px;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.provider-card.active,
.provider-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.game-card {
    background: var(--bg-panel);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.game-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #202020;
    transition: all 0.4s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    box-shadow: 0 0 15px var(--primary-glow);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    line-height: initial;
}

.game-card:hover .game-img {
    filter: blur(4px) brightness(0.5);
    transform: scale(1.1);
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.game-card:hover .btn-play-now {
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-play-now:hover {
    background: #fff;
    box-shadow: 0 0 20px #fff;
}

.gacor-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background: linear-gradient(45deg, #269900 , #1eff00);
    color: black;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    animation: pulse 1.5s infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.rtp-info {
    padding: 10px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rtp-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.rtp-val {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    transition: width 1s ease;
}

.game-name {
    padding: 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ddd;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    gap: 4px;
    width: 20%;
}

.nav-item.active {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.nav-center {
    position: relative;
    top: -25px;
    background: linear-gradient(135deg, #269900 , #33b80b);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border: 4px solid var(--bg-body);
    color: #000;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #000;
    font-weight: 900;
    font-family: var(--font-display);
    display: grid;
    place-items: center;
    border-bottom-right-radius: 10px;
    z-index: 6;
    font-size: 1.1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.rank-1 {
    background: linear-gradient(45deg, #269900 , #fff);
    box-shadow: 0 0 15px #269900 ;
}

.rank-2 {
    background: silver;
}

.rank-3 {
    background: #cd7f32;
}

.jackpot-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.jackpot-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
    background: #ff0000;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 800;
    animation: blink 1s infinite;
}

.footer-section {
    background: #080808;
    border-top: 3px solid var(--primary);
    padding-top: 50px;
    margin-top: 50px;
}

.footer-title {
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-top {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
}

.logo-flex {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    filter: grayscale(100%) opacity(0.5);
    transition: 0.3s;
    cursor: pointer;
    object-fit: contain;
    max-height: 55px;
    width: auto;
}

.footer-col .footer-logo {
    margin-right: 10px;
}

.footer-col img[src*="poweredby"] {
    max-height: 30px;
}

.footer-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.esports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.esports-grid img {
    width: 100%;
    height: auto;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    row-gap: 20px;
}

.partner-grid img {
    max-width: 100%;
    height: auto;
    max-height: 35px;
    margin: 0 auto;
    display: block;
}

.footer-copyright {
    background: #000;
    color: #666;
    text-align: center;
    font-size: 0.7rem;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-rtp {
    font-size: 0.9rem;
    background: var(--danger);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.bg-top-games {
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.05));
    padding-top: 20px;
}

.top-games-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.badge-fire {
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 5px 15px;
    border-radius: 20px;
}

.bg-jackpot-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(255, 215, 0, 0.05));
}

.badge-realtime {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 10px;
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
}

.bg-live-casino {
    background: rgba(20, 20, 20, 0.5);
    padding: 40px 0;
}

.bg-sportsbook {
    padding: 40px 0;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    border-top: 1px solid var(--border);
}

.btn-style-ghost {
    padding: 8px 20px;
}

.seo-section {
    padding: 50px 0 80px;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    border-top: 1px solid var(--border);
}

.seo-box {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.seo-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.seo-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-subtitle::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.seo-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
}

.seo-content p {
    margin-bottom: 15px;
}

.seo-content strong {
    color: #e5e5e5;
    font-weight: 700;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.seo-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.seo-content li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 2px;
}

.seo-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dotted var(--primary);
}

.seo-content a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.faq-section {
    padding: 60px 0;
    background: #080808;
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    user-select: none;
}

.faq-question span {
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

.text-primary {
    color: var(--primary) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-10 {
    margin-top: 10px;
}

.text-center {
    text-align: center;
}

.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.menu-col-span {
    grid-column: span 2;
    justify-content: start;
    padding-left: 20px;
}

.game-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.game-placeholder {
    background: radial-gradient(circle, #333, #111);
}

.game-placeholder-dark {
    background: radial-gradient(circle, #222, #000);
}

.game-name-margin {
    margin-top: 10px;
}

.provider-label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.jp-badge {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 800;
    border-bottom-right-radius: 10px;
    z-index: 5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jp-card-border {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.jp-val-wrapper {
    padding: 0 10px 10px;
    text-align: center;
}

.jp-val-box {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.jp-val-text {
    font-size: 0.6rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    letter-spacing: 1px;
}

.lc-info {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lc-text-box {
    text-align: left;
}

.lc-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.lc-provider {
    font-size: 0.6rem;
    color: #888;
    margin-top: 2px;
    text-transform: uppercase;
}

.lc-menu {
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
}

.sb-badge {
    background: #007bff;
}

.list-none {
    list-style: none;
    padding-left: 0;
}

.list-mb-10 {
    margin-bottom: 10px;
}

.faq-title-container {
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    z-index: 102;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0f0f0f;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.m-nav-link {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.m-nav-link svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.m-nav-link:hover,
.m-nav-link:active {
    background: rgba(255, 215, 0, 0.05);
    color: #fff;
}

@media (max-width: 768px) {
    .total-jackpot-section {
        margin-top: 0;
    }

    .jp-display {
        font-size: 2.2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .jp-banner-gold {
        padding: 20px 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-banner {
        display: none;
    }

    .hero-btn-container {
        justify-content: center;
    }

    .game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .game-name {
        font-size: 0.65rem;
    }

    .rtp-header {
        font-size: 0.65rem;
    }

    .jackpot-item {
        font-size: 0.8rem;
    }

    .jp-user {
        width: 25%;
    }

    .jp-game {
        width: 40%;
    }

    .jp-amount {
        width: 35%;
    }

    .jp-time {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .esports-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-big-price {
        font-size: 3.2rem;
    }

    .seo-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .seo-box {
        padding: 20px;
    }

    .seo-content {
        text-align: left;
        font-size: 0.9rem;
    }

    .desktop-menu {
        display: none;
    }

    .nav-actions {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .nav-actions .btn {
        padding: 6px 14px;
        font-size: 0.75rem;
        height: 34px;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-img {
        max-height: 40px;
    }
}