/* ============================================
   Prism Wheel — 棱镜·悬浮光轮游戏平台样式系统
   暖琥珀 × 棱镜折射 × 悬浮光轮
   ============================================ */

/* ===== CSS 自定义属性 ===== */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --rainbow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ===== 全局重置 ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ===== Body — 暖琥珀渐变 ===== */
.prism-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 30% 40%, #FFF5E6, #FFE8CC, #FFD9B3);
  background-attachment: fixed;
  color: #2C2C2C;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== 全局光点纹理背景 ===== */
.prism-light-dots {
  position: fixed;
  top: 0; left: 0; width: 200%; height: 200%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(255,215,0,0.08) 0px, rgba(255,215,0,0.08) 2px, transparent 2px, transparent 8px);
  animation: light-dot-rotate 20s infinite linear;
  transform-origin: center center;
}
@keyframes light-dot-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== 顶部粘性导航栏 — 暖色毛玻璃 ===== */
.prism-navbar {
  position: sticky; top: 0; z-index: 100; width: 100%; height: 72px;
  background: rgba(255, 245, 230, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 122, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}
.prism-navbar-inner {
  max-width: 1600px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; padding: 0 24px; gap: 28px;
}
/* Logo 棱镜光效字标 */
.prism-logo {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700;
  background: linear-gradient(90deg, #C87A00, #FFD700);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none; letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(200,122,0,0.6), 0 0 40px rgba(255,215,0,0.4);
  white-space: nowrap; flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(200,122,0,0.4));
}
.prism-logo:hover { filter: brightness(1.2) drop-shadow(0 0 12px rgba(255,215,0,0.6)); }

/* 主导航链接 */
.prism-nav-links { display: flex; align-items: center; gap: 36px; }
.prism-nav-link {
  color: #6B6B6B; text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 1.5px; position: relative; padding: 4px 0;
  transition: color 0.3s; white-space: nowrap;
}
.prism-nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: #FFD700; border-radius: 1px; transition: width 0.3s;
  box-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.prism-nav-link:hover { color: #C87A00; text-shadow: 0 0 10px rgba(200,122,0,0.3); }
.prism-nav-link:hover::after { width: 100%; }

/* 搜索框 */
.prism-search-wrap { position: relative; flex: 1; max-width: 420px; margin-left: auto; }
.prism-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; animation: prism-pulse 2s ease-in-out infinite;
}
@keyframes prism-pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.prism-search-input {
  width: 100%; padding: 10px 16px 10px 42px; height: 44px;
  background: rgba(255, 248, 235, 0.9);
  border: 1px solid rgba(200, 122, 0, 0.3); border-radius: 22px;
  color: #2C2C2C; font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; transition: all 0.3s;
}
.prism-search-input::placeholder { color: #999; }
.prism-search-input:focus {
  border-color: #C87A00;
  box-shadow: 0 0 15px rgba(200,122,0,0.4), inset 0 0 10px rgba(200,122,0,0.05);
}

/* 汉堡菜单按钮（移动端） */
.prism-mobile-menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: transparent;
  border: 1px solid rgba(200,122,0,0.3); border-radius: 8px;
  cursor: pointer; padding: 8px; flex-shrink: 0;
}
.prism-mobile-menu-btn span { display: block; width: 100%; height: 2px; background: #C87A00; border-radius: 1px; transition: all 0.3s; }
.prism-mobile-menu-btn.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.prism-mobile-menu-btn.active span:nth-child(2){opacity:0;}
.prism-mobile-menu-btn.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* 移动端导航面板 */
.prism-mobile-nav-panel {
  display: none; background: rgba(255,245,230,0.95); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,122,0,0.2); overflow: hidden;
  max-height: 0; transition: max-height 0.4s;
}
.prism-mobile-nav-panel.open { max-height: 360px; }
.prism-mobile-nav-links { display: flex; flex-direction: column; padding: 12px 24px; gap: 4px; }
.prism-mobile-nav-links .prism-nav-link { padding: 12px 16px; border-radius: 10px; font-size: 15px; letter-spacing: .5px; color: #6B6B6B; transition: all .2s; }
.prism-mobile-nav-links .prism-nav-link:hover { background: rgba(200,122,0,.08); color: #C87A00; }

/* ===== 悬浮光轮精选区 ===== */
.prism-wheel-section {
  position: relative;
  max-width: 1600px; margin: 0 auto;
  padding: 24px 24px 0;
  height: 221px;
  overflow: hidden;
}
.prism-wheel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prism-wheel-card {
  position: absolute;
  width: 240px;
  height: 200px;
  border-radius: 24px 24px 40px 40px;
  overflow: hidden;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 0 8px rgba(255,215,0,0.3);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(120%) rotate(15deg) scale(0.8);
}
.prism-wheel-card.active {
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(1);
  z-index: 3;
  box-shadow: 0 0 20px rgba(255,200,0,0.5), 0 0 8px rgba(255,215,0,0.3);
}
.prism-wheel-card.prev {
  opacity: 0.6;
  transform: translateX(-70%) rotate(-5deg) scale(0.85);
  z-index: 1;
}
.prism-wheel-card.next {
  opacity: 0.6;
  transform: translateX(70%) rotate(5deg) scale(0.85);
  z-index: 1;
}
.prism-wheel-image {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.prism-wheel-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.prism-wheel-refraction {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,0,0,0.06), rgba(255,165,0,0.06), rgba(255,255,0,0.06),
    rgba(0,128,0,0.06), rgba(0,0,255,0.06),
    rgba(255,215,0,0.1));
  pointer-events: none;
}
.prism-wheel-content {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prism-wheel-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 600; color: #C87A00;
  font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prism-wheel-tag {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid;
  border-image: linear-gradient(90deg, red, yellow, green, blue) 1;
  background: rgba(255,255,255,0.7);
  color: #C87A00;
  font-size: 10px; font-weight: 600;
  border-radius: 12px;
  width: fit-content;
  letter-spacing: 1px;
}
.prism-wheel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 22px;
  background: linear-gradient(90deg, #C87A00, #FFD700);
  color: #fff; text-decoration: none; border-radius: 20px; font-weight: 600;
  font-size: 13px; letter-spacing: .5px; width: fit-content;
  transition: transform .3s, box-shadow .3s;
}
.prism-wheel-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
}
/* 光轮导航按钮 */
.prism-wheel-prev, .prism-wheel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 40px; height: 40px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,122,0,0.3); border-radius: 50%;
  font-size: 24px; color: #C87A00; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.prism-wheel-prev { left: 12px; }
.prism-wheel-next { right: 12px; }
.prism-wheel-prev:hover, .prism-wheel-next:hover {
  background: #FFD700; color: #fff;
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* ===== 分类棱镜通道 ===== */
.prism-category-section { padding: 20px 24px; max-width: 1600px; margin: 0 auto; }
.prism-category-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: rgba(200,122,0,.33) transparent; padding: 4px 0;
}
.prism-category-scroll::-webkit-scrollbar { height: 6px; }
.prism-category-scroll::-webkit-scrollbar-track { background: transparent; }
.prism-category-scroll::-webkit-scrollbar-thumb { background: rgba(200,122,0,.3); border-radius: 3px; }
.prism-category-card {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  gap: 8px;
  min-width: 160px; height: 90px; border-radius: 14px;
  border: 1px solid rgba(200,122,0,0.2); text-decoration: none;
  transition: all .3s; position: relative; overflow: hidden;
}
.prism-category-card::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,215,0,.02) 8px, rgba(255,215,0,.02) 16px);
  pointer-events: none;
}
.prism-category-card:hover {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255,215,0,.2), inset 0 0 20px rgba(255,215,0,.05);
  transform: translateY(-3px) scale(1.03);
}
.prism-category-emoji { font-size: 20px; position: relative; z-index: 1; }
.prism-category-label {
  font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 2px;
  text-transform: uppercase; position: relative; z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ===== 游戏分区 Section ===== */
.prism-main { position: relative; z-index: 1; max-width: 1600px; margin: 0 auto; padding: 0 0 40px; }
.prism-games-section { padding: 28px 24px 0; }
.prism-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.prism-section-title {
  font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 400;
  font-style: italic; color: #C87A00;
  position: relative; display: inline-block; padding-bottom: 10px;
  text-shadow: 0 1px 2px rgba(200,122,0,0.1);
}
.prism-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px;
  background: linear-gradient(90deg, #C87A00, #FFD700); border-radius: 2px;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}
.prism-section-more {
  color: #C87A00; text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: .5px; transition: all .3s;
}
.prism-section-more:hover { text-shadow: 0 0 10px rgba(200,122,0,0.5); letter-spacing: 1px; }

/* ===== 游戏网格（响应式）===== */
.prism-games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .prism-games-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .prism-games-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (min-width: 1440px) { .prism-games-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===== 棱镜折射游戏卡片 ===== */
.prism-game-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  /* fade-in animation */
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s, border-color 0.3s;
}
.prism-game-card.visible { opacity: 1; transform: translateY(0); }
.prism-game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 0 2px #FFD700, 0 0 20px rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}
.prism-card-link { display: block; text-decoration: none; color: inherit; }

/* 卡片图片区域 — 16:10 */
.prism-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #FFE8CC; }
.prism-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prism-game-card:hover .prism-card-image img { transform: scale(1.06); }
/* 棱镜折射渐变覆盖 */
.prism-card-refraction {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,0,0,0.05), rgba(255,165,0,0.05), rgba(255,255,0,0.05),
    rgba(0,128,0,0.05), rgba(0,0,255,0.05),
    rgba(255,215,0,0.08));
  pointer-events: none;
  z-index: 1;
}
/* 内阴影模拟棱镜边缘 */
.prism-card-image::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 15px rgba(200,122,0,0.12);
  pointer-events: none; z-index: 2;
}

