/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* 布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 头部样式 */
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(7, 2, 21, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(5, 217, 232, 0.3);
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-container h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.logo-container p {
  font-size: 0.9rem;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

/* 英雄区域 */
.hero {
  height: 500px;
  background-image: linear-gradient(rgba(7, 2, 21, 0.7), rgba(13, 2, 33, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.search-bar {
  display: flex;
  max-width: 450px;
  margin: 1.5rem auto;
  box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  background: rgba(7, 2, 21, 0.7);
  color: #fff;
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-bar button {
  padding: 0.8rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-left: -1px;
  background: var(--neon-blue);
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease;
}

.search-bar button:hover {
  background: #fff;
  transform: scale(1.05);
}

.search-bar input:focus {
  outline: none;
  box-shadow: inset 0 0 5px rgba(5, 217, 232, 0.5);
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* 游戏网格 */
.section-title {
  text-align: center;
  margin: 3rem 0 2rem;
  font-size: 2rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.game-card {
  background: rgba(7, 2, 21, 0.7);
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 450px;
}

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

.game-thumbnail {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.game-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(7, 2, 21, 0.7), rgba(5, 217, 232, 0.1));
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-thumbnail::before {
  opacity: 0.1;
}

.game-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--neon-blue);
}

.game-info p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.category {
  background: rgba(5, 217, 232, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--neon-blue);
}

.rating {
  color: #FFD700;
}

.play-button {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--neon-blue);
  color: #000;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.play-button:hover {
  background: #fff;
  transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .game-card {
    height: 400px;
  }
  
  .game-thumbnail {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .game-grid {
    grid-template-columns: 1fr;
  }
  
  .game-card {
    height: auto;
    max-height: 450px;
  }
}

/* 分类网格 */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

/* 通讯订阅 */
.newsletter {
  background: linear-gradient(135deg, rgba(7, 2, 21, 0.9), rgba(13, 2, 33, 0.9));
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
}

.newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(5, 217, 232, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* 页脚 */
footer {
  background-color: rgba(7, 2, 21, 0.9);
  color: #fff;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  margin-bottom: 0.5rem;
}

.footer-links h3,
.footer-categories h3,
.footer-social h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-categories ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 游戏页面样式 */
.game-page main {
  padding: 2rem;
}

.game-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.game-frame-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
}

.game-frame-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.game-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.game-description h2 {
  margin-bottom: 1rem;
}

.game-description p {
  margin-bottom: 1rem;
}

.game-description ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.game-meta-info {
  background: rgba(7, 2, 21, 0.5);
  padding: 1.5rem;
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 5px;
}

.meta-item {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.meta-label {
  font-weight: bold;
  color: var(--neon-blue);
}

.game-comments {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.game-comments h2 {
  margin-bottom: 1.5rem;
}

.comment-form {
  margin-bottom: 2rem;
}

.comment-form textarea {
  width: 100%;
  padding: 1rem;
  height: 100px;
  background: rgba(7, 2, 21, 0.5);
  border: 1px solid rgba(5, 217, 232, 0.3);
  color: #fff;
  margin-bottom: 1rem;
}

.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(7, 2, 21, 0.5);
  padding: 1rem;
  border-radius: 5px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: bold;
  color: var(--neon-blue);
}

.comment-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.related-games h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    height: auto;
    padding: 4rem 1rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .game-details {
    grid-template-columns: 1fr;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .game-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .game-controls button {
    width: 100%;
    max-width: 300px;
  }
}

/* 分类页面样式 */
.category-header {
  background: linear-gradient(rgba(7, 2, 21, 0.8), rgba(13, 2, 33, 0.8)), url('../images/category-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.category-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
}

.category-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.games-section {
  padding: 2rem 0;
}

.games-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.no-games {
  text-align: center;
  font-size: 1.2rem;
  padding: 3rem;
  background: rgba(7, 2, 21, 0.7);
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 8px;
  color: #fff;
}

/* 分类页面样式 */
.category-header {
  padding: 3rem 2rem;
  background: linear-gradient(rgba(7, 2, 21, 0.8), rgba(13, 2, 33, 0.8)), url('../images/category-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.category-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background: rgba(7, 2, 21, 0.5);
  border: 1px solid rgba(5, 217, 232, 0.3);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group label {
  font-weight: bold;
  color: var(--neon-blue);
}

.filter-group select {
  padding: 0.5rem 1rem;
  background: rgba(7, 2, 21, 0.7);
  border: 1px solid rgba(5, 217, 232, 0.3);
  color: #fff;
  border-radius: 3px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
}

.pagination a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(7, 2, 21, 0.7);
  border: 1px solid rgba(5, 217, 232, 0.3);
  color: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.pagination a:hover {
  background: rgba(5, 217, 232, 0.2);
}

.pagination a.active {
  background: var(--neon-blue);
  color: var(--darker-bg);
}

/* 关于我们页面样式 */
.about-header {
  padding: 3rem 2rem;
  background: linear-gradient(rgba(7, 2, 21, 0.8), rgba(13, 2, 33, 0.8)), url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.about-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  position: relative;
  padding-bottom: 0.5rem;
}

.about-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), transparent);
}

.about-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: rgba(7, 2, 21, 0.5);
  padding: 1.5rem;
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 5px;
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid var(--neon-blue);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--neon-pink);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0;
  list-style: none;
}

.values-list li {
  background: rgba(7, 2, 21, 0.5);
  padding: 1.5rem;
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 5px;
}

.values-list h3 {
  margin-bottom: 1rem;
  color: var(--neon-green);
}

.contact-info {
  background: linear-gradient(135deg, rgba(7, 2, 21, 0.9), rgba(13, 2, 33, 0.9));
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.contact-info h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-method {
  padding: 2rem;
  background: rgba(7, 2, 21, 0.5);
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 5px;
  transition: all 0.3s;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
  color: var(--neon-blue);
}

/* 热门游戏选项卡样式优化 */
.featured-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(5, 217, 232, 0.3);
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  margin: 0 0.5rem;
  font-weight: bold;
}

.tab-button:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--neon-blue);
  transition: width 0.3s;
}

.tab-button:hover {
  color: var(--neon-blue);
}

.tab-button.active {
  color: var(--neon-blue);
}

.tab-button.active:after {
  width: 100%;
  box-shadow: 0 0 10px var(--neon-blue);
}

/* 在小屏幕上优化选项卡显示 */
@media (max-width: 768px) {
  .featured-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .tab-button {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* 确保tab-content容器不会限制游戏网格的宽度 */
.tab-content {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* 确保featured-games部分使用全宽 */
.featured-games {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
}

/* 调整主内容区域 */
main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

/* 移除可能的空白元素 */
.game-grid > *:empty {
  display: none;
}

/* 确保第一个游戏卡片没有特殊样式 */
.game-grid > .game-card:first-child {
  margin-left: 0;
}

/* 只有在JavaScript加载后才应用动画效果 */
.js-enabled .game-card {
  opacity: initial !important;
  transform: initial !important;
}

/* 分享按钮优化 */
.share-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.share-button i {
  color: white;
  font-size: 16px;
}

.share-button:hover {
  background: rgba(5, 217, 232, 0.8);
  transform: scale(1.1);
}

.share-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  background: rgba(7, 2, 21, 0.95);
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 8px;
  padding: 10px;
  width: 180px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 20;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-button:hover .share-dropdown {
  display: flex;
}

.share-dropdown a {
  padding: 8px 15px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.share-dropdown a:hover {
  background: rgba(5, 217, 232, 0.2);
}

.share-dropdown a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.share-dropdown .copy-link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px;
  padding-top: 10px;
}

/* 分享成功提示 */
.share-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 217, 232, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.share-toast.show {
  opacity: 1;
}

/* 确保游戏缩略图有相对定位，以便正确放置分享按钮 */
.game-thumbnail {
  position: relative;
  overflow: hidden;
  height: 140px;
  flex-shrink: 0;
}

/* 游戏详情页分享区域 */
.share-container {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.share-icons {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.share-icon:hover {
  transform: scale(1.2);
}

.share-icon.twitter {
  background: #1DA1F2;
}

.share-icon.facebook {
  background: #4267B2;
}

.share-icon.linkedin {
  background: #0077B5;
}

.share-icon.pinterest {
  background: #E60023;
}

.share-icon.whatsapp {
  background: #25D366;
}

.share-icon.copy-link {
  background: var(--neon-blue);
}

.game-meta-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* 缩略图加载动画 */
@keyframes thumbLoad {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* 标签内容样式 */
.tab-content {
  display: none;
  margin-top: 20px;
}

.tab-content.active {
  display: block;
}

/* 标签按钮样式 */
.tab-button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  outline: none;
}

.tab-button:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s ease;
}

.tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
}

.tab-button:hover:after {
  width: 100%;
}

.tab-button.active {
  color: var(--neon-blue);
}

.tab-button.active:after {
  width: 100%;
  background: var(--neon-blue);
}

/* 确保游戏网格在标签内容中正确显示 */
.tab-content .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

/* 增强搜索结果样式 */
.search-results-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  animation: fadeIn 0.5s ease-in-out;
  background: rgba(7, 2, 21, 0.5);
  border: 1px solid rgba(5, 217, 232, 0.2);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-results-container .section-title {
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  text-shadow: 0 0 5px rgba(5, 217, 232, 0.5);
}

.search-results-container .no-results {
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  background: rgba(7, 2, 21, 0.7);
  border: 1px solid rgba(5, 217, 232, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.search-results-container .game-card {
  animation: cardFadeIn 0.5s ease-in-out;
  animation-fill-mode: both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 为每个卡片添加延迟，创建级联效果 */
.search-results-container .game-card:nth-child(1) { animation-delay: 0.1s; }
.search-results-container .game-card:nth-child(2) { animation-delay: 0.2s; }
.search-results-container .game-card:nth-child(3) { animation-delay: 0.3s; }
.search-results-container .game-card:nth-child(4) { animation-delay: 0.4s; }
.search-results-container .game-card:nth-child(5) { animation-delay: 0.5s; }
.search-results-container .game-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
} 