:root {
    --bg-body: #050505;
    --bg-panel: #141414;
    --bg-glass: rgba(20, 20, 20, 0.95);
    --primary: #269900;
    --primary-glow: rgba(51, 255, 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(51, 255, 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; }
.list-none { list-style: none; padding-left: 0; }
.list-mb-10 { margin-bottom: 10px; }
.text-primary { color: var(--primary) !important; }
.mb-0 { margin-bottom: 0 !important; }
.fw-900 { font-weight: 900; }

.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;
    background: rgba(5, 5, 5, 0.75) !important;
    backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(51, 255, 0, 0.15); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
}
.header:hover { border-bottom: 1px solid rgba(94, 255, 0, 0.4); box-shadow: 0 10px 40px -10px rgba(255, 215, 0, 0.2); }
.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-img { max-height: 80px; width: auto; }
.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;
    cursor: pointer; position: relative; overflow: hidden; transition: all 0.3s ease;
}
.nav-link-item svg { width: 18px; height: 18px; stroke-width: 2; transition: all 0.3s ease; }
.nav-link-item::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--primary); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%); box-shadow: 0 0 8px var(--primary); border-radius: 2px;
}
.nav-item-wrapper:hover .nav-link-item::after { width: 100%; }
.nav-item-wrapper:hover .nav-link-item svg { stroke: var(--primary); filter: drop-shadow(0 0 5px var(--primary)); transform: translateY(-2px) scale(1.1); }
.nav-item-wrapper:hover .nav-link-item, .nav-link-item.active { background: rgba(255, 215, 0, 0.05); color: var(--primary) !important; text-shadow: 0 0 10px rgba(94, 255, 0, 0.4); }

.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }
.nav-actions .btn-primary { animation: pulse-border 2s infinite; }
.btn-style-ghost { padding: 8px 20px; }

.mega-menu {
    position: fixed; top: 70px; left: 50%; width: 95%; max-width: 1100px;
    border-radius: 0 0 12px 12px; padding: 20px; z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(5, 5, 5, 0.98)) !important;
    backdrop-filter: blur(20px); border: 1px solid rgba(255, 215, 0, 0.2) !important; border-top: 3px solid var(--primary) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.1) !important;
    display: block !important; visibility: hidden; opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; pointer-events: none;
}
.nav-item-wrapper:hover .mega-menu { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0) scale(1); pointer-events: auto; }
.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; }
.mega-header .text-primary { animation: text-flicker 1.5s infinite alternate; }

.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; overflow: hidden; transition: all 0.3s ease !important; }
.menu-provider-card:hover { background: rgba(255, 215, 0, 0.1) !important; border-color: var(--primary) !important; transform: translateY(-3px) scale(1.05); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); }
.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); }
.menu-col-span { grid-column: span 2; justify-content: start; padding-left: 20px; }

.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; }
.btn-more { border: 1px dashed var(--text-muted); background: transparent; }
.btn-more span { color: var(--text-muted); }

