:root {
    --bg-dark: #0e0e1a;
    --bg-card: #1a1a2e;
    --bg-card2: #16162b;
    --bg-header: #111125;
    --gold: #f5a623;
    --gold-hover: #e6991a;
    --white: #ffffff;
    --gray: #aaaaaa;
    --light-gray: #cccccc;
    --text: #e0e0e0;
    --border: #2d2d4a;
    --green: #27ae60;
    --red: #e74c3c;
    --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
.top-header { background: linear-gradient(135deg, #111125, #1a1a35); border-bottom: 2px solid var(--gold); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 15px; max-width: 1200px; margin: 0 auto; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.logo-text span { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #d4891a); color: #000; }
.btn-gold:hover { background: linear-gradient(135deg, #d4891a, var(--gold)); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(245,166,35,0.1); }
.btn-whatsapp { background: #25d366; color: #fff; padding: 8px 14px; border-radius: 6px; font-size: 16px; }
.btn-whatsapp:hover { background: #1fb855; }

/* Navigation */
.main-nav { background: #0c0c1d; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 15px; overflow-x: auto; }
.nav-inner::-webkit-scrollbar { height: 0; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 16px; font-size: 12px; font-weight: 600; color: var(--light-gray); white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Marquee */
.marquee-bar { background: var(--gold); color: #000; font-size: 12px; font-weight: 600; padding: 6px 0; overflow: hidden; white-space: nowrap; }
.marquee-text { display: inline-block; animation: marquee 25s linear infinite; }
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* Hero Banner */
.hero-banner { position: relative; overflow: hidden; background: #0a0a18; }
.hero-banner img { width: 100%; min-height: 200px; object-fit: cover; }

/* Single Banner for All Devices */
.hero-banner-img { 
    display: block !important; 
    width: 100%; 
    height: auto; 
    min-height: 250px; 
    object-fit: cover; 
    object-position: center;
}

@media (max-width: 768px) {
    .hero-banner img {
        min-height: 0px !important;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .hero-banner {
        min-height: 0px !important;
    }
}

.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1)); display: flex; align-items: center; padding: 30px; }
.hero-content { max-width: 500px; }
.hero-content .hero-logo { font-size: 42px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.hero-content .hero-logo i { color: var(--gold); margin-right: 8px; }
.hero-content .hero-logo span { color: var(--gold); }
.hero-logo-img-wrap { margin-bottom: 10px; }
.hero-logo-img { max-height: 70px; width: auto; }
.header-logo-img { max-height: 40px; width: auto; }
.hero-content h2 { font-size: 28px; color: var(--white); margin-bottom: 8px; font-weight: 800; }
.hero-content p { font-size: 15px; color: var(--gray); margin-bottom: 12px; }
.hero-content .hero-url { color: var(--gold); font-weight: 700; font-size: 16px; margin-bottom: 18px; display: block; }
.btn-download { background: var(--gold); color: #000; padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-download:hover { background: var(--gold-hover); transform: scale(1.03); }

/* Section Titles */
.gold-bar { background: var(--gold); color: #000; text-align: center; padding: 12px; font-size: 30px; font-weight: 800; }
.section-title { text-align: center; padding: 30px 15px 20px; }
.section-title h2 { font-size: 26px; font-weight: 800; color: var(--white); position: relative; display: inline-block; }
.section-title h2::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gold); border-radius: 2px; }

/* Games Grid */
.games-section { padding: 20px 15px; background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(245,166,35,0.05) 100%); }
.games-grid-top { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1200px; margin: 0 auto 20px; }
.games-grid-top .game-card-img { aspect-ratio: 16/9; }
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.game-card { 
    background: linear-gradient(145deg, var(--bg-card), rgba(245,166,35,0.08)); 
    border-radius: 16px; 
    overflow: hidden; 
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(245,166,35,0.1));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.game-card:hover::before { opacity: 1; }
.game-card:hover { 
    transform: translateY(-8px) scale(1.02); 
    border-color: var(--gold); 
    box-shadow: 0 12px 40px rgba(245,166,35,0.25);
}
.game-card-img { position: relative; aspect-ratio: 16 / 8; overflow: hidden; padding: 9px; }
.game-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.game-card:hover .game-card-img::after { opacity: 1; }
.game-card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}
.game-card:hover .game-card-img img { 
    transform: scale(1.12); 
    filter: brightness(1.1);
}
.game-card-info { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px 14px; 
    background: linear-gradient(135deg, rgba(30,30,45,0.95), rgba(40,40,60,0.95));
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}
.game-card-name { 
    font-size: 12px; 
    font-weight: 800; 
    color: var(--white); 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    flex: 1; 
    margin-right: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn-play { 
    background: linear-gradient(135deg, var(--gold), #f39c12); 
    color: #000; 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 800; 
    white-space: nowrap; 
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(245,166,35,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-play:hover { 
    background: linear-gradient(135deg, #f39c12, var(--gold));
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245,166,35,0.5);
}
.live-badge { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    background: linear-gradient(135deg, var(--red), #c0392b); 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 9px; 
    font-weight: 800; 
    text-transform: uppercase; 
    animation: pulse-live 2s infinite;
    box-shadow: 0 2px 10px rgba(231,76,60,0.5);
    z-index: 3;
    letter-spacing: 0.5px;
}
@keyframes pulse-live { 
    0%,100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(231,76,60,0.5);
    } 
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(231,76,60,0.7);
    } 
}

/* Info Section */
.info-section { background: var(--bg-card); padding: 40px 15px; margin: 20px 0; }
.info-section .container { max-width: 900px; }
.info-section h2 { color: var(--gold); font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 15px; }
.info-section p { color: var(--gray); font-size: 13px; line-height: 1.8; text-align: center; margin-bottom: 12px; }
.btn-get-id { display: inline-block; border: 2px solid var(--gold); color: var(--gold); padding: 10px 30px; border-radius: 25px; font-weight: 700; font-size: 14px; margin: 15px auto; transition: all 0.3s; }
.btn-get-id:hover { background: var(--gold); color: #000; }
.info-center { text-align: center; }

/* Features */
.features-section { background: var(--bg-dark); padding: 40px 15px; }
.features-section h2 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.feature-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.feature-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--gold); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.feature-text h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-text p { color: var(--gray); font-size: 12px; line-height: 1.6; }

/* App Banner */
.app-banner { display: flex; align-items: center; gap: 30px; background: linear-gradient(135deg, #1a1a35, #0e0e25); border: 1px solid var(--border); border-radius: 12px; padding: 25px; margin: 30px auto; max-width: 1100px; }
.app-banner-text { flex: 1; }
.app-banner-text h3 { color: var(--gold); font-size: 22px; font-weight: 800; margin-bottom: 5px; }
.app-banner-text h4 { color: var(--white); font-size: 16px; margin-bottom: 3px; }
.app-banner-text p { color: var(--gray); font-size: 13px; margin-bottom: 10px; }
.app-banner-img img { width: 200px; border-radius: 10px; }

/* Footer */
.footer { background: #0a0a18; padding: 30px 15px; border-top: 1px solid var(--border); }
.footer-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-disclaimer { font-size: 11px; color: #666; line-height: 1.7; margin-bottom: 20px; padding: 15px; background: var(--bg-card); border-radius: 8px; border: 1px solid var(--border); }
.footer-age { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 15px; color: var(--gray); font-size: 12px; }
.age-badge { background: var(--red); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 20px; margin-bottom: 15px; }
.footer-links a { font-size: 12px; color: var(--gray); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 15px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy { font-size: 11px; color: #555; }

/* Sticky WhatsApp */
.sticky-wa { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; align-items: center; gap: 10px; background: #25d366; border-radius: 50px; padding: 12px 20px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); animation: wa-blink 1.5s infinite; text-decoration: none; transition: all 0.3s; }
.sticky-wa:hover { background: #1db954; }
.sticky-wa:hover .sticky-wa-text { color: #000; }
.sticky-wa i { font-size: 26px; color: #fff; }
.sticky-wa-text { color: #fff; font-size: 14px; font-weight: 700; white-space: nowrap; }
@keyframes wa-blink { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); background: #25d366; } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); background: #1db954; } }

/* Blog Listing Section */
.blog-listing-section { padding: 60px 20px; background: var(--bg); }
.blog-listing-container { max-width: 1200px; margin: 0 auto; }
.blog-listing-header { text-align: center; margin-bottom: 50px; }
.blog-listing-header h2 { font-size: 36px; color: var(--white); margin-bottom: 10px; font-weight: 800; }
.blog-listing-header h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 15px auto 0; }
.blog-listing-header p { color: var(--gray); font-size: 15px; margin-top: 15px; }

/* Blog Cards - Desktop Grid, Mobile Slider */
@media (min-width: 769px) {
    .recent-posts-slider { position: static; overflow: visible; }
    .slider-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; transition: none; transform: none !important; }
    .slider-container .blog-card { min-width: auto; flex-shrink: 1; }
    .slider-controls { display: none; }
    .slider-dots { display: none; }
}

@media (max-width: 768px) {
    .recent-posts-slider { position: relative; overflow: hidden; border-radius: 12px; }
    .slider-container { display: flex; transition: transform 0.5s ease; }
    .slider-container .blog-card { min-width: 100%; flex-shrink: 0; }
    .slider-controls { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 10px; pointer-events: none; }
    .slider-btn { background: rgba(0,0,0,0.7); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.3s; pointer-events: all; }
    .slider-btn:hover { background: rgba(0,0,0,0.9); }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .slider-dots { text-align: center; margin-top: 15px; display: block; }
    .slider-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--gray); margin: 0 5px; cursor: pointer; transition: background 0.3s; }
    .slider-dot.active { background: var(--gold); }
}

/* Blog Cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.blog-card { background: var(--dark-bg); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: var(--white); display: block; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-date { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.blog-date i { margin-right: 5px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 15px; }
.blog-read-more { color: var(--gold); font-size: 14px; font-weight: 600; }
.blog-card-body h3 { font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.blog-card-body p { font-size: 13px; color: var(--gray); margin-bottom: 15px; line-height: 1.6; flex: 1; }
.blog-read-more { color: var(--gold); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.blog-read-more:hover { gap: 10px; }

/* Blog Detail Section */
.blog-detail-section { padding: 60px 20px; background: var(--bg); }
.blog-detail-container { max-width: 900px; margin: 0 auto; }
.blog-detail-header { margin-bottom: 30px; }
.blog-detail h1 { font-size: 32px; color: var(--white); margin-bottom: 15px; line-height: 1.3; font-weight: 800; }
.blog-detail .blog-meta { font-size: 13px; color: #888; display: flex; align-items: center; gap: 6px; }
.blog-detail-img-wrapper { margin: 30px 0; border-radius: 12px; overflow: hidden; }
.blog-detail-img { width: 100%; height: auto; display: block; }
.blog-detail-content { color: var(--text); font-size: 15px; line-height: 1.9; margin-bottom: 40px; }
.blog-detail-content h2 { color: var(--gold); font-size: 22px; margin: 30px 0 15px; font-weight: 700; }
.blog-detail-content h3 { color: var(--white); font-size: 18px; margin: 20px 0 12px; font-weight: 700; }
.blog-detail-content ul, .blog-detail-content ol { margin: 15px 0 15px 30px; }
.blog-detail-content li { margin-bottom: 8px; color: var(--gray); }
.blog-detail-content p { margin-bottom: 15px; }
.blog-detail-content strong { color: var(--white); }
.blog-detail-cta { text-align: center; padding: 30px 0; border-top: 1px solid #2d2d4a; }
.btn-get-id { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), #e8a000); color: #000; padding: 14px 35px; border-radius: 6px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.btn-get-id:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.3); }
.blog-back { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 30px; transition: gap 0.3s; }
.blog-back:hover { gap: 10px; }

/* Join Modal Popup */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; }
.modal.show { display: flex; }
.modal-content { background: #1a1a2e; border: 1px solid #2d2d4a; border-radius: 12px; max-width: 500px; width: 90%; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5); animation: slideIn 0.3s ease-out; }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: #888; font-size: 28px; cursor: pointer; transition: all 0.3s; }
.modal-close:hover { color: var(--gold); }
.modal-body { padding: 30px; }
.modal-body h2 { color: var(--gold); font-size: 24px; margin-bottom: 8px; font-weight: 800; }
.modal-body p { color: var(--gray); font-size: 13px; margin-bottom: 20px; }
.join-form { display: flex; flex-direction: column; gap: 12px; }
.join-form-modal { display: flex; flex-direction: column; gap: 12px; }
.join-form .form-group { display: flex; }
.join-form-modal .form-group { display: flex; }
.join-form-modal input { flex: 1; padding: 12px 15px; background: #0e0e1a; border: 1px solid #2d2d4a; border-radius: 6px; color: var(--white); font-size: 13px; transition: all 0.3s; }
.join-form-modal input:focus { outline: none; border-color: var(--gold); background: #1a1a2e; box-shadow: 0 0 10px rgba(245,166,35,0.1); }
.join-form-modal input::placeholder { color: #666; }
.join-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 9999; align-items: center; justify-content: center; }
.join-modal.active { display: flex; }
.join-modal-content { background: #1a1a2e; border: 1px solid #2d2d4a; border-radius: 12px; max-width: 500px; width: 90%; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5); animation: slideIn 0.3s ease-out; }
.join-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; border-bottom: 1px solid #2d2d4a; }
.join-modal-header h3 { color: var(--gold); font-size: 20px; font-weight: 700; margin: 0; }
.join-modal-close { background: none; border: none; color: #888; font-size: 24px; cursor: pointer; transition: all 0.3s; padding: 0; }
.join-modal-close:hover { color: var(--gold); }
.join-modal-body { padding: 30px; }
.join-modal-body p { color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.btn-join-modal { width: 100%; padding: 12px 30px; background: linear-gradient(135deg, var(--gold), #e8a000); color: #000; border: none; border-radius: 6px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-join-modal:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(245,166,35,0.3); }
.btn-join-modal:disabled { opacity: 0.6; cursor: not-allowed; }
.join-form input { flex: 1; padding: 12px 15px; background: #0e0e1a; border: 1px solid #2d2d4a; border-radius: 6px; color: var(--white); font-size: 13px; transition: all 0.3s; }
.join-form input:focus { outline: none; border-color: var(--gold); background: #1a1a2e; box-shadow: 0 0 10px rgba(245,166,35,0.1); }
.join-form input::placeholder { color: #666; }
.btn-join { padding: 12px 30px; background: linear-gradient(135deg, var(--gold), #e8a000); color: #000; border: none; border-radius: 6px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; }
.btn-join:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(245,166,35,0.3); }
.btn-join:active { transform: translateY(0); }
#form-message.success { background: rgba(39,174,96,0.1); color: #27ae60; border: 1px solid rgba(39,174,96,0.2); }
#form-message.error { background: rgba(231,76,60,0.1); color: #e74c3c; border: 1px solid rgba(231,76,60,0.2); }

/* Join Header Button */
.btn-join-header { background: linear-gradient(135deg, #27ae60, #229954); color: var(--white); border: 1px solid rgba(39,174,96,0.3); padding: 8px 16px; font-size: 12px; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.3s; }
.btn-join-header:hover { background: linear-gradient(135deg, #229954, #1e8449); box-shadow: 0 4px 15px rgba(39,174,96,0.3); }
.btn-join-header:active { transform: scale(0.98); }

/* Mobile Menu */
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; padding: 5px; transition: all 0.3s; }
.menu-toggle:hover { color: var(--gold); }
.main-nav.show { display: block !important; position: absolute; top: 100%; left: 0; right: 0; background: #0c0c1d; border-bottom: 1px solid var(--border); z-index: 999; }
.main-nav.show .nav-inner { flex-direction: column; gap: 0; }
.main-nav.show .nav-link { border-bottom: 1px solid var(--border); border-left: none; padding: 12px 20px; }

/* Mobile Layout Fixes */
@media (max-width: 768px) {
    /* Fix overflow and scrolling issues */
    body { overflow-x: hidden; }
    .container { max-width: 100%; padding: 0 10px; }
    
    /* Fix header layout */
    .header-inner { flex-wrap: nowrap; }
    .header-actions { flex-shrink: 0; }
    
    /* Fix button overflow */
    .btn { white-space: nowrap; }
    
    /* Keep game cards same design as desktop */
    .game-card { min-height: auto; }
    .game-card-info { 
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between;
        text-align: left;
    }
    .game-card-name { 
        font-size: 11px;
        flex: 1;
        margin-right: 8px;
    }
    .btn-play {
        font-size: 9px;
        padding: 5px 12px;
    }
    
    /* Fix sections */
    section { overflow: hidden; }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .container { padding: 0 8px; }
    .header-inner { padding: 6px 10px; }
    .logo-text { font-size: 14px; }
    .header-logo-img { max-height: 28px; }
    .btn { padding: 5px 10px; font-size: 9px; }
    .btn-outline { padding: 5px 8px; font-size: 9px; }
    .btn-join-header { padding: 5px 10px; font-size: 9px; }
    .header-actions { gap: 5px; }
    
    /* Prevent horizontal scroll */
    * { max-width: 100%; }
    img { max-width: 100%; height: auto; }
    
    /* Keep game card design consistent */
    .game-card-info { 
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between;
        padding: 10px 12px;
    }
    .game-card-name { 
        font-size: 10px; 
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        margin-right: 8px;
    }
    .btn-play {
        font-size: 8px;
        padding: 4px 10px;
    }
}

/* Mobile Welcome Bonus Section Fixes */
@media (max-width: 768px) {
    .welcome-bonus-section { padding: 20px 10px; }
    .welcome-bonus-inner { text-align: center; padding: 20px 15px; }
    .welcome-bonus-icon { font-size: 40px; margin-bottom: 15px; }
    .welcome-bonus-title { font-size: 20px; margin-bottom: 10px; }
    .welcome-bonus-desc { font-size: 14px; margin-bottom: 20px; }
    .btn-welcome { padding: 8px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
    .welcome-bonus-section { padding: 15px 8px; }
    .welcome-bonus-inner { padding: 15px 10px; }
    .welcome-bonus-icon { font-size: 30px; margin-bottom: 10px; }
    .welcome-bonus-title { font-size: 18px; margin-bottom: 8px; }
    .welcome-bonus-desc { font-size: 12px; margin-bottom: 15px; }
    .btn-welcome { padding: 6px 16px; font-size: 12px; }
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner { padding: 8px 12px; }
    .logo-text { font-size: 16px; }
    .header-logo-img { max-height: 32px; }
    .btn { padding: 6px 12px; font-size: 10px; }
    .btn-outline { padding: 6px 10px; font-size: 10px; }
    .btn-join-header { padding: 6px 12px; font-size: 10px; }
    .menu-toggle { display: block; }
    .header-actions { gap: 6px; }
    .header-actions .btn-outline { display: inline-flex; }
    .header-actions .btn-join-header { display: inline-flex; }
    .nav-link { padding: 8px 12px; font-size: 11px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .games-grid-top { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-content .hero-logo { font-size: 24px; }
    .hero-content h2 { font-size: 18px; }
    .hero-content p { font-size: 13px; }
    .hero-content .btn-download { margin-top: 10px; }
    .hero-overlay { padding: 15px; padding-bottom: 25px; }
    .hero-banner { min-height: 280px; }
    .hero-banner img { min-height: 280px; object-fit: cover; }
    .sticky-wa { display: flex; }
    .blog-grid { grid-template-columns: 1fr; }
    .app-banner { flex-direction: column; text-align: center; }
    .app-banner-img img { margin: 0 auto; }
    .features-two-col { grid-template-columns: 1fr; }
    .gold-bar { font-size: 25px; padding: 10px; }
    .section-title h2 { font-size: 18px; }
    .blog-detail h1 { font-size: 20px; }
    .container { padding: 0 10px; }
}
@media (max-width: 480px) {
    .games-section { padding: 15px 8px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .games-grid-top { gap: 8px; }
    .game-card { border-radius: 12px; }
    .game-card:hover { transform: translateY(-4px) scale(1.01); }
    .live-badge { padding: 2px 6px; font-size: 7px; }
    .gold-bar { font-size: 18px; padding: 8px; }
    .standout-right img { height: 200px; }
    .download-img img { height: 200px; }
}

/* ── Standout Section (2-col with image) ── */
.standout-section { background: var(--bg-dark); padding: 40px 20px; }
.standout-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: center; }
.standout-left h2 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.standout-right img { width: 100%; height: 350px; object-fit: cover; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
@media (max-width: 768px) {
    .standout-inner { grid-template-columns: 1fr; }
    .standout-right { order: -1; }
    .standout-right img { height: 250px; }
}

/* ── Bonus Section ── */
.bonus-section { background: var(--bg-dark); padding: 30px 20px; }
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 18px; transition: all 0.3s; }
.bonus-card.highlight { border-color: var(--gold); }
.bonus-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.bonus-icon { 
    width: 60px; 
    height: 60px; 
    margin: 0 auto 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
    border: 2px solid rgba(245,166,35,0.2);
}
.bonus-icon img { 
    width: 32px; 
    height: 32px; 
    object-fit: contain; 
    border-radius: 50%;
}
.bonus-icon svg { width: 32px; height: 32px; }
.bonus-card h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.bonus-card.highlight h4 { color: var(--gold); }
.bonus-card p { color: var(--gray); font-size: 12px; line-height: 1.7; }
@media (max-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .bonus-grid { grid-template-columns: 1fr; gap: 15px; } }
@media (max-width: 768px) {
    .bonus-section { padding: 20px 10px; }
    .bonus-card { padding: 15px; }
    .bonus-card h4 { font-size: 13px; }
    .bonus-card p { font-size: 11px; }
    .bonus-icon { width: 50px; height: 50px; }
    .bonus-icon img { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
    .bonus-section { padding: 15px 8px; }
    .bonus-card { padding: 12px; }
    .bonus-card h4 { font-size: 12px; }
    .bonus-card p { font-size: 10px; }
    .bonus-icon { width: 45px; height: 45px; }
    .bonus-icon img { width: 24px; height: 24px; }
}

/* ── Casino Section ── */
.casino-section { background: var(--bg-dark); padding: 10px 20px 30px; }
.casino-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto 20px; }
.casino-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 16px; transition: all 0.3s; }
.casino-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.casino-icon { 
    width: 55px; 
    height: 55px; 
    margin: 0 auto 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
    border: 2px solid rgba(245,166,35,0.2);
}
.casino-icon img { 
    width: 30px; 
    height: 30px; 
    object-fit: contain; 
    border-radius: 50%;
}
.casino-icon svg { width: 30px; height: 30px; }
.casino-card h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.casino-card p { color: var(--gray); font-size: 12px; line-height: 1.6; }
.casino-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1100px; margin: 16px auto 0; }
.casino-feat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 16px; display: flex; gap: 14px; align-items: flex-start; transition: all 0.3s; }
.casino-feat-card.highlight { border-color: rgba(245,166,35,0.3); }
.casino-feat-card:hover { border-color: var(--gold); }
.casino-feat-card h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.casino-feat-card p { color: var(--gray); font-size: 12px; line-height: 1.6; }
.feat-icon { 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
    border: 2px solid rgba(245,166,35,0.2);
    flex-shrink: 0;
}
.feat-icon img { 
    width: 28px; 
    height: 28px; 
    object-fit: contain; 
    border-radius: 50%;
}
.feat-icon svg { width: 28px; height: 28px; }
.live-feat { background: #e74c3c; color: #fff; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px; flex-shrink: 0; letter-spacing: 0.5px; }
.feat-badge { display: inline-block; }
@media (max-width: 768px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); }
    .casino-features-grid { grid-template-columns: 1fr; }
    .casino-icon { width: 48px; height: 48px; }
    .casino-icon img { width: 26px; height: 26px; }
    .feat-icon { width: 45px; height: 45px; }
    .feat-icon img { width: 24px; height: 24px; }
    .kf-icon { width: 48px; height: 48px; }
    .kf-icon img { width: 26px; height: 26px; }
    .support-icon { width: 50px; height: 50px; }
    .support-icon img { width: 28px; height: 28px; }
}

/* ── Download Section ── */
.download-section { background: var(--bg-dark); padding: 30px 20px; }
.download-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: center; }
.download-img img { width: 100%; height: 350px; object-fit: cover; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.download-text h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.download-text h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.download-text p { color: var(--gray); font-size: 13px; line-height: 1.8; }
@media (max-width: 768px) {
    .download-inner { grid-template-columns: 1fr; }
    .download-text { text-align: center; }
    .download-img img { height: 250px; }
}

/* ── Key Features Section ── */
.key-features-section { background: var(--bg-dark); padding: 20px 20px 40px; }
.key-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.key-feat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 18px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.key-feat-card.highlight { border-color: rgba(245,166,35,0.3); }
.key-feat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.kf-icon { 
    width: 52px; 
    height: 52px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
    border: 2px solid rgba(245,166,35,0.2);
    flex-shrink: 0;
}
.kf-icon img { 
    width: 30px; 
    height: 30px; 
    object-fit: contain; 
    border-radius: 50%;
}
.kf-icon svg { width: 30px; height: 30px; }
.kf-badge { display: inline-block; flex-shrink: 0; }
.key-feat-card h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.key-feat-card p { color: var(--gray); font-size: 12px; line-height: 1.7; }
@media (max-width: 768px) { .key-features-grid { grid-template-columns: 1fr; } }

/* ── Recent Posts Section ── */
.recent-posts-section { background: var(--bg-dark); padding: 20px 20px 40px; }
.recent-posts-section .blog-grid { max-width: 1100px; margin: 0 auto; }

/* ── FAQ Section ── */
.faq-section { background: var(--bg-dark); padding: 20px 20px 40px; }
.faq-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.3s; }
.faq-item:hover, .faq-item.open { border-color: var(--gold); }
.faq-q { padding: 16px 20px; color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.faq-arrow { color: var(--gold); font-size: 16px; font-weight: 900; }
.faq-a { display: none; padding: 0 20px 16px 20px; color: var(--gray); font-size: 13px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Support Section ── */
.support-section { background: var(--bg-dark); padding: 20px 20px 40px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.support-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 18px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.support-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.support-icon { 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1);
}
.support-icon img { 
    width: 30px; 
    height: 30px; 
    object-fit: contain; 
    border-radius: 50%;
}
.support-icon svg { width: 30px; height: 30px; }
.wa-icon { background: rgb(0 207 77); color: #ffffff; }
.chat-icon { background: rgb(255 255 255); color: #3498db; }
.email-icon { background: rgb(255 255 255); color: #d20a0a; }
.phone-icon { background: rgb(3 177 0 / 83%); color: #ffffff; }
.support-card h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.support-card p { color: var(--gray); font-size: 12px; line-height: 1.7; }
@media (max-width: 768px) { .support-grid { grid-template-columns: 1fr; } }

/* ── Social Links Section ── */
.social-section { background: var(--bg-dark); padding: 10px 20px 40px; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 800px; margin: 0 auto; }
.social-link-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--white); color: #333; border-radius: 50px; padding: 12px 20px; font-size: 14px; font-weight: 600; transition: all 0.3s; border: 1px solid #ddd; }
.social-link-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }
.social-link-btn i { font-size: 16px; }
@media (max-width: 768px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .social-grid { grid-template-columns: 1fr; } }

/* ── Essential Keyframes Only ── */
@keyframes pulse-live { 
    0%,100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(231,76,60,0.5);
    } 
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
        box-shadow: 0 2px 15px rgba(231,76,60,0.8);
    }
}

@keyframes wa-blink { 
    0%,100% { 
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7); 
        background: #25d366; 
    } 
    50% { 
        box-shadow: 0 0 0 14px rgba(37,211,102,0); 
        background: #1db954; 
    } 
}
