:root {
    --primary-bg: #0a1410;
    --secondary-bg: #122118;
    --card-bg: #1a2f23;
    --accent-green: #00ff9d;
    --accent-emerald: #00cc7a;
    --text-primary: #ffffff;
    --text-secondary: #a8d1b8;
    --gradient-primary: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    --shadow-glow: 0 0 30px rgba(0, 255, 157, 0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}
body.menu-open { overflow: hidden; }
body::before {
    content: ''; position: fixed; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,255,157,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none; z-index: 0;
}
@keyframes gridMove { to { transform: translate(50px, 50px); } }
.bg-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,157,0.12) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.bg-glow:nth-child(1) { top: -200px; right: -200px; }
.bg-glow:nth-child(2) { bottom: -200px; left: -200px; }

/* 社交侧栏 */
.social-sidebar {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    z-index: 800; display: flex; flex-direction: column; gap: 2px;
}
.social-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--card-bg);
    border: 1px solid rgba(0,255,157,0.2); border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--accent-green); font-size: 16px;
    text-decoration: none; transition: all 0.3s;
}
.social-link:active { background: var(--gradient-primary); color: var(--primary-bg); }
.social-link.facebook  { border-left: 3px solid #1877f2; }
.social-link.whatsapp  { border-left: 3px solid #25d366; }
.social-link.telegram  { border-left: 3px solid #0088cc; }
.social-link.youtube   { border-left: 3px solid #ff0000; }
.social-link.instagram { border-left: 3px solid #e4405f; }
.social-link.support   { border-left: 3px solid var(--accent-green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,255,157,0.7); }
    50%     { box-shadow: 0 0 0 8px rgba(0,255,157,0); }
}

.container {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto; padding: 0 12px; width: 100%;
}

/* HEADER */
header {
    background: rgba(10, 20, 16, 0.98);
    border-bottom: 1px solid rgba(0,255,157,0.15);
    position: sticky; top: 0;
    z-index: 900;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    width: 100%;
}
.header-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 12px; max-width: 1400px; margin: 0 auto;
}
.logo-area {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; cursor: pointer;
}
.logo-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--primary-bg);
    font-weight: 900; font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 12px rgba(0,255,157,0.4);
    flex-shrink: 0; position: relative; overflow: hidden;
}
.logo-icon::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    animation: logoShine 3s ease-in-out infinite;
}
@keyframes logoShine {
    0%,100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}
.logo-text {
    font-family: 'Orbitron', sans-serif; font-size: 17px; font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 1.5px; white-space: nowrap; line-height: 1.1;
}
.logo-sub {
    display: block; font-size: 8px; font-weight: 400; letter-spacing: 2.5px;
    -webkit-text-fill-color: var(--text-secondary); text-transform: uppercase; margin-top: 2px;
}

/* 汉堡按钮 */
.menu-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: rgba(0,255,157,0.05);
    border: 1px solid rgba(0,255,157,0.2); border-radius: 10px;
    cursor: pointer; padding: 10px; width: 44px; height: 44px;
    transition: all 0.3s; flex-shrink: 0;
}
.menu-toggle:active { background: rgba(0,255,157,0.15); }
.menu-toggle .bar {
    display: block; width: 20px; height: 2px;
    background: var(--accent-green); border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 桌面导航 */
.desktop-nav { display: none; }

/* 手机菜单 */
.menu-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); z-index: 10000;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 82%; max-width: 340px;
    height: 100%; height: 100dvh;
    background: var(--primary-bg);
    border-left: 1px solid rgba(0,255,157,0.15);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: -10px 0 40px rgba(0,0,0,0.7);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    display: flex; flex-direction: column;
}
.nav-menu.active { right: 0; }
.menu-header {
    padding: 18px 20px; border-bottom: 1px solid rgba(0,255,157,0.1);
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0; background: var(--secondary-bg);
}
.menu-header-logo { display: flex; align-items: center; gap: 10px; }
.menu-header-logo .mh-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--primary-bg);
    font-weight: 900; font-family: 'Orbitron', sans-serif;
}
.menu-header-logo .mh-text {
    font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent-green);
}
.menu-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(0,255,157,0.2); background: rgba(0,255,157,0.05);
    color: var(--accent-green); display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; transition: all 0.2s;
}
.menu-close:active { background: rgba(0,255,157,0.2); transform: scale(0.9); }
.menu-nav { padding: 8px 0; flex: 1; }
.menu-nav ul { list-style: none; }
.menu-nav li { border-bottom: 1px solid rgba(0,255,157,0.04); }
.menu-nav a {
    color: var(--text-secondary); text-decoration: none;
    font-weight: 600; font-size: 15px; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 14px;
    padding: 15px 20px; transition: all 0.15s;
}
.menu-nav a:active { color: var(--text-primary); background: rgba(0,255,157,0.08); }
.menu-nav a.active-link { color: var(--accent-green); }
.menu-nav a i { width: 22px; text-align: center; font-size: 15px; color: var(--accent-green); opacity: 0.8; }
.menu-nav .nav-divider { height: 1px; background: rgba(0,255,157,0.08); margin: 8px 20px; }
.menu-footer {
    padding: 16px 20px 28px; border-top: 1px solid rgba(0,255,157,0.1);
    flex-shrink: 0; background: var(--secondary-bg);
}
.menu-download-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 14px 20px;
    background: var(--gradient-primary); color: var(--primary-bg);
    border: none; border-radius: 12px;
    font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; cursor: pointer; text-decoration: none; text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,255,157,0.3);
}
.menu-download-btn:active { transform: scale(0.97); }
.menu-download-btn i { font-size: 18px; }

