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); overflow-x: hidden; }
:root { --header-offset: 122px; --primary-color: #FF8C1A; --auxiliary-color: #FFA53A; --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); --card-bg: #17191F; --site-bg: #0D0E12; --text-main: #FFF3E6; --border-color: #A84F0C; --glow-color: #FFB04D; --deep-orange: #D96800; }

/* Header Styles */
.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(--site-bg); }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--site-bg); 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 { font-size: 28px; font-weight: bold; color: var(--primary-color); text-decoration: none; display: block; white-space: nowrap; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; }

.hamburger-menu { display: none; cursor: pointer; background: none; border: none; padding: 10px; position: relative; z-index: 1001; }
.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: 25px; height: 3px; background-color: var(--text-main); position: absolute; left: 0; transition: transform 0.3s ease, top 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); }

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

.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: var(--card-bg); 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: var(--text-main); 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, .nav-link.active { color: var(--primary-color); background-color: rgba(255, 255, 255, 0.1); border-radius: 5px; }

.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; }

/* Buttons */
.btn { text-decoration: none; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 15px; font-weight: bold; text-align: center; white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease; color: var(--text-main); }
.btn-primary { background: var(--button-gradient); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }
.btn-secondary { background-color: var(--deep-orange); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }

/* Footer Styles */
.site-footer { background-color: var(--site-bg); padding: 40px 20px 20px; color: var(--text-main); font-size: 14px; text-align: center; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; text-align: left; }
.footer-col { padding: 10px 0; }
.footer-logo { font-size: 24px; font-weight: bold; color: var(--primary-color); text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { line-height: 1.6; color: rgba(255, 243, 230, 0.8); word-wrap: break-word; overflow-wrap: break-word; }
.footer-title { font-size: 18px; color: var(--primary-color); margin-bottom: 20px; position: relative; }
.footer-title::after { content: ''; display: block; width: 40px; height: 2px; background-color: var(--primary-color); margin-top: 8px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255, 243, 230, 0.8); 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; margin-top: 30px; font-size: 13px; color: rgba(255, 243, 230, 0.6); }
.footer-bottom p { margin: 0; }
.footer-slot-anchor { display: block; height: 0; overflow: hidden; visibility: hidden; }
.footer-slot-anchor-inner { display: block; height: 0; overflow: hidden; visibility: hidden; }

/* Mobile Styles */
@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 !important; height: 60px !important; padding: 0 15px; }
  .header-container { padding: 0; position: relative; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; }
  .logo img { max-height: 56px !important; }
  .hamburger-menu { display: block; position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--text-main); }

  .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: 0 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: var(--site-bg); }
  .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; flex-direction: column; position: fixed; top: var(--header-offset); left: 0; width: 70%; max-width: 300px; height: calc(100% - var(--header-offset)); background-color: var(--card-bg); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; overflow-y: auto; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5); }
  .main-nav.active { display: flex; transform: translateX(0); }
  .nav-container { flex-direction: column; align-items: flex-start; padding: 20px 0; width: 100%; height: auto; }
  .nav-link { width: 100%; padding: 12px 20px; border-bottom: 1px solid rgba(255, 243, 230, 0.1); }
  .nav-link:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col { margin-bottom: 20px; }
  .footer-title::after { margin: 8px auto 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;
  }
}