.marquee-container {
    margin-top: var(--header-height);
    background: linear-gradient(90deg, #050505 0%, #1a1a1a 50%, #050505 100%);
    border-bottom: 1px solid var(--border); padding: 10px 0; position: relative;
    overflow: hidden; display: flex; align-items: center;
}
.marquee-container::before, .marquee-container::after { content: ''; position: absolute; top: 0; width: 60px; height: 100%; z-index: 2; pointer-events: none; }
.marquee-container::before { left: 0; background: linear-gradient(to right, #050505, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, #050505, transparent); }
.marquee-wrapper { display: flex; white-space: nowrap; overflow: hidden; width: 100%; }
.modern-ticker { display: inline-block; white-space: nowrap; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; padding-left: 100%; animation: marquee-scroll 50s linear infinite; }
.modern-ticker:hover { animation-play-state: paused; }
.modern-ticker span { color: var(--primary); font-weight: 800; margin: 0 5px; }
.modern-ticker .text-glow { text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary); animation: text-pulse 1.5s infinite alternate; }

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(20,20,20,0.8) 50%, rgba(5,5,5,0.95) 100%), url('./assets/background.webp');
    background-size: cover; background-position: center center; background-attachment: fixed;
    position: relative; border-bottom: 1px solid var(--border); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 50%; left: 30%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(51, 255, 0, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%); z-index: 1; animation: pulse-glow 6s infinite alternate; pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-badge-pill { display: inline-block; background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 5px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; border: 1px solid rgba(255, 215, 0, 0.3); box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); color: #269900; animation: float-up-down 3s ease-in-out infinite; }
.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: 5.5rem; font-weight: 900; line-height: 1.1; margin: 5px 0; background: linear-gradient(to bottom, #FFF 0%, #269900 40%, #33b80b 80%, #FFF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)) drop-shadow(0 0 20px rgba(94, 255, 0, 0.4)); animation: price-pulse 2s infinite alternate; }

.promo-badge { display: inline-block; background: linear-gradient(90deg, rgba(255, 71, 87, 0.1), rgba(255, 215, 0, 0.1)); border: 1px solid var(--primary); padding: 10px 25px; border-radius: 5px; font-size: 1.1rem; font-weight: 800; color: #fff; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); position: relative; overflow: hidden; }
.promo-badge::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: shine-sweep 3s infinite; }
.promo-note { font-size: 0.9rem; color: var(--text-muted); margin-top: 10px; font-style: italic; }

.hero-btn-container { display: flex; gap: 15px; margin-top: 15px; }
.hero-btn-container .btn-primary { position: relative; overflow: hidden; font-size: 1.1rem; padding: 15px 35px; border-radius: 5px; text-transform: uppercase; letter-spacing: 1px; z-index: 1; }
.hero-btn-container .btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-20deg); z-index: 2; animation: shine-sweep 2.5s infinite; }
.hero-btn-container .btn-ghost { padding: 15px 35px; border-radius: 5px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(5px); border: 2px solid var(--border); }