/* FAB */
.fab-download {
    position: fixed; bottom: 20px; right: 14px; z-index: 950;
    display: flex; align-items: center; gap: 10px;
    padding: 15px 24px;
    background: var(--gradient-primary); color: var(--primary-bg);
    border: 2px solid rgba(255,255,255,0.25); border-radius: 50px;
    font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,255,157,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    animation: fabGlow 2s ease-in-out infinite;
}
.fab-download i { font-size: 18px; }
.fab-download:active { transform: scale(0.93); }
@keyframes fabGlow {
    0%,100% { box-shadow: 0 8px 32px rgba(0,255,157,0.5), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(0,255,157,0.5); }
    50%     { box-shadow: 0 8px 32px rgba(0,255,157,0.5), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 14px rgba(0,255,157,0); }
}

/* 通用按钮 */
.btn {
    padding: 10px 20px; border: none; border-radius: 20px;
    font-weight: 700; font-size: 13px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; font-family: 'Orbitron', sans-serif;
}
.btn-primary {
    background: var(--gradient-primary); color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(0,255,157,0.4);
}
.btn-primary:active { transform: scale(0.96); }

/* 内页通用 */
.page-section { padding: 30px 12px; min-height: 60vh; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; } }
.page-title {
    font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 900;
    margin-bottom: 18px; background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; text-align: center;
}
.page-content {
    background: var(--card-bg); border-radius: 14px; padding: 20px 16px;
    border: 1px solid rgba(0,255,157,0.08); line-height: 1.7;
}
.page-content h2 { font-family: 'Orbitron', sans-serif; color: var(--accent-green); font-size: 18px; margin: 22px 0 12px; }
.page-content h3 { color: var(--accent-green); font-size: 16px; margin: 16px 0 8px; }
.page-content p { margin-bottom: 12px; color: var(--text-secondary); font-size: 14px; }
.page-content ul { margin: 12px 0; padding-left: 22px; }
.page-content li { margin-bottom: 8px; color: var(--text-secondary); font-size: 14px; }

/* FAQ */
.faq-category { margin-bottom: 24px; }
.faq-category-title {
    font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--accent-green); margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,255,157,0.15);
    display: flex; align-items: center; gap: 8px;
}
.faq-item {
    background: rgba(0,255,157,0.03); border: 1px solid rgba(0,255,157,0.08);
    border-radius: 10px; margin-bottom: 10px; overflow: hidden;
}
.faq-question {
    padding: 14px 16px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    font-weight: 600; color: var(--text-primary); font-size: 14px;
}
.faq-question:active { background: rgba(0,255,157,0.06); }
.faq-question i { color: var(--accent-green); font-size: 12px; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer { display: none; padding: 0 16px 14px; color: var(--text-secondary); line-height: 1.6; font-size: 13px; }
.faq-answer.active { display: block; animation: faqReveal 0.3s ease; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; } }

/* Bonus */
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
.bonus-item {
    background: linear-gradient(135deg, rgba(0,255,157,0.08), rgba(0,204,122,0.03));
    border: 1px solid rgba(0,255,157,0.2); border-radius: 14px;
    padding: 20px; position: relative; overflow: hidden;
}
.bonus-item::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,255,157,0.06) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.bonus-title { font-family: 'Orbitron', sans-serif; font-size: 18px; color: var(--accent-green); margin-bottom: 10px; position: relative; }
.bonus-amount { font-size: 36px; font-weight: 900; color: var(--accent-green); margin-bottom: 10px; position: relative; }
.bonus-description { color: var(--text-secondary); margin-bottom: 16px; position: relative; font-size: 13px; }

