/* Base Styles */
:root {
  --primary-color: #ff6b35; /* Sprunki orange for main theme */
  --secondary-color: #f8f9fa; /* Light gray background */
  --accent-color: #ff9c00; /* Orange accent */
  --bg-color: #ffffff; /* White background */
  --text-color: #2d3748; /* Dark gray text */
  --container-width: 100%;
  --card-bg: #ffffff; /* White card background */
  --card-hover: #f7fafc; /* Light gray hover */
  --purple-gradient: linear-gradient(135deg, #8b5cf6, #a855f7); /* Purple gradient for buttons */
  --orange-gradient: linear-gradient(135deg, #ff6b35, #ff8c42); /* Orange gradient */
  --light-gradient: linear-gradient(135deg, #ffffff, #f8f9fa); /* Light gradient */
  --section-bg: #f8f9fa; /* Light section background */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.3rem;
}

section {
  padding: 0px 0;
}

/* Header */
header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e2e8f0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* Featured Game (Main Game on Homepage) */
.featured-game {
  margin-bottom: 30px;
}

.featured-game h2 {
  text-align: center;
  margin-bottom: 25px;
}

.main-game-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 900px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.main-game-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-description-main {
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

.game-description-main p {
  margin-bottom: 15px;
}

.game-description-main .btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 12px 25px;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* 2行7个游戏网格 - 根据内容自动调整行数 */
.games-grid-two-columns {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: auto;
  gap: 15px;
  margin-bottom: 0px;
}

/* 2行7个游戏区域的图片容器 - 使用与推荐组件相同的120x120尺寸 */
.games-grid-two-columns .game-card .game-image {
  height: 120px;
  width: 120px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

/* 2行7个游戏区域的图片居中 */
.games-grid-two-columns .game-card .game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

/* 2行7个游戏区域的悬停效果 */
.games-grid-two-columns .game-card:hover .game-image img {
  transform: scale(1.05);
}

/* 2行7个游戏区域的标题样式 - 与推荐组件保持一致 */
.games-grid-two-columns .game-card .game-info h3 {
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* 2行7个游戏区域的分类样式 - 与推荐组件保持一致 */
.games-grid-two-columns .game-card .game-info .game-category {
  padding: 0 10px 10px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  text-align: center;
  margin: 0;
}

/* 单列游戏分类 */
.categories-grid-single {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: 300px;
}

/* 游戏分类导航区域 - 100%宽度 */
.game-categories {
  width: 100%;
  background: var(--card-bg);

}

.game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--card-hover);
}

.game-image {
  height: 200px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-info {
  padding: 20px;
}

.game-category {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.game-description {
  font-size: 0.9rem;
  color: #64748b;
}

/* Game Detail Page */
.game-detail {
  padding: 20px 0 40px;
}

.game-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-controls {
  margin-bottom: 30px;
  text-align: right;
}

.btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-left: 10px;
}

.btn:hover {
  background-color: #e22;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #444;
}

.game-info-container {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.category-tag, .tag, .audience-tag {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.category-tag {
  background-color: var(--primary-color);
}

.tag {
  background-color: var(--accent-color);
  color: black;
}

.audience-tag {
  background-color: #444;
}

.game-description, .game-instructions {
  margin-bottom: 25px;
}

.target-audience {
  margin-top: 20px;
}

.more-games h2 {
  margin-top: 40px;
}

/* Page Content Styles (About, Privacy, Terms) */
.page-content {
  max-width: 900px;
  margin: 40px auto;
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-content h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  color: var(--accent-color);
}

.page-content p, .page-content li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-content strong {
  color: var(--accent-color);
}

/* About Page Specific */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.game-types {
  list-style: none;
  padding-left: 0;
}

.game-types li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-types li:last-child {
  border-bottom: none;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(255, 58, 58, 0.1);
  border-radius: 8px;
}

/* Policy Pages Specific */
.policy-intro, .terms-intro {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-info {
  margin: 20px 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.policy-footer, .terms-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

/* Loading Indicator */
.loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.spinner {
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 5px solid var(--primary-color);
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  padding: 30px 0;
  color: #888;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 20px;
  color: #aaa;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Hidden Backlinks */
.hidden-backlinks {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.footer-badges {
  width: 100%;
  text-align: center;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.turbo0-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.turbo0-badge:hover {
  transform: scale(1.05);
  opacity: 1;
}

.turbo0-badge img {
  height: 54px;
  width: auto;
  display: block;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-badges {
    margin: 15px 0;
    padding: 10px 0;
  }
  
  .turbo0-badge img {
    height: 45px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 20px;
  }
  
  nav ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .game-meta {
    grid-template-columns: 1fr;
  }
  
  .game-controls {
    text-align: center;
  }
  
  .btn {
    margin: 5px;
  }
  
  .page-content {
    padding: 25px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 15px;
    justify-content: center;
  }
  
  .footer-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid-two-columns {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .page-content {
    padding: 20px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 20px 0;
  /* padding: 15px 20px; */
  background: var(--dark-gradient);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}

.breadcrumbs a svg {
  width: 16px;
  height: 16px;
}

.breadcrumb-separator {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0 4px;
}

.breadcrumb-current {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 6px;
}

.breadcrumb-current svg {
  width: 16px;
  height: 16px;
}

/* FAQ Styles */
.faq-section {
  margin: 20px 0 40px;
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 20px;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: 20px;
  background-color: rgba(255, 58, 58, 0.1);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(255, 58, 58, 0.2);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-category {
  padding: 8px 15px;
  background-color: var(--card-bg);
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.faq-category:hover, .faq-category.active {
  background-color: var(--primary-color);
  color: white;
}

.game-seo-article {
  margin: 2rem 0;
}

.game-seo-article p {
  text-indent: 2em;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.game-seo-article ul,
.game-seo-article ol {
  padding-left: 2em;
  margin-bottom: 1rem;
}

/* ===== SPRUNKI STYLE LAYOUTS ===== */

/* 游戏分类导航区域 */
.game-categories {
  background: var(--dark-gradient);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.category-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange-gradient);
  opacity: 0.1;
  transition: left 0.3s ease;
}

.category-card:hover::before {
  left: 0;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  color: var(--accent-color);
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

/* Sprunki风格的主游戏展示区域 */
.main-game-showcase {
  padding: 0 0px 0px 0px;
  background: var(--dark-gradient);
  min-height: 600px;
  width: 100%;
}

.showcase-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* 游戏信息卡片 - 按照图片样式 */
.game-info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
}

.game-info-card::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
  animation: float 8s ease-in-out infinite;
}

.game-thumbnail {
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.game-preview-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.game-preview-image:hover {
  transform: scale(1.05);
}

.game-info-main {
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.game-info-main h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.developer-info {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
}

/* 游戏警告样式 */
.game-warning {
  margin-top: 20px;
  z-index: 2;
  position: relative;
}

.game-warning p {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* 游戏下方统计信息 */
.game-stats-below {
  margin-top: 20px;
  padding: 20px 0;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.stats-row .play-count {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.stats-row .game-actions {
  display: flex;
  gap: 15px;
}

.stats-row .action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stats-row .action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.stats-row .action-btn svg {
  width: 16px;
  height: 16px;
}

.main-game-area {
  background: var(--orange-gradient);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-game-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.game-character {
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.character-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.character-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.character-svg {
  width: 80px;
  height: 80px;
}

.character-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.play-count {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.play-button-container {
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.play-now-btn {
  background: var(--purple-gradient);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(139, 92, 246, 0.6);
}

.play-now-btn svg {
  width: 24px;
  height: 24px;
}

.game-warning {
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.game-warning p {
  color: #ff4444;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
  background: rgba(255, 68, 68, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #ff4444;
}

.game-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.action-btn svg {
  width: 20px;
  height: 20px;
}

/* 右侧游戏推荐网格 */
.recommended-games {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 0px;
  height: fit-content;
  position: relative;
}

.ad-label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.recommended-games h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.games-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-game-card {
  background: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mini-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* 专门针对推荐游戏区域的图片容器居中 - 确保120x120尺寸 */
.main-game-showcase .recommended-games .games-mini-grid .mini-game-card .mini-game-image {
  height: 120px;
  width: 120px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.mini-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.mini-game-card:hover .mini-game-image img {
  transform: scale(1.05);
}

/* 专门针对推荐游戏区域的图片居中 - 确保在120x120容器中居中 */
.main-game-showcase .recommended-games .games-mini-grid .mini-game-card .mini-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

.main-game-showcase .recommended-games .games-mini-grid .mini-game-card:hover .mini-game-image img {
  transform: scale(1.05);
}

.mini-game-title {
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  line-height: 1.3;
}

/* 社交分享区域 */
.social-share-section {
  padding: 30px 0;
  background: var(--secondary-color);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.email {
  background: #ea4335;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.reddit {
  background: #ff4500;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .games-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .category-card {
    padding: 20px 15px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .main-game-area {
    padding: 30px 20px;
    min-height: 400px;
  }
  
  .character-avatar {
    width: 100px;
    height: 100px;
  }
  
  .character-svg {
    width: 70px;
    height: 70px;
  }
  
  .character-info h2 {
    font-size: 2rem;
  }
  
  .play-now-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .games-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .social-buttons {
    gap: 10px;
  }
  
  .social-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main-game-area {
    padding: 20px 15px;
  }
  
  .character-info h2 {
    font-size: 1.5rem;
  }
  
  .play-now-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .game-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .games-mini-grid {
    grid-template-columns: 1fr;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 200px;
    justify-content: center;
  }
}

/* ===== GAME DETAIL PAGE STYLES ===== */

/* 游戏详情头部 */
.game-detail-header {
  background: var(--orange-gradient);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.game-detail-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.game-character-large {
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 2;
  position: relative;
}

.character-avatar-large {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.character-avatar-large:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.character-svg-large {
  width: 70px;
  height: 70px;
}

.game-title-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  line-height: 1.2;
}

.game-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.game-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.stat-item svg {
  width: 20px;
  height: 20px;
}

.game-actions-header {
  display: flex;
  gap: 15px;
  z-index: 2;
  position: relative;
}

.play-now-btn-large {
  background: var(--purple-gradient);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-now-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(139, 92, 246, 0.6);
}

.play-now-btn-large svg {
  width: 20px;
  height: 20px;
}

.action-btn-header {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.action-btn-header:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.action-btn-header svg {
  width: 18px;
  height: 18px;
}

/* 游戏展示区域 */
.game-showcase-section {
  margin-bottom: 40px;
}

/* 游戏详情内容布局 */
.game-detail-content {
  margin-top: 40px;
}

.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-sidebar {
  position: sticky;
  top: 100px;
}

/* 侧边栏样式 */
.game-stats-sidebar,
.popular-games-sidebar,
.quick-categories-sidebar {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.game-stats-sidebar h3,
.popular-games-sidebar h3,
.quick-categories-sidebar h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: var(--secondary-color);
  border-radius: 10px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.popular-games-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-game-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.popular-game-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.popular-game-image {
  width: 60px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.popular-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-game-info h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.popular-game-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.quick-categories-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--secondary-color);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-category-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.quick-category-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.quick-category-link span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* 游戏详情文章区域 */
.game-article-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.article-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 30px 0 20px 0;
  font-weight: 700;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-color);
}

.game-screenshot {
  margin: 30px 0;
  text-align: center;
}

.game-screenshot img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-features {
  margin: 30px 0;
}

.game-features h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 1.05rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.game-tips {
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.game-tips h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  padding: 8px 0;
  color: var(--text-color);
  position: relative;
  padding-left: 20px;
}

.tips-list li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.game-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.benefit-card h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0;
}

.game-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  border-left: 4px solid #ffc107;
}

.game-disclaimer p {
  margin: 0;
  color: var(--text-color);
  font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .game-detail-header {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .game-character-large {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .character-avatar-large {
    width: 80px;
    height: 80px;
  }
  
  .character-svg-large {
    width: 60px;
    height: 60px;
  }
  
  .game-title-section h1 {
    font-size: 2rem;
  }
  
  .game-stats {
    justify-content: center;
  }
  
  .game-actions-header {
    flex-direction: column;
    width: 100%;
  }
  
  .play-now-btn-large,
  .action-btn-header {
    width: 100%;
    justify-content: center;
  }
  
  .game-article-section {
    padding: 25px;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .game-benefits {
    grid-template-columns: 1fr;
  }
  
  .content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-sidebar {
    position: static;
  }
}

@media (max-width: 480px) {
  .game-detail-header {
    padding: 20px 15px;
  }
  
  .game-title-section h1 {
    font-size: 1.5rem;
  }
  
  .game-subtitle {
    font-size: 1rem;
  }
  
  .game-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .game-article-section {
    padding: 20px;
  }
  
  .article-content h2 {
    font-size: 1.3rem;
  }
  
  .article-content p {
    font-size: 1rem;
  }
}

/* ===== RATING & COMMENT SYSTEM STYLES ===== */

.rating-comment-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 评分区域 */
.rating-section {
  margin-bottom: 40px;
}

.rating-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.rating-display {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.rating-score {
  text-align: center;
}

.score-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.stars-display {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stars-display .star {
  width: 30px;
  height: 30px;
  color: #ffc107;
}

.stars-display .star.partial {
  color: #ddd;
}

.rating-text {
  color: var(--text-color);
  font-size: 1rem;
  opacity: 0.8;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-label {
  width: 30px;
  color: var(--text-color);
  font-weight: 600;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-count {
  width: 60px;
  text-align: right;
  color: var(--text-color);
  font-size: 0.9rem;
}

/* 评论区域 */
.comments-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.comment-count {
  color: var(--accent-color);
  font-weight: 600;
}

.comment-sort select {
  background: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.comment-sort select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* 评论列表 */
.comments-list {
  margin-bottom: 30px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-author {
  font-weight: 600;
  color: var(--text-color);
}

.comment-rating {
  display: flex;
  gap: 2px;
}

.comment-rating .star {
  width: 16px;
  height: 16px;
  color: #ffc107;
}

.comment-rating .star.empty {
  color: #ddd;
}

.comment-time {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.comment-text {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.comment-actions {
  display: flex;
  gap: 15px;
}

.comment-action-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.comment-action-btn:hover {
  color: var(--primary-color);
}

.comment-action-btn svg {
  width: 16px;
  height: 16px;
}

.load-more-btn {
  background: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.load-more-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* 评论表单 */
.comment-form-section {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  border: 2px solid #e2e8f0;
}

.comment-form-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--card-bg);
  color: var(--text-color);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  cursor: pointer;
  transition: color 0.3s ease;
}

.rating-input label svg {
  width: 30px;
  height: 30px;
  color: #ddd;
}

.rating-input input[type="radio"]:checked ~ label svg,
.rating-input label:hover svg {
  color: #ffc107;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

.submit-btn {
  background: var(--purple-gradient);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .rating-display {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .rating-score {
    text-align: left;
  }
  
  .score-number {
    font-size: 3rem;
  }
  
  .comments-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .comment-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .comment-form-section {
    padding: 20px;
  }
  
  .rating-input label svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .rating-comment-section {
    padding: 25px;
  }
  
  .score-number {
    font-size: 2.5rem;
  }
  
  .stars-display .star {
    width: 25px;
    height: 25px;
  }
  
  .comment-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .comment-form-section {
    padding: 15px;
  }
  
  .rating-input label svg {
    width: 20px;
    height: 20px;
  }
} 