/* 徽章 右上角金色发光 */
.prism-card-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--badge-color, #C87A00); color: #fff;
  padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; z-index: 3;
  box-shadow: 0 0 8px var(--badge-color, #C87A00);
}

/* 卡片信息区 */
.prism-card-info { padding: 12px 14px 14px; }
.prism-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 400; font-style: italic;
  color: #C87A00; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 1px rgba(200,122,0,0.08);
}
.prism-card-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.prism-card-tag {
  padding: 2px 8px; border-radius: 10px; font-size: 10px;
  color: #C87A00; background: rgba(255,255,255,0.6);
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(255,0,0,0.4), rgba(255,165,0,0.4), rgba(0,128,0,0.4), rgba(0,0,255,0.4)) 1;
  letter-spacing: 0.5px; font-weight: 500;
}

/* ===== 广告容器 棱镜风格 ===== */
.prism-ad-container {
  text-align: center; padding: 20px 24px;
  display: flex; flex-direction: column; align-items: center;
  max-width: 1600px; margin: 8px auto 0;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,122,0,0.2);
  border-radius: 12px;
}
.prism-ad-label { color: #999; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

/* ===== 详情页 ===== */
.prism-detail-page { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 28px 24px 48px; }
.prism-detail-back { margin-bottom: 24px; }
.prism-back-btn {
  display: inline-flex; align-items: center; gap: 6px; color: #C87A00;
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: 10px;
  background: rgba(255,248,235,0.9); border: 1px solid rgba(200,122,0,0.2);
  transition: all .3s; letter-spacing: .3px;
}
.prism-back-btn:hover { background: rgba(255,248,235,1); border-color: #C87A00; box-shadow: 0 0 15px rgba(200,122,0,0.2); }

.prism-detail-hero {
  display: flex; gap: 32px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,215,0,0.15); border-radius: 20px; padding: 28px; margin-bottom: 28px;
}
.prism-detail-thumb {
  flex-shrink: 0; width: 340px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15); position: relative;
}
.prism-detail-thumb img { width: 100%; height: auto; display: block; }
.prism-detail-info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.prism-detail-title {
  font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700;
  font-style: italic; color: #C87A00; line-height: 1.2;
}
.prism-detail-desc { color: #6B6B6B; font-size: 15px; line-height: 1.7; }
.prism-play-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 42px;
  background: linear-gradient(90deg, #C87A00, #FFD700);
  color: #fff; border: none; border-radius: 12px; font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer; letter-spacing: .5px;
  width: fit-content; transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.prism-play-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transition: left .5s;
}
.prism-play-btn:hover::before { left: 100%; }
.prism-play-btn:hover { transform: scale(1.04); box-shadow: 0 0 30px rgba(255,215,0,0.5); }

.prism-game-iframe {
  width: 100%; height: 650px; border-radius: 16px; overflow: hidden;
  margin-bottom: 28px; background: #fff; border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 0 20px rgba(255,215,0,0.08);
}
.prism-game-iframe iframe { width: 100%; height: 100%; border: none; }

.prism-related-section { margin-top: 48px; }
.prism-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .prism-related-grid { grid-template-columns: repeat(4, 1fr); } }
.prism-related-card .prism-card-info { padding: 8px 10px 10px; }
.prism-related-card .prism-card-title { font-size: 12px; }

