/* V9 娱乐页面增强样式 */

/* Category Tabs - 游戏分类快捷导航 */
.v9-category-tabs {
  display:flex;
  gap:8px;
  padding:10px 16px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  background:var(--header-bg);
}
.v9-category-tabs::-webkit-scrollbar { display:none; }
.v9-category-tab {
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:6px;
  padding:7px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:500;
  border:none;
  cursor:pointer;
  transition:all 0.2s;
  white-space:nowrap;
  background:rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.6);
}
.v9-category-tab.active {
  background:var(--color-primary);
  color:#fff;
  box-shadow:0 2px 8px rgba(230,0,19,0.3);
}
.v9-category-tab i { font-size:14px; }

/* 实时爆奖 Jackpot Ticker */
.v9-jackpot-section {
  margin:12px 12px 0;
}
.v9-jackpot-header {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}
.v9-jackpot-header .icon {
  width:8px; height:8px;
  border-radius:50%;
  background:var(--color-primary);
  animation:jackpot-pulse 1.5s infinite;
}
@keyframes jackpot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}
.v9-jackpot-header h3 {
  font-size:15px;
  font-weight:600;
}
.v9-jackpot-scroll {
  display:flex;
  gap:10px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
}
.v9-jackpot-scroll::-webkit-scrollbar { display:none; }
.v9-jackpot-card {
  flex-shrink:0;
  width:140px;
  background:var(--color-paper);
  border-radius:12px;
  padding:12px;
  text-align:center;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  cursor:pointer;
  transition:transform 0.15s;
}
.v9-jackpot-card:active { transform:scale(0.97); }
.v9-jackpot-card-icon {
  width:48px; height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, #1e2734, #2a3140);
  margin:0 auto 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
}
.v9-jackpot-card-name {
  font-size:11px;
  color:var(--color-text-sub);
  margin-bottom:4px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.v9-jackpot-card-amount {
  font-size:14px;
  font-weight:700;
  color:var(--color-primary);
}
.v9-jackpot-card-badge {
  display:inline-block;
  font-size:10px;
  padding:1px 6px;
  border-radius:8px;
  background:rgba(230,0,19,0.1);
  color:var(--color-primary);
  margin-top:4px;
  font-weight:600;
}

/* 供应商 Grid */
.v9-suppliers-section {
  margin:16px 12px;
}
.v9-suppliers-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.v9-suppliers-header h3 {
  font-size:15px;
  font-weight:600;
}
.v9-suppliers-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
}
.v9-supplier-item {
  background:var(--color-paper);
  border-radius:12px;
  padding:12px 8px;
  text-align:center;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  cursor:pointer;
  transition:transform 0.15s;
}
.v9-supplier-item:active { transform:scale(0.95); }
.v9-supplier-logo {
  width:44px; height:44px;
  border-radius:10px;
  object-fit:contain;
  margin:0 auto 6px;
  display:block;
  background:#f8f9fa;
}
.v9-supplier-name {
  font-size:11px;
  font-weight:500;
  color:var(--color-text);
}

/* Enhanced Section Headers */
.game-section .section-head {
  border-bottom:none;
}

/* Footer Links V9 style */
.v9-footer-links {
  margin:16px 12px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:8px;
}
.v9-footer-link {
  background:var(--color-paper);
  border-radius:12px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--color-text);
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  font-size:13px;
  font-weight:500;
}
.v9-footer-link i {
  font-size:16px;
  color:var(--color-primary);
  width:20px;
  text-align:center;
}

/* V9 Disclaimer */
.v9-disclaimer {
  margin:16px 12px;
  padding:16px;
  background:var(--color-paper);
  border-radius:12px;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
}
.v9-disclaimer-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px; height:32px;
  border-radius:50%;
  background:var(--color-primary);
  color:#fff;
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}
.v9-disclaimer p {
  font-size:12px;
  color:var(--color-text-sub);
  line-height:1.6;
  margin-bottom:6px;
}
.v9-disclaimer p:last-child { margin-bottom:0; }