/* 轮播 (首页) */
.hero-slider {
    position: relative; height: 220px; margin: 12px 0;
    border-radius: 14px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.slider-container {
    display: flex; transition: transform 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    height: 100%; width: 100%;
}
.slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,20,16,0.85) 0%, rgba(10,20,16,0.3) 60%, transparent 100%);
    z-index: 1;
}
.slide-content {
    position: relative; height: 100%; display: flex; flex-direction: column;
    justify-content: center; padding: 0 20px; z-index: 2;
}
.slide-title {
    font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 900;
    margin-bottom: 8px; text-shadow: 0 2px 15px rgba(0,0,0,0.7); line-height: 1.2;
}
.slide-subtitle { font-size: 13px; margin-bottom: 14px; color: var(--text-secondary); }
.slider-controls {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s;
}
.slider-dot.active {
    background: var(--accent-green); width: 28px; border-radius: 4px;
    box-shadow: 0 0 12px var(--accent-green);
}

/* 促销 & 游戏 */
.section { margin: 25px 0; }
.section-header { text-align: center; margin-bottom: 18px; padding: 0 10px; }
.section-title {
    font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 900;
    margin-bottom: 6px; background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: var(--text-secondary); font-size: 13px; }
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.promo-card { background: var(--card-bg); border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,255,157,0.08); }
.promo-image { height: 160px; position: relative; overflow: hidden; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-image .promo-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 50px; z-index: 2; }
.promo-image .promo-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,20,16,0.6) 100%); }
.promo-content { padding: 16px; }
.promo-badge { display: inline-block; background: var(--gradient-primary); color: var(--primary-bg); padding: 4px 12px; border-radius: 15px; font-size: 10px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.promo-title { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.promo-description { color: var(--text-secondary); font-size: 13px; line-height: 1.5; margin-bottom: 14px; }

.category-tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.category-tabs::-webkit-scrollbar { height: 3px; }
.category-tabs::-webkit-scrollbar-thumb { background: var(--accent-green); border-radius: 2px; }
.tab-btn { padding: 10px 20px; background: var(--card-bg); border: 1px solid rgba(0,255,157,0.15); border-radius: 25px; color: var(--text-secondary); font-weight: 700; cursor: pointer; font-family: 'Orbitron', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }
.tab-btn.active { background: var(--gradient-primary); color: var(--primary-bg); border-color: var(--accent-green); box-shadow: var(--shadow-glow); }
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; cursor: pointer; border: 1px solid rgba(0,255,157,0.08); }
.game-image { height: 110px; position: relative; overflow: hidden; }
.game-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-image .game-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 36px; z-index: 2; }
.game-info { padding: 10px 12px; }
.game-title { font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 3px; }
.game-provider { color: var(--text-secondary); font-size: 10px; margin-bottom: 6px; }
.game-stats { display: flex; gap: 8px; font-size: 10px; }
.stat { display: flex; align-items: center; gap: 3px; color: var(--accent-green); }