/* ===== 静态页面 ===== */
.prism-static-page { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 28px 24px 48px; }
.prism-static-back { margin-bottom: 24px; }
.prism-static-title {
  font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700;
  font-style: italic; color: #C87A00; margin-bottom: 24px;
}
.prism-static-content {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,215,0,0.15); border-radius: 16px; padding: 36px;
  color: #2C2C2C; line-height: 1.85; font-size: 15px;
}
.prism-static-content p { margin-bottom: 16px; }
.prism-static-content strong { color: #C87A00; }
.prism-static-content ul, .prism-static-content ol { margin: 12px 0 12px 24px; }
.prism-static-content li { margin-bottom: 8px; }
.prism-static-content a { color: #C87A00; text-decoration: underline; }
.prism-static-content h2, .prism-static-content h3, .prism-static-content h4 {
  font-family: 'Rajdhani', sans-serif; font-style: italic; color: #C87A00;
  margin-top: 24px; margin-bottom: 12px;
}

/* ===== 手机端底部导航栏 ===== */
.prism-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 101;
  height: 64px; background: rgba(255,245,230,0.93); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,122,0,0.25); box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  justify-content: space-around; align-items: center;
}
.prism-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: #6B6B6B; text-decoration: none; font-size: 10px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; transition: color .3s;
}
.prism-bottom-nav a:hover, .prism-bottom-nav .prism-bottom-nav-active { color: #C87A00; }
.prism-bottom-nav-icon { font-size: 20px; }

/* ===== 响应式调整 ===== */
@media (max-width: 1024px) {
  .prism-nav-links { display: none; }
  .prism-search-wrap { display: none; }
  .prism-mobile-menu-btn { display: flex; }
  .prism-mobile-nav-panel { display: block; }
  .prism-wheel-card { width: 200px; height: 170px; }
  .prism-detail-hero { flex-direction: column; }
  .prism-detail-thumb { width: 100%; max-width: 420px; }
}

@media (max-width: 640px) {
  .prism-navbar { height: 58px; }
  .prism-logo { font-size: 22px; }
  .prism-category-section { display: none; }
  .prism-bottom-nav { display: flex !important; }
  .prism-main { padding-bottom: 80px; }
  .prism-detail-page { padding-bottom: 80px; }
  .prism-static-page { padding-bottom: 80px; }
  .prism-wheel-section { padding: 16px 16px 0; height: 200px; }
  .prism-wheel-card { width: 260px; height: 175px; }
  .prism-games-section { padding: 20px 16px 0; }
  .prism-section-title { font-size: 18px; }
  .prism-detail-page { padding: 16px; }
  .prism-detail-hero { padding: 16px; }
  .prism-detail-title { font-size: 22px; }
  .prism-game-iframe { height: 450px; }
  .prism-static-page { padding: 16px; }
  .prism-static-content { padding: 20px; }
  .prism-games-grid { gap: 12px; }
  .prism-footer .prism-footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== 自定义滚动条 ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #FFF5E6; }
::-webkit-scrollbar-thumb { background: rgba(200,122,0,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200,122,0,.6); }
::selection { background: rgba(200,122,0,0.2); color: #2C2C2C; }
a { color: inherit; }
