html, body { margin: 0; padding: 0; height: 100%; font-family: 'Arial', sans-serif; color: #FFFFFF; background-color: #FFFFFF; } :root { --header-offset: 110px; } @media (max-width: 768px) { :root { --header-offset: 110px; } } body { padding-top: var(--header-offset); } .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; } .header-top { background-color: #000000; min-height: 60px; display: flex; align-items: center; } .header-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { color: #FCBC45; font-size: 28px; font-weight: bold; text-decoration: none; text-transform: uppercase; } .desktop-nav-buttons { display: flex; gap: 12px; } .btn { padding: 8px 16px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, color 0.3s ease; white-space: nowrap; } .btn:hover { opacity: 0.9; } .btn-login { background-color: #FCBC45; color: #000000; } .btn-register { background-color: #FFFFFF; color: #000000; } .main-nav { background-color: #1a1a1a; min-height: 50px; display: flex; align-items: center; } .nav-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: center; align-items: center; padding: 0 20px; } .nav-link { color: #FFFFFF; text-decoration: none; padding: 10px 15px; font-size: 16px; transition: color 0.3s ease, background-color 0.3s ease; white-space: nowrap; } .nav-link:hover { color: #FCBC45; } .hamburger-menu { display: none; } .mobile-nav-buttons, .mobile-menu-overlay { display: none; } .site-footer { background-color: #000000; color: #FFFFFF; padding: 40px 20px; font-size: 14px; line-height: 1.6; } .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .footer-col h3 { color: #FCBC45; font-size: 18px; margin-bottom: 15px; } .footer-col p { margin: 0 0 10px 0; } .footer-logo { color: #FCBC45; font-size: 24px; font-weight: bold; text-decoration: none; text-transform: uppercase; margin-bottom: 15px; display: block; } .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-nav li { margin-bottom: 8px; } .footer-nav a { color: #FFFFFF; text-decoration: none; transition: color 0.3s ease; } .footer-nav a:hover { color: #FCBC45; } @media (max-width: 768px) { .header-container { padding: 0 15px; width: 100%; max-width: none; } .desktop-nav-buttons { display: none; } .hamburger-menu { display: block; background: none; border: none; font-size: 30px; cursor: pointer; color: #FFFFFF; padding: 0; z-index: 1001; order: 1; } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; order: 2; } .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); flex-direction: column; justify-content: flex-start; align-items: center; padding-top: var(--header-offset); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .nav-container { flex-direction: column; padding: 20px 15px; width: 100%; max-width: none; } .nav-link { width: 100%; text-align: center; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } .mobile-nav-buttons { display: flex; justify-content: center; gap: 10px; width: 100%; position: fixed; top: 60px; left: 0; background-color: #000000; padding: 10px 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.3); z-index: 990; } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 999; } .mobile-menu-overlay.active { display: block; } body.no-scroll { overflow: hidden; } .page-content img { max-width: 100% !important; height: auto !important; display: block; } .page-content { overflow-x: hidden; max-width: 100%; } body { overflow-x: hidden; } .footer-container { grid-template-columns: 1fr; text-align: center; } .footer-col { margin-bottom: 20px; } .footer-col:last-child { margin-bottom: 0; } .footer-nav li { display: inline-block; margin: 0 10px 8px 0; } }
/* Payment Methods 图标容器样式 */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}

.payment-icons img,
.payment-icon {
  max-height: 50px;
  height: auto;
  width: auto;
  display: block;
}

/* Game Providers 图标容器样式 */
.game-providers-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.game-providers-icons img,
.game-provider-icon {
  max-height: 50px;
  height: auto;
  width: auto;
  display: block;
}

/* Social Media 图标容器样式 */
.social-media-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.social-media-icons img,
.social-media-icon {
  max-height: 50px;
  height: auto;
  width: auto;
  display: block;
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@media (max-width: 768px) {
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
}
