:root {
    --bg-body: #050505;
    --bg-sidebar: #0a0a0a;
    --bg-panel: #141414;
    --primary: #FFD700;
    --primary-dim: #d4af37;
    --primary-glow: rgba(255, 215, 0, 0.25);
    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #B8860B 100%);
    --sidebar-width: 260px;
    --border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
    --gold: #fbbf24;
    --danger: #ff4757;
    --text-muted: #d4d4d4; 
}
*, *::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);
    background-image: linear-gradient(to bottom, rgba(5, 5, 5, 0.5), #05050586), url('./assets/background.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}
.hero-modern, .section-dark, .section-light, .seo-article-section, .footer-section-modern, .sidebar, .mobile-header, .bottom-nav {
    background: rgba(10, 10, 10, 0.37) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0);
}
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: #000; }
body::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, rgba(15,15,15,0.95) 0%, rgba(5,5,5,0.95) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed; top: 0; left: 0; height: 100vh;
    z-index: 1000; display: flex; flex-direction: column;
    padding: 24px 0; box-shadow: 4px 0 24px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-logo {
    padding: 0 20px 5px; display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); margin-bottom: 5px; position: relative;
}
.sidebar-logo::after {
    content: ''; position: absolute; width: 60px; height: 60px;
    background: var(--primary); filter: blur(60px); opacity: 0.1; z-index: -1;
}
.logo-img { 
    height: 80px; width: auto; object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: transform 0.3s;
}
.logo-img:hover { transform: scale(1.05); }
.btn-close-sidebar {
    display: none; 
    background: none; border: none; color: #fff;
    position: absolute; right: 10px; top: 20px;
    cursor: pointer; padding: 5px;
}
.sidebar-menu {
    flex: 1; overflow-y: auto; padding: 0 16px;
    display: flex; flex-direction: column; gap: 6px;
}
.sidebar-menu::-webkit-scrollbar { width: 3px; }
.sidebar-menu::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.nav-link {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    color: #b0b0b0; 
    text-decoration: none; border-radius: 12px;
    font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease;
    position: relative; overflow: hidden; letter-spacing: 0.3px; border: 1px solid transparent;
}
.nav-link svg { width: 18px; height: 18px; stroke-width: 2; transition: 0.3s; color: #888; }
.nav-link:hover {
    color: #fff; background: rgba(255, 255, 255, 0.03); padding-left: 20px;
}
.nav-link:hover svg { color: var(--primary); transform: scale(1.1); }
.nav-link.active {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    color: #fff; border-color: rgba(255, 215, 0, 0.1);
}
.nav-link.active svg { color: var(--primary); filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); }
.nav-link.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    height: 50%; width: 3px; background: var(--primary);
    border-radius: 0 4px 4px 0; box-shadow: 0 0 8px var(--primary);
}
.sidebar .menu-badge {
    margin-left: auto; font-size: 0.6rem; padding: 2px 6px;
    border-radius: 4px; font-weight: 800; letter-spacing: 0.5px;
}
.sidebar .badge-hot { 
    background: rgba(255, 71, 87, 0.15) !important; 
    color: #ff4757 !important; 
    border: 1px solid rgba(255, 71, 87, 0.3);
}
.sidebar .badge-new { 
    background: rgba(255, 215, 0, 0.15) !important; 
    color: #FFD700 !important; 
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar-auth {
    padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: grid; gap: 10px;
}
.btn-modern-primary {
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: #000; border: none; font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}
.btn-modern-ghost {
    background: rgba(255, 255, 255, 0.05); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-modern-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.main-content {
    flex: 1; margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding-bottom: 0px;
    transition: margin-left 0.3s;
}
.container { width: 94%; max-width: 1400px; margin: 0 auto; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
    transition: 0.3s; text-decoration: none; font-family: var(--font-sans);
}
.btn-primary {
    background: var(--accent-gradient); color: #000;
    box-shadow: 0 4px 15px var(--primary-glow); border: none;
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.section-title {
    font-family: var(--font-display); font-size: 1.8rem; margin: 0;
    display: flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.section-header-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    margin: 40px 0 20px; flex-wrap: wrap; gap: 10px;
}
.text-primary { color: var(--primary) !important; }

p a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.3s ease;
}

p a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-shadow: 0 0 8px var(--primary);
    cursor: pointer;
}
.hero {
    padding: 40px 0 60px;
    background: radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.08), transparent 50%),
                linear-gradient(to bottom, #0a0a0a, #050505);
    border-bottom: 1px solid var(--border);
}
.marquee-container {
    background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid var(--border);
    padding: 8px 0; color: #ccc; font-size: 0.85rem;
}
.hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 40px; align-items: center;
}
.hero h1 {
    font-family: var(--font-display); font-size: 3rem; line-height: 1.1; margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #a3a3a3);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-image-wrapper { width: 100%; height: auto; }
.jp-banner-gold {
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(0,0,0,1) 100%);
    border: 1px solid var(--primary); border-radius: var(--radius-md);
    padding: 25px; text-align: center; position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
    overflow: hidden; margin-top: -30px; z-index: 2; backdrop-filter: blur(10px);
}
.jp-display {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; }
.game-card {
    background: var(--bg-panel); border-radius: 12px; overflow: hidden;
    position: relative; transition: 0.3s; border: 1px solid transparent;
}
.game-card:hover {
    transform: translateY(-5px); border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.game-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #222; }
.game-img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.game-card:hover .game-img { transform: scale(1.1); filter: brightness(0.4); }
.play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.game-card:hover .play-overlay { opacity: 1; }
.btn-play-now {
    background: var(--primary); color: #000; padding: 4px 15px;
    border-radius: 5px; font-weight: 700; font-size: 0.8rem; text-decoration: none;
}
.game-info { padding: 10px; }
.game-name { 
    font-weight: 600; font-size: 0.85rem; white-space: nowrap; 
    overflow: hidden; text-overflow: ellipsis; margin-bottom: 6px; color: #eee; 
}
.rtp-bar-container { background: #222; height: 5px; border-radius: 3px; overflow: hidden; }
.rtp-text { 
    font-size: 0.7rem; display: flex; justify-content: space-between; 
    margin-bottom: 3px; color: #b0b0b0; font-weight: 600;
}
.game-card .badge-tag {
    position: absolute; top: 0; left: 0;
    font-size: 0.6rem; font-weight: 800; color: #fff;
    padding: 2px 8px; border-bottom-right-radius: 8px; z-index: 5;
}
.game-card .badge-hot { background: var(--danger); }
.game-card .badge-new { background: #333; } 
.rank-badge {
    position: absolute; top: 0; left: 0; width: 30px; height: 30px;
    background: var(--primary); color: #000;
    font-weight: 900; display: grid; place-items: center;
    border-bottom-right-radius: 10px; z-index: 6; font-family: var(--font-display);
}
.rank-1 { background: #FFD700; }
.rank-2 { background: #c0c0c0; }
.rank-3 { background: #cd7f32; }
.seo-section { background: #080808; padding: 60px 0; border-top: 1px solid var(--border); margin-top: 40px; }
.seo-box { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; }
.seo-title { font-family: var(--font-display); font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.seo-content { color: var(--text-muted); font-size: 0.9rem; text-align: justify; }
.faq-section { padding: 60px 0; background: #050505; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question { padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.9rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.active .faq-answer { padding-bottom: 15px; border-top: 1px solid var(--border); padding-top: 15px; }
.faq-item.active { border-color: var(--primary); }
.faq-icon { transition: 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); }
.footer-section { background: #080808; border-top: 1px solid var(--border); padding: 50px 0 20px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-title { color: var(--primary); margin-bottom: 20px; font-family: var(--font-display); letter-spacing: 1px; }
.footer-logo { max-height: 35px; opacity: 0.6; transition: 0.3s; }
.footer-logo:hover { opacity: 1; }
.partner-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.mobile-header {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 60px;
    z-index: 99; border-bottom: 1px solid var(--border);
    padding: 0 15px; align-items: center; justify-content: space-between;
}
.bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    border-top: 1px solid var(--border); z-index: 999;
    height: 65px; justify-content: space-around; align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}
.b-nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 0.65rem; gap: 4px; text-decoration: none; }
.b-nav-item.active { color: var(--primary); }
.b-nav-center {
    position: relative; top: -25px; background: var(--accent-gradient);
    width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); border: 4px solid var(--bg-body); color: #000;
}
.sidebar-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 25px;
    padding: 0 2px;
}
.sidebar-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    scroll-behavior: smooth;
}
.sidebar-slide {
    min-width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}
.rtp-card-sidebar {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
}
.s-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary);
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: grid; place-items: center;
    font-size: 0.7rem;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.s-arrow:hover {
    background: var(--primary); color: #000; box-shadow: 0 0 10px var(--primary);
}
.s-prev { left: -10px; } 
.s-next { right: -10px; }
.btn-sidebar-play {
    display: block;
    text-align: center;
    margin-top: 12px;
    background: var(--accent-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 0;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.2);
    transition: 0.2s;
}
.btn-sidebar-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}
.btn-mini-sidebar {
    text-decoration: none;
    background: var(--accent-gradient);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap; 
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.2);
    transition: 0.2s;
    margin-left: auto; 
    align-self: center; 
    flex-shrink: 0;
}
.btn-mini-sidebar:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}
.marquee-wrapper {
    background: linear-gradient(90deg, #111 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 20; 
    height: 40px;
    display: flex;
    align-items: center;
}
.marquee-inner {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}
.marquee-icon {
    background: var(--primary); 
    color: #000;
    height: 100%;
    width: 40px;
    display: grid;
    place-items: center;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}
.marquee-icon::after {
    content: ''; position: absolute; right: -10px; top: 0; bottom: 0;
    width: 0; height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid var(--primary);
}
.marquee-text {
    color: #e0e0e0; 
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 40px; 
}
.m-tag { color: var(--primary); font-weight: 800; }
.m-highlight { color: #fff; font-weight: 700; }
.m-win { color: #0f0; font-weight: 700; text-shadow: 0 0 5px rgba(0,255,0,0.3); }
.m-money { color: #FFD700; font-weight: 800; }
.m-user { color: #aaa; font-style: italic; }
.hero-modern {
    padding: 60px 0 80px;
    background: #050505;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -50%; left: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 50px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px; border-radius: 30px;
    font-size: 0.85rem; color: #fff;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}
.pulse-dot {
    width: 8px; height: 8px; background: #0f0; border-radius: 50%;
    box-shadow: 0 0 10px #0f0;
    animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% {opacity: 1;} 50% {opacity: 0.5;} }
.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem; line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.text-gradient-gold {
    background: linear-gradient(135deg, #fff 0%, #FFD700 50%, #B8860B 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    font-size: 4rem;
}
.hero-desc {
    color: #d1d1d1; 
    font-size: 1.1rem; line-height: 1.6;
    margin-bottom: 35px; max-width: 500px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero-main {
    padding: 12px 30px; font-size: 1rem; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}
.btn-hero-sec {
    padding: 12px 30px; font-size: 1rem; border-radius: 8px;
}
.hero-banner-box {
    width: 100%; aspect-ratio: 21/9;
    background: #000; border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden; position: relative;
}
.hero-img-main {
    width: 100%; height: 100%; object-fit: cover;
}
.floating-anim {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.shine-effect {
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: shine-pass 5s infinite;
}
@keyframes shine-pass {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.jp-banner-premium {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border: 2px solid #B8860B;
    border-radius: 20px;
    padding: 25px 20px;
    padding-bottom: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -50px; 
    z-index: 5;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(0,0,0,0.8);
}
.jp-shine-bg {
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: skewX(-25deg);
    animation: shine-loop 4s infinite;
    z-index: 1;
}
@keyframes shine-loop {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}
.jp-content { position: relative; z-index: 2; }
.jp-label {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    font-size: 0.9rem; letter-spacing: 3px; color: #d4af37;
    font-weight: 700; margin-bottom: 5px; text-transform: uppercase;
}
.jp-label .line {
    height: 1px; width: 40px; background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.jp-icon-decor {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    font-size: 1.5rem; background: #000; padding: 0 10px; border-radius: 50%;
    border: 1px solid #B8860B; z-index: 3; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.jp-display-modern {
    font-family: var(--font-display);
    display: flex; align-items: baseline; justify-content: center; gap: 10px;
    margin: 10px 0;
}
.currency {
    font-size: 1.5rem; color: #888; font-weight: 600;
}
.jp-numbers {
    font-size: 3.5rem; font-weight: 800;
    background: linear-gradient(to bottom, #fff 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0px rgba(0,0,0,0.5));
    font-variant-numeric: tabular-nums; 
}
.jp-footer {
    font-size: 0.75rem; color: #666; font-family: monospace;
    background: rgba(0,0,0,0.5); display: inline-block;
    padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);
}
.section-dark {
    padding: 60px 0;
    background: #050505;
}
.section-light {
    padding: 60px 0;
    background: #0a0a0a; 
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.section-header-modern {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}
.sh-left { display: flex; flex-direction: column; gap: 5px; }
.sh-title {
    font-family: var(--font-display); font-size: 2rem; margin: 0;
    display: flex; align-items: center; gap: 10px; text-transform: uppercase;
    line-height: 1;
}
.sh-line {
    width: 60px; height: 3px; background: var(--primary);
    border-radius: 3px; margin-top: 5px;
}
.sh-badge {
    font-size: 0.8rem; background: rgba(255, 215, 0, 0.1); color: var(--primary);
    padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(255, 215, 0, 0.2);
}
.sh-badge-outline {
    font-size: 0.75rem; color: #aaa; border: 1px solid #444;
    padding: 4px 12px; border-radius: 20px; letter-spacing: 1px;
}
.badge-live-rtp {
    font-size: 0.8rem; background: var(--danger); color: #fff;
    padding: 4px 12px; border-radius: 4px; font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}
.provider-track-modern {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; margin-bottom: 25px;
    scrollbar-width: none;
}
.provider-track-modern::-webkit-scrollbar { display: none; }
.provider-pill {
    padding: 8px 20px; background: #161616; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1); color: #888;
    font-size: 0.8rem; font-weight: 700; cursor: pointer;
    white-space: nowrap; transition: 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.provider-pill:hover {
    border-color: var(--primary); color: #fff; background: rgba(255,255,255,0.05);
}
.provider-pill.active {
    background: var(--primary); color: #000; border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.p-dot {
    width: 6px; height: 6px; background: #000; border-radius: 50%; display: block;
}
.seo-article-section {
    padding: 60px 0;
    background: #050505;
    border-top: 1px solid var(--border);
    margin-top: 0px;
}
.article-box {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    max-width: 1200px; 
    margin: 0 auto;
}
.article-header { text-align: left; margin-bottom: 20px; }
.article-tag {
    background: var(--primary); color: #000; font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 10px;
}
.article-title {
    font-family: var(--font-display); font-size: 2.2rem; color: #fff; line-height: 1.3; margin-bottom: 10px;
}
.article-meta { font-size: 0.8rem; color: #aaa; font-family: monospace; }
.article-divider { border: 0; border-top: 1px solid #222; margin: 20px 0 30px; }
.article-content { color: #e0e0e0; font-size: 1rem; line-height: 1.8; text-align: justify; }
.article-content p { margin-bottom: 20px; }
.highlight-text { color: var(--primary); }
.sub-heading {
    font-family: var(--font-display); color: #fff; font-size: 1.5rem;
    margin: 30px 0 15px; border-left: 4px solid var(--primary); padding-left: 15px;
}
.feature-list { list-style: none; padding: 0; margin-bottom: 20px; }
.feature-list li {
    margin-bottom: 10px; padding-left: 20px; position: relative;
}
.quote-box {
    background: rgba(255, 215, 0, 0.05); border-left: 4px solid var(--primary);
    padding: 20px; font-style: italic; color: #e0e0e0; margin: 30px 0; border-radius: 0 8px 8px 0;
}
.pola-table-wrapper { overflow-x: auto; margin: 20px 0 30px; }
.pola-table {
    width: 100%; border-collapse: collapse; min-width: 500px;
}
.pola-table th, .pola-table td {
    padding: 12px 15px; border: 1px solid #333; text-align: left; font-size: 0.9rem;
}
.pola-table th { background: #1a1a1a; color: var(--primary); font-weight: 700; }
.pola-table td { background: #0a0a0a; color: #e0e0e0; }
.pola-table tr:hover td { background: #111; }
.faq-section-inner { margin-top: 50px; padding-top: 30px; border-top: 1px dashed #333; }
.faq-box {
    background: #111; border: 1px solid #222; border-radius: 8px; margin-bottom: 10px;
    padding: 15px; cursor: pointer; transition: 0.3s;
}
.faq-box:hover { border-color: #444; }
.faq-box summary {
    font-weight: 700; color: #fff; list-style: none; outline: none;
}
.faq-box p { margin-top: 10px; margin-bottom: 0; color: #ccc; font-size: 0.9rem; }
.footer-section-modern {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 0;
    font-size: 0.9rem;
    color: #ccc; 
}
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand-logo { height: 40px; margin-bottom: 20px; filter: brightness(0.9); }
.footer-desc { line-height: 1.6; margin-bottom: 25px; font-size: 0.85rem; color: #ccc !important; }
.footer-licenses { display: flex; gap: 15px; align-items: center; }
.footer-licenses img { height: 30px; opacity: 0.7; transition: 0.3s; }
.footer-licenses img:hover { opacity: 1; }
.footer-heading {
    color: #fff; font-family: var(--font-display);
    font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 1px;
    position: relative; padding-bottom: 10px;
}
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 30px; height: 2px; background: var(--primary);
}
.footer-link-list { list-style: none; padding: 0; }
.footer-link-list li { margin-bottom: 10px; }
.footer-link-list a {
    color: #ccc; 
    text-decoration: none; transition: 0.3s;
    display: block;
}
.footer-link-list a:hover { color: var(--primary); transform: translateX(5px); }
.provider-grid-small { display: flex; flex-wrap: wrap; gap: 8px; }
.prov-tag {
    background: #161616; padding: 4px 10px; border-radius: 4px;
    font-size: 0.75rem; color: #aaa; border: 1px solid #222;
    cursor: default; transition: 0.3s;
}
.prov-tag:hover { border-color: var(--primary); color: #fff; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-icon {
    width: 45px; height: 28px; background: #fff; border-radius: 4px;
    display: grid; place-items: center;
    font-size: 0.6rem; font-weight: 800; color: #000;
}
.pay-icon.bca { color: #005eb8; }
.pay-icon.mandiri { color: #003d79; }
.pay-icon.bni { color: #f15a22; }
.pay-icon.bri { color: #00529c; }
.pay-icon.dana { background: #118eea; color: #fff; }
.pay-icon.ovo { background: #4c3494; color: #fff; }
.pay-icon.gopay { background: #00a5cf; color: #fff; }
.contact-buttons-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
}
.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    width: 100%; 
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}
.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}
.btn-livechat {
    background: linear-gradient(135deg, #ff9100 0%, #b35f00 100%);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
}
.btn-livechat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
    filter: brightness(1.1);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px; text-align: center;
}
.copyright-text { font-size: 0.8rem; color: #aaa; } 
.copyright-text strong { color: var(--primary); }
.menu-main-title { font-size: 0.7rem; color: #aaa; margin: 10px 0 5px 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.menu-category-title { font-size: 0.7rem; color: #aaa; margin: 15px 0 5px 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.rtp-card-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; border-bottom:1px solid rgba(255,255,255,0.05); padding-bottom:8px; }
.rtp-card-provider { font-size: 0.7rem; color: #aaa; font-weight:700; display:flex; align-items:center; gap:5px; }
.rtp-card-time { font-size: 0.65rem; background:rgba(255,255,255,0.05); padding:2px 6px; border-radius:4px; color:#ddd; }
.rtp-card-body { display:flex; gap:8px; align-items:center; }
.rtp-card-img { width:36px; height:36px; border-radius:6px; object-fit:cover; border:1px solid rgba(255,215,0,0.3); flex-shrink: 0; }
.rtp-card-text { flex:1; min-width: 0; }
.rtp-game-name { font-size: 0.75rem; font-weight: 700; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rtp-val { font-size: 0.7rem; color: #0f0; font-family:monospace; margin-top: 1px; }
.header-actions { display:flex; gap:10px; }
.btn-header { padding: 5px 12px; font-size: 0.75rem; }
.hero-stats-container { margin-top: 30px; display: flex; gap: 20px; color: #ccc; font-size: 0.8rem; }
.hero-stat-val { color:#fff; }
.hero-stat-divider { width:1px; height:15px; background:#333; }
.article-meta-update { color:#0f0; }
.article-meta-author { color:var(--primary); }
.faq-header { color:var(--primary); margin-bottom:15px; }
.contact-heading { margin-top: 25px; }
@media (max-width: 1024px) {
    .app-layout { flex-direction: column; }
    .sidebar { 
        display: flex !important; 
        transform: translateX(-100%); 
        width: 280px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.5);
    }
    .sidebar.active {
        transform: translateX(0); 
    }
    .btn-close-sidebar { display: block; } 
    .sidebar-logo { justify-content: flex-start; padding-left: 20px; }
    .main-content { margin-left: 0; width: 100%; padding-bottom: 50px; padding-top: 60px; }
    .mobile-header { display: flex; } 
    .bottom-nav { display: flex; } 
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-image-wrapper { display: none; }
    .game-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .game-name { font-size: 0.7rem; }
    .provider-card { padding: 6px 12px; font-size: 0.7rem; }
    .jp-display { font-size: 2rem; }
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .jp-numbers { font-size: 2.2rem; }
    .currency { font-size: 1rem; }
    .jp-label { font-size: 0.7rem; letter-spacing: 1px; }
    .jp-banner-premium { padding: 25px 15px; margin-top: -20px;}
    .marquee-wrapper { height: 35px; }
    .marquee-icon { width: 35px; margin-right: 10px; }
    .marquee-icon::after { border-top-width: 17.5px; border-bottom-width: 17.5px; }
    .marquee-text { font-size: 0.75rem; line-height: 35px; }
    .sh-title { font-size: 1.5rem; }
    .section-header-modern { align-items: center; }
    .sh-badge { font-size: 0.7rem; padding: 4px 10px; }
    .article-box { padding: 20px; border: none; background: transparent; }
    .article-title { font-size: 1.6rem; }
}
@media (max-width: 600px) {
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-col-info { text-align: center; }
    .footer-licenses { justify-content: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-heading { text-align: center; }
}
.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}
.mobile-menu-btn { padding: 5px; border: none; margin-right: 10px; }
.logo-mobile { height: 35px; }
.pulse-green { background: #0f0; }
.text-blue { color: #00f; }
.text-red { color: #ff0000; }
.bg-red-text-white { background: #ff0000; color: #fff; }