body { font-family: Arial, sans-serif; margin: 0; padding-top: var(--header-offset); line-height: 1.6; color: #333333; overflow-x: hidden; } a { text-decoration: none; color: inherit; } :root { --primary-color: #26A9E0; --secondary-color: #FFFFFF; --login-button-color: #EA7C07; --header-top-bg: #1A7FB0; --main-nav-bg: var(--primary-color); --text-on-dark: var(--secondary-color); --text-on-light: #333333; --header-offset: 115px; } @media (max-width: 768px) { :root { --header-offset: 120px; } } .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); min-height: 115px; background-color: var(--secondary-color); } .header-top { background-color: var(--header-top-bg); color: var(--text-on-dark); padding: 15px 0; display: flex; align-items: center; position: relative; height: 65px; box-sizing: border-box; } .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 30px; width: 100%; } .logo { font-size: 24px; font-weight: bold; color: var(--text-on-dark); text-transform: uppercase; letter-spacing: 1px; display: block; } .desktop-nav-buttons { display: flex; gap: 10px; margin-left: auto; } .btn { display: inline-block; padding: 10px 20px; border-radius: 5px; font-weight: bold; text-align: center; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; text-decoration: none; } .btn-register { background-color: var(--primary-color); color: var(--secondary-color); } .btn-register:hover { background-color: #1a8ad0; transform: translateY(-2px); } .btn-login { background-color: var(--login-button-color); color: var(--secondary-color); } .btn-login:hover { background-color: #c46400; transform: translateY(-2px); } .main-nav { background-color: var(--main-nav-bg); color: var(--text-on-dark); padding: 10px 0; display: flex; flex-direction: row; justify-content: center; align-items: center; height: 50px; box-sizing: border-box; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 25px; padding: 0 30px; width: 100%; } .nav-link { color: var(--text-on-dark); font-weight: bold; padding: 5px 0; transition: color 0.3s ease; white-space: nowrap; } .nav-link:hover { color: rgba(255, 255, 255, 0.8); } .hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; z-index: 1001; position: relative; } .hamburger-menu span { display: block; width: 100%; height: 3px; background-color: var(--text-on-dark); border-radius: 3px; transition: all 0.3s ease; } .hamburger-menu.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); } .mobile-nav-buttons { display: none !important; background-color: var(--header-top-bg); padding: 10px 15px; width: 100%; box-sizing: border-box; overflow: hidden; height: 60px; } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } .mobile-spacer { display: none; } .site-footer { background-color: #222222; color: #cccccc; padding: 40px 0 20px; font-size: 14px; } .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding: 0 30px; } .footer-col { flex: 1; min-width: 250px; } .footer-col h3 { color: var(--primary-color); font-size: 18px; margin-bottom: 15px; } .footer-col p { line-height: 1.8; } .footer-col ul { list-style: none; padding: 0; margin: 0; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #cccccc; transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--primary-color); } .footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333333; color: #999999; } @media (max-width: 768px) { .site-header { min-height: 120px; } .header-top { height: 60px; padding: 0 15px; position: relative; } .header-container { padding: 0; width: 100%; max-width: none; justify-content: space-between; } .hamburger-menu { display: flex; order: 0; } .logo { order: 1; flex-grow: 1; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 20px; margin: 0; } .mobile-spacer { display: block; order: 2; width: 30px; height: 25px; } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex !important; width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; justify-content: center; height: 60px; } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); box-sizing: border-box; padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; } .main-nav { display: none; position: fixed; top: var(--header-offset); left: 0; width: 70%; height: calc(100% - var(--header-offset)); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 20px 0; background-color: var(--main-nav-bg); box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2); transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto; box-sizing: border-box; } .main-nav.active { display: flex; transform: translateX(0); } .nav-container { flex-direction: column; gap: 15px; padding: 0 20px; width: 100%; max-width: none; align-items: flex-start; } .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } .mobile-menu-overlay { top: 0; left: 0; width: 100%; height: 100%; } .footer-container { flex-direction: column; gap: 20px; padding: 0 15px; } .footer-col { min-width: unset; width: 100%; text-align: center; } .footer-col ul { text-align: center; } .page-content img { max-width: 100% !important; height: auto !important; display: block; } .page-content { overflow-x: hidden; max-width: 100%; } body { overflow-x: hidden; } } body.no-scroll { overflow: hidden; }
/* 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;
  }
}