/* 页脚 */
footer {
    background: var(--secondary-bg); border-top: 1px solid rgba(0,255,157,0.1);
    padding: 30px 0 100px; margin-top: 40px;
}
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer-section h3 { font-family: 'Orbitron', sans-serif; font-size: 13px; margin-bottom: 12px; color: var(--accent-green); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 6px; }
.footer-section a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
.footer-bottom { text-align: center; padding-top: 16px; border-top: 1px solid rgba(0,255,157,0.1); color: var(--text-secondary); font-size: 12px; }
.payment-methods { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.payment-icon { width: 40px; height: 28px; background: rgba(255,255,255,0.08); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 1px solid rgba(0,255,157,0.15); }

/* 响应式 */
@media (min-width: 480px) {
    .hero-slider { height: 260px; }
    .slide-title { font-size: 24px; }
    .game-image { height: 130px; }
}
@media (min-width: 768px) {
    .social-link { width: 48px; height: 48px; font-size: 18px; }
    .logo-text { font-size: 22px; }
    .logo-icon { width: 44px; height: 44px; font-size: 22px; }
    .container { padding: 0 20px; }
    .hero-slider { height: 380px; margin: 20px 0; }
    .slide-title { font-size: 36px; }
    .section { margin: 40px 0; }
    .section-title { font-size: 32px; }
    .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .promo-image { height: 180px; }
    .games-grid { grid-template-columns: repeat(3, 1fr); }
    .game-image { height: 150px; }
    .footer-content { grid-template-columns: repeat(4, 1fr); }
    .page-title { font-size: 32px; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .fab-download { display: none; }
    .desktop-nav {
        display: flex; align-items: center; gap: 4px;
    }
    .desktop-nav a {
        color: var(--text-secondary); text-decoration: none;
        font-weight: 600; font-size: 13px; padding: 8px 12px;
        border-radius: 8px; transition: all 0.2s; white-space: nowrap;
        display: flex; align-items: center; gap: 6px;
    }
    .desktop-nav a:hover { color: var(--accent-green); background: rgba(0,255,157,0.08); }
    .desktop-nav a.active-link { color: var(--accent-green); }
    .desktop-nav a i { font-size: 13px; opacity: 0.7; }
    .desktop-nav .dn-download {
        background: var(--gradient-primary); color: var(--primary-bg);
        border-radius: 25px; padding: 10px 22px;
        font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 700;
        letter-spacing: 1px; text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(0,255,157,0.3); margin-left: 10px;
    }
    .desktop-nav .dn-download:hover { box-shadow: 0 4px 25px rgba(0,255,157,0.5); -webkit-text-fill-color: var(--primary-bg); }
    .header-inner { padding: 10px 30px; }
    .container { padding: 0 30px; }
    .hero-slider { height: 500px; margin: 25px 0; }
    .slide-title { font-size: 48px; }
    .slide-subtitle { font-size: 22px; }
    .slide-content { padding: 0 50px; }
    .section { margin: 60px 0; }
    .section-title { font-size: 38px; }
    .promo-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .games-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .game-image { height: 170px; }
    .page-section { padding: 40px 30px; }
    footer { padding-bottom: 20px; }
}


/* Hot Games Grid */
.hot-games-section {
    padding: 50px 0;
}
.hot-games-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.hot-games-section h2 {
    font-size: 36px;
    color: var(--accent-green);
    margin-bottom: 10px;
}
.hot-games-section p {
    color: var(--text-secondary);
    font-size: 16px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,255,157,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.game-card .game-image {
    width: 100%;
    height: 140px;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}
.game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.game-card .game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent-green);
    color: var(--primary-bg);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.game-card .game-info {
    padding: 14px;
}
.game-card .game-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.game-card .game-category {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Game Detail Page Styles */
.game-detail-hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0d2a1a 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(0,255,157,0.1);
}
.game-detail-hero .game-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.game-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.game-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-bg);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.game-screenshot {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(0,255,157,0.2);
}
.game-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}
.game-section {
    margin-bottom: 40px;
}
.game-section h2 {
    font-size: 24px;
    color: var(--accent-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.game-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 12px 16px;
    background: rgba(0,255,157,0.05);
    border-left: 3px solid var(--accent-green);
    margin-bottom: 8px;
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
}
.feature-list li::before {
    content: "⚡ ";
}
.play-btn {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-bg);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.play-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,255,157,0.3);
}

/* Hot Games - Clean Style */
.hot-games-section {
    padding: 40px 0;
}
.hot-games-section h2 {
    font-size: 15px;
    color: #f0c040;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 1px;
}
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hot-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.hot-list a:hover {
    background: rgba(240,192,64,0.08);
    border-color: rgba(240,192,64,0.2);
    color: #f0c040;
}
.hot-list .name {
    flex: 1;
}
.hot-list .tag {
    font-size: 11px;
    color: #888;
    background: rgba(255,255,255,0.04);
    padding: 2px 8px;
    border-radius: 4px;
}
/* Hot Games - Gold Style */
.hot-games-section {
    padding: 40px 0;
}
.hot-games-section h2 {
    font-size: 15px;
    color: #f0c040;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 1px;
}
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hot-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.hot-list a:hover {
    background: rgba(240,192,64,0.08);
    border-color: rgba(240,192,64,0.2);
    color: #f0c040;
}
.hot-list .name {
    flex: 1;
}
.hot-list .tag {
    font-size: 11px;
    color: #888;
    background: rgba(255,255,255,0.04);
    padding: 2px 8px;
    border-radius: 4px;
}
/* Hot Games Links */
.hot-games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(0,255,157,0.15);
}
.hot-game-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 14px;
    border: 1px solid #ffcc00;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    background: rgba(255,204,0,0.1);
}
.hot-game-link:hover {
    background: #ffcc00;
    color: #0a1410;
    box-shadow: 0 0 15px rgba(255,204,0,0.5);
}