.total-jackpot-section { padding: 0 0 40px 0; position: relative; z-index: 10; margin-top: -50px; }
.jp-banner-gold {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(5,5,5,0.98) 50%, rgba(20,20,20,0.95) 100%);
    backdrop-filter: blur(15px); border: 2px solid var(--primary); border-radius: 5px;
    padding: 35px 20px; text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: gold-box-pulse 3s infinite alternate;
}
.jp-light-effect { content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-25deg); animation: sweep-jackpot-light 4s infinite; pointer-events: none; }
.jp-subtitle { font-family: var(--font-display); color: #269900; font-weight: 800; letter-spacing: 3px; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; text-shadow: 0 0 10px rgba(94, 255, 0, 0.4); }
.jp-display { font-family: var(--font-display); font-weight: 900; font-size: 4.5rem; line-height: 1.1; margin: 10px 0; background: linear-gradient(to bottom, #FFF 0%, #269900 40%, #33b80b 80%, #FFF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.3)); animation: number-heartbeat 1.5s infinite; }
.currency { font-size: 2rem; vertical-align: super; margin-right: 8px; color: var(--primary); -webkit-text-fill-color: var(--primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.jp-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; font-style: italic; letter-spacing: 1px; }

.bg-top-games { background: radial-gradient(ellipse at top center, rgba(255, 215, 0, 0.08) 0%, transparent 70%); padding-top: 50px; padding-bottom: 30px; position: relative; }
.top-games-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; position: relative; border-bottom: none; }
.top-games-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #269900, #fff, #269900, transparent); box-shadow: 0 0 15px #269900, 0 0 5px #fff; animation: laser-scan 3s infinite linear; background-size: 200% 100%; }
.top-games-header .section-title { font-size: 2.2rem; letter-spacing: 2px; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.5); }
.top-games-header .section-title .text-primary { background: linear-gradient(to right, #33b80b 0%, #269900 30%, #FFF 50%, #269900 70%, #33b80b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% auto; animation: liquid-gold 3s linear infinite; filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.8)); }

.badge-fire { font-size: 0.85rem; color: #fff; background: linear-gradient(90deg, #ff0000, #ff7300, #ff0000); background-size: 200% auto; border: 1px solid #ffaa00; padding: 10px 25px; border-radius: 5px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4); animation: magma-flow 2s linear infinite; position: relative; overflow: hidden; }
.badge-fire::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-20deg); animation: shine-sweep 2.5s infinite; }

#topPlayedContainer .game-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); background: linear-gradient(180deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.95) 100%); backdrop-filter: blur(5px); overflow: visible; }
#topPlayedContainer .game-card:hover { transform: translateY(-12px) scale(1.05); z-index: 10; box-shadow: 0 15px 35px rgba(0,0,0,0.9), 0 0 20px rgba(255, 215, 0, 0.3) !important; }

.rank-badge { position: absolute; top: -12px; left: -12px; width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; z-index: 10; box-shadow: 0 5px 15px rgba(0,0,0,0.8); border: 2px solid rgba(255,255,255,0.4); }
.rank-1 { background: linear-gradient(135deg, #15ff00, #D4AF37, #996515); color: #000; box-shadow: 0 0 25px rgba(51, 255, 0, 0.8), inset 0 0 15px rgba(255,255,255,0.8); transform: scale(1.15); }
.rank-2 { background: linear-gradient(135deg, #E0E0E0, #BDBDBD, #757575); color: #000; box-shadow: 0 0 15px rgba(192, 192, 192, 0.6), inset 0 0 10px rgba(255,255,255,0.8); transform: scale(1.05); }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #A0522D, #8B4513); color: #fff; box-shadow: 0 0 15px rgba(205, 127, 50, 0.6), inset 0 0 10px rgba(255,255,255,0.4); }
.rank-badge:not(.rank-1):not(.rank-2):not(.rank-3) { background: linear-gradient(135deg, #333, #111); color: var(--primary); border-color: #444; }

.provider-section { margin-bottom: 40px; overflow: hidden; }
.provider-track { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 25px; padding-top: 10px; -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 10px var(--primary-glow); }

.provider-card {
    flex-shrink: 0; min-width: 120px; height: 55px; background: linear-gradient(145deg, rgba(25,25,25,0.9), rgba(10,10,10,0.9));
    backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem;
    color: var(--text-muted); letter-spacing: 1px; cursor: pointer; box-shadow: 5px 5px 15px rgba(0,0,0,0.8), inset 1px 1px 2px rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.provider-card:hover { border-color: rgba(255, 215, 0, 0.5); color: #fff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(51, 255, 0, 0.15); }
.provider-card.active { background: linear-gradient(135deg, #269900 0%, #33b80b 100%); color: #000; border-color: #269900; box-shadow: 0 10px 25px rgba(102, 255, 0, 0.6), inset 2px 2px 5px rgba(255,255,255,0.5); transform: translateY(-8px) scale(1.05); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; margin-bottom: 15px; }
.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(51, 255, 0, 0.15); }
.game-thumb { position: relative; overflow: hidden; border-radius: 12px 12px 0 0; }
.game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #202020; transition: all 0.4s ease; }
.game-placeholder { background: radial-gradient(circle, #333, #111); }
.game-placeholder-dark { background: radial-gradient(circle, #222, #000); }
.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: 5px; 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, #ffaa00); 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); }
.game-name { padding: 0 10px 10px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ddd; margin-top: 10px; }

.rtp-circle-layout { display: flex; justify-content: space-between; align-items: center; padding: 8px 15px 12px; background: #0a0a0a; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.rtp-text-col { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.rtp-provider-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.rtp-live-label { font-size: 0.8rem; font-weight: 900; color: #fff; text-shadow: 0 0 8px rgba(255, 255, 255, 0.4); }
.rtp-ring-wrapper { position: relative; width: 44px; height: 44px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); }
.rtp-ring { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 1s ease, box-shadow 1s ease; }
.rtp-ring-inner { width: 32px; height: 32px; background: #0a0a0a; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 8px rgba(0,0,0,0.9); }
.rtp-val { font-size: 0.65rem; font-weight: 900; font-family: var(--font-display); letter-spacing: 0.5px; transition: color 1s ease; }

.badge-rtp { font-size: 0.8rem; background: linear-gradient(90deg, #ff0000, #aa0000); border: 1px solid #ff4757; padding: 4px 12px; border-radius: 6px; margin-left: 10px; color: white; font-weight: 900; letter-spacing: 1px; box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); animation: indicator-red 1.5s infinite alternate; display: inline-flex; align-items: center; gap: 6px; }
.badge-realtime { font-size: 0.8rem; background: linear-gradient(90deg, #00b09b, #008f7a); border: 1px solid #00ffcc; padding: 4px 12px; border-radius: 6px; margin-left: 10px; color: white; font-weight: 900; letter-spacing: 1px; box-shadow: 0 0 15px rgba(0, 255, 204, 0.4); animation: indicator-green 1.5s infinite alternate; display: inline-flex; align-items: center; gap: 6px; }
.badge-rtp::before, .badge-realtime::before { content: ''; display: inline-block; width: 8px; height: 8px; background: #fff; border-radius: 50%; box-shadow: 0 0 8px #fff; }

.bg-jackpot-section { padding: 60px 0; background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%); border-top: 1px solid rgba(255, 215, 0, 0.2); position: relative; }
.jp-card-border { border: 1px solid rgba(255, 215, 0, 0.3); }
.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-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.8rem; font-weight: 900; color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.4); letter-spacing: 1px; }

.bg-live-casino { padding: 60px 0; background: radial-gradient(ellipse at center, rgba(220, 20, 60, 0.08) 0%, transparent 70%); border-top: 1px solid rgba(220, 20, 60, 0.2); position: relative; }
.bg-sportsbook { padding: 60px 0; margin-bottom: 20px; background: radial-gradient(ellipse at center, rgba(0, 123, 255, 0.08) 0%, transparent 70%); border-top: 1px solid rgba(0, 123, 255, 0.2); position: relative; border-bottom: 1px solid var(--border); }
.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; }
.sb-badge { background: #007bff; }
.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; }

.seo-section { padding: 80px 0; background: linear-gradient(to bottom, #050505, #0a0a0a); border-top: 1px solid rgba(51, 255, 0, 0.15); position: relative; }
.seo-box { background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9)); backdrop-filter: blur(15px); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: 5px; padding: 5px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.05); position: relative; overflow: hidden; }
.seo-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 50%); animation: pulse-glow 6s infinite alternate; pointer-events: none; }
.seo-title { font-family: var(--font-display); font-size: 2.5rem; text-align: center; background: linear-gradient(to right, #FFF, #269900, #33b80b, #FFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% auto; animation: liquid-gold 4s linear infinite; margin-bottom: 30px; filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.2)); }
.seo-subtitle { font-family: var(--font-display); font-size: 1.6rem; color: #269900; margin-top: 35px; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; border-left: 4px solid #269900; padding-left: 15px; box-shadow: -10px 0 15px -10px #269900; }
.seo-subtitle::before { display: none; }
.seo-content { color: #b3b3b3; font-size: 1rem; line-height: 1.9; text-align: justify; }
.seo-content p { margin-bottom: 20px; }
.seo-content strong { color: #269900; font-weight: 800; }
.seo-content ul { list-style: none; padding-left: 0; margin-bottom: 25px; background: rgba(0,0,0,0.3); padding: 20px; border-radius: 10px; border: 1px dashed rgba(255, 215, 0, 0.2); }
.seo-content li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.seo-content li::before { content: '⭐'; position: absolute; left: 0; font-size: 0.8rem; top: 2px; filter: drop-shadow(0 0 5px #269900); }
.seo-content a { color: #269900; text-decoration: none; position: relative; font-weight: 800; padding: 0 2px; border-bottom: none; }
.seo-content a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #269900; transition: width 0.3s ease; box-shadow: 0 0 8px #269900; }
.seo-content a:hover { color: #FFF; text-shadow: 0 0 10px #269900; }
.seo-content a:hover::after { width: 100%; }

.faq-section { padding: 80px 0; background: radial-gradient(ellipse at bottom, rgba(255,215,0,0.05) 0%, #050505 70%); border-top: 1px solid rgba(255, 215, 0, 0.1); }
.faq-title-container { justify-content: center; text-align: center; margin-bottom: 50px; font-size: 2.5rem; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.faq-grid { display: flex; flex-direction: column; gap: 15px; max-width: 850px; margin: 0 auto; }
.faq-item { background: linear-gradient(145deg, #111, #0a0a0a); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.faq-item:hover { border-color: rgba(94, 255, 0, 0.4); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(51, 255, 0, 0.15); }
.faq-item.active { border-color: #269900; background: linear-gradient(145deg, #1a1a1a, #0f0f0f); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255,215,0,0.05); transform: scale(1.02); z-index: 5; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: #e5e5e5; font-size: 1.05rem; user-select: none; transition: all 0.3s ease; }
.faq-question span { font-family: var(--font-display); letter-spacing: 1px; }
.faq-item.active .faq-question { color: #269900; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.faq-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; color: var(--primary); background: rgba(255, 215, 0, 0.1); border-radius: 50%; box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); }
.faq-item.active .faq-icon { transform: rotate(180deg); background: #269900; color: #000; box-shadow: 0 0 15px #269900; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; color: #ccc; font-size: 0.95rem; line-height: 1.7; }
.faq-answer-content { padding: 0 25px 25px 25px; border-top: 1px dashed rgba(255, 215, 0, 0.2); padding-top: 20px; margin-top: 5px; }
.faq-answer strong { color: #269900; font-weight: 800; letter-spacing: 0.5px; }

.footer-section { background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%); border-top: 2px solid rgba(255, 215, 0, 0.5); box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8), inset 0 10px 20px rgba(255, 215, 0, 0.05); padding-top: 60px; margin-top: 50px; position: relative; overflow: hidden; }
.footer-section::after { content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 60%; height: 100px; background: radial-gradient(ellipse, rgba(255, 215, 0, 0.08) 0%, transparent 70%); pointer-events: none; }
.footer-title { color: var(--primary); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 25px; text-transform: uppercase; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.footer-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent); margin: 40px 0; }
.footer-top { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col { flex: 1; }
.logo-flex { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-logo { filter: grayscale(100%) opacity(0.4); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; object-fit: contain; max-height: 45px; width: auto; }
.footer-col .footer-logo { margin-right: 10px; }
.footer-col img[src*="poweredby"] { max-height: 25px; }
.footer-logo:hover { filter: grayscale(0%) opacity(1) drop-shadow(0 5px 10px rgba(94, 255, 0, 0.4)); transform: scale(1.15) translateY(-3px); }
.esports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(75px, 1fr)); gap: 15px; }
.esports-grid img { width: 100%; height: auto; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); gap: 15px; row-gap: 25px; }
.partner-grid img { max-width: 100%; height: auto; max-height: 30px; margin: 0 auto; display: block; }
.footer-copyright { background: #000; color: #555; text-align: center; font-size: 0.75rem; padding: 20px 0; margin-top: 50px; border-top: 1px solid rgba(255, 255, 255, 0.05); letter-spacing: 1px; }

.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(255, 215, 0, 0.2); display: flex; justify-content: space-around; align-items: center; height: 70px; z-index: 999; padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.9); }
.nav-item { display: flex; flex-direction: column; align-items: center; color: #666; font-size: 0.65rem; font-weight: 700; gap: 5px; width: 20%; transition: all 0.3s ease; }
.nav-item svg { transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-item:hover, .nav-item.active { color: var(--primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.nav-item:hover svg, .nav-item.active svg { transform: translateY(-3px) scale(1.1); filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }

.nav-center { position: relative; top: -25px; background: linear-gradient(135deg, #15ff00 0%, #33b80b 100%); width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.9), 0 0 20px rgba(102, 255, 0, 0.6); border: 4px solid #0a0a0a; color: #000; transition: all 0.3s ease; }
.nav-center::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%; border: 2px solid #269900; animation: radar-pulse 2s infinite ease-out; pointer-events: none; }
.nav-center:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9), 0 0 30px rgba(51, 255, 0, 0.8); }
.nav-center span { position: absolute; bottom: -22px; color: var(--primary); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 0 5px rgba(94, 255, 0, 0.4); }

.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; }

.top-games-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: -20px; margin-bottom: 30px; line-height: 1.6; max-width: 1200px; }
.top-games-desc strong { color: var(--primary); font-weight: 700; }

.provider-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: -10px; margin-bottom: 25px; line-height: 1.6; max-width: 800px; }
.provider-desc strong { color: var(--primary); font-weight: 700; }
.fade-in-text { animation: fadeInText 0.4s ease-in-out forwards; }

.section-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: -15px; margin-bottom: 30px; line-height: 1.6; max-width: 1200px; }
.section-desc strong { color: var(--primary); font-weight: 700; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
@keyframes pulse-border { 0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); } }
@keyframes float-up-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes price-pulse { 0% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.2)); } 100% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)) drop-shadow(0 0 35px rgba(255, 215, 0, 0.7)); } }
@keyframes shine-sweep { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
@keyframes pulse-glow { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } }
@keyframes gold-box-pulse { 0% { box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 10px rgba(255, 215, 0, 0.2); border-color: #33b80b; } 100% { box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px rgba(102, 255, 0, 0.6); border-color: #269900; } }
@keyframes sweep-jackpot-light { 0% { left: -150%; } 20% { left: 200%; } 100% { left: 200%; } }
@keyframes number-heartbeat { 0%, 30%, 100% { transform: scale(1); filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.2)); } 15% { transform: scale(1.02); filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 25px rgba(102, 255, 0, 0.6)); } }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes text-pulse { 0% { text-shadow: 0 0 5px var(--primary); } 100% { text-shadow: 0 0 15px var(--primary), 0 0 25px #fff; } }
@keyframes laser-scan { 0% { background-position: 100% center; } 100% { background-position: -100% center; } }
@keyframes liquid-gold { to { background-position: 200% center; } }
@keyframes magma-flow { to { background-position: 200% center; } }
@keyframes text-flicker { 0% { text-shadow: 0 0 5px var(--primary); } 100% { text-shadow: 0 0 15px var(--primary), 0 0 25px var(--primary); } }
@keyframes indicator-red { 0% { box-shadow: 0 0 5px rgba(255,0,0,0.4); border-color: #aa0000; } 100% { box-shadow: 0 0 20px rgba(255,0,0,0.9); border-color: #ff4757; } }
@keyframes indicator-green { 0% { box-shadow: 0 0 5px rgba(0,255,204,0.2); border-color: #008f7a; } 100% { box-shadow: 0 0 20px rgba(0,255,204,0.8); border-color: #00ffcc; } }
@keyframes radar-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fadeInText { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .header { padding: 0 10px; }
    .nav-container { padding: 0 5px; }
    .logo-img { max-height: 60px; }
    .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; }

    .hero { padding: 50px 0 60px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .hero-desc, .hero-badge-pill { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-big-price { font-size: 3.2rem; }
    .hero-title-small { font-size: 1.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-btn-container { justify-content: center; width: 100%; flex-wrap: wrap; }
    .hero-btn-container .btn { padding: 12px 25px; font-size: 0.9rem; }
    .hero::before { left: 50%; width: 300px; height: 300px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-banner { display: none; }

    .total-jackpot-section { margin-top: -30px; }
    .jp-banner-gold { padding: 25px 15px; border-radius: 5px; }
    .jp-subtitle { font-size: 1rem; letter-spacing: 1px; }
    .jp-display { font-size: 2.5rem; }
    .currency { font-size: 1.2rem; }

    .top-games-header { flex-direction: column; gap: 15px; text-align: center; }
    .badge-fire { font-size: 0.75rem; padding: 6px 15px; }
    .rank-badge { width: 35px; height: 35px; font-size: 1.1rem; top: -8px; left: -8px; }

    .badge-rtp, .badge-realtime { font-size: 0.6rem; padding: 3px 8px; margin-left: 5px; }
    .badge-rtp::before, .badge-realtime::before { width: 6px; height: 6px; }
    .provider-card { min-width: 100px; height: 45px; font-size: 0.75rem; }
    .bg-jackpot-section, .bg-live-casino, .bg-sportsbook { padding: 5px 0; }

    .rtp-circle-layout { padding: 8px 10px 10px; }
    .rtp-ring-wrapper { width: 36px; height: 36px; }
    .rtp-ring-inner { width: 26px; height: 26px; }
    .rtp-val { font-size: 0.55rem; }
    .rtp-live-label { font-size: 0.65rem; }
    .rtp-provider-label { font-size: 0.5rem; }

    .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; }
    
    .seo-section, .faq-section { padding: 50px 0; }
    .seo-box { padding: 25px 20px; border-radius: 5px; }
    .seo-title { font-size: 1.8rem; text-align: left; }
    .seo-subtitle { font-size: 1.3rem; }
    .seo-content { text-align: left; font-size: 0.9rem; }
    .faq-title-container { font-size: 2rem; margin-bottom: 30px; }
    .faq-question { padding: 15px 20px; font-size: 0.9rem; }
    .faq-icon { width: 28px; height: 28px; }
    
    .footer-top { flex-direction: column; gap: 30px; text-align: center; }
    .logo-flex { justify-content: center; }
    .partner-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .esports-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .footer-section { padding-top: 40px; margin-top: 30px; }
    .section-title { font-size: 1.3rem; }
    .jp-val-box { padding: 2px; }
    .jp-val-text { font-size: 0.5rem; }
    
    .top-games-desc { text-align: justify; margin-top: 5px; margin-bottom: 25px; font-size: 0.85rem; padding: 0 10px; }
    .provider-desc { text-align: center; margin-left: auto; margin-right: auto; font-size: 0.85rem; padding: 0 10px; margin-top: 5px; }
    .section-desc { text-align: justify; margin-left: auto; margin-right: auto; font-size: 0.85rem; padding: 0 10px; }
}