html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Arial', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #0D0E12; color: #FFF3E6; padding-top: var(--header-offset); }
body.no-scroll { overflow: hidden; }
:root { --header-offset: 122px; --primary-color: #FF8C1A; --secondary-color: #FFA53A; --card-bg: #17191F; --bg-color: #0D0E12; --text-main: #FFF3E6; --border-color: #A84F0C; --glow-color: #FFB04D; --deep-orange: #D96800; }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); background-color: var(--deep-orange); }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--deep-orange); width: 100%; padding: 0 20px; }
.header-container { box-sizing: border-box; width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--text-main); text-decoration: none; font-size: 24px; font-weight: bold; display: block; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; }

.desktop-nav-buttons { display: flex; gap: 12px; align-items: center; }
.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; width: 100%; background-color: var(--deep-orange); padding: 0 15px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #FFF3E6; font-weight: bold; background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%); transition: transform 0.2s ease, box-shadow 0.2s ease; border: none; cursor: pointer; white-space: nowrap; font-size: 16px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }

.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: var(--primary-color); width: 100%; }
.nav-container { box-sizing: border-box; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; }
.nav-link { color: #FFF3E6; text-decoration: none; padding: 10px 15px; font-size: 16px; font-weight: 500; transition: background-color 0.3s ease; white-space: nowrap; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.1); border-radius: 4px; }

.hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }
.hamburger-icon { display: block; width: 25px; height: 3px; background-color: var(--text-main); position: relative; transition: background-color 0.3s ease; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 100%; height: 3px; background-color: var(--text-main); position: absolute; transition: transform 0.3s ease; }
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { top: 8px; }
.hamburger-menu.active .hamburger-icon { background-color: transparent; }
.hamburger-menu.active .hamburger-icon::before { transform: translateY(8px) rotate(45deg); }
.hamburger-menu.active .hamburger-icon::after { transform: translateY(-8px) rotate(-45deg); }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 999; }
.overlay.active { display: block; }

.site-footer { background-color: var(--card-bg); padding: 40px 20px 20px; color: #FFF3E6; font-size: 14px; line-height: 1.6; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 30px; }
.footer-col h3 { color: var(--secondary-color); font-size: 18px; margin-bottom: 15px; }
.footer-col p { margin-bottom: 15px; overflow-wrap: break-word; word-wrap: break-word; }
.footer-logo { color: var(--text-main); text-decoration: none; font-size: 22px; font-weight: bold; display: block; margin-bottom: 15px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #FFF3E6; text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 20px; text-align: center; font-size: 13px; color: #BBB; max-width: 1200px; margin: 0 auto; background-color: var(--bg-color); }
.footer-slot-anchor-inner { min-height: 1px; }
.footer-slot-anchor { min-height: 1px; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { overflow-x: hidden; }
  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }

  .header-top { min-height: 60px; height: 60px; padding: 0 15px; position: relative; }
  .header-container { max-width: none; justify-content: center; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; margin: 0; }
  .logo img { max-height: 56px !important; }
  .desktop-nav-buttons { display: none !important; }
  .mobile-nav-buttons { display: flex !important; min-height: 48px; align-items: center; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; padding-left: 15px; padding-right: 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: var(--deep-orange); }
  .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 { min-height: 48px; height: auto; flex-direction: column; position: fixed; top: var(--header-offset); left: 0; width: 80%; max-width: 300px; height: calc(100% - var(--header-offset)); background-color: var(--card-bg); transform: translateX(-100%); transition: transform 0.3s ease; padding: 20px 0; align-items: flex-start; overflow-y: auto; display: none; }
  .main-nav.active { transform: translateX(0); display: flex; }
  .nav-container { flex-direction: column; align-items: flex-start; padding: 0 15px; height: auto; width: 100%; max-width: none; }
  .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .nav-link:last-child { border-bottom: none; }

  .hamburger-menu { display: block; }

  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-col { margin-bottom: 20px; }
  .footer-col:last-child { margin-bottom: 0; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
