html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; background-color: #0A0A0A; color: #FFF6D6; padding-top: var(--header-offset); overflow-x: hidden; }

:root { --header-offset: 122px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #111111; width: 100%; }
.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; padding: 0 20px; }

.logo { font-size: 24px; font-weight: bold; color: #FFF6D6; text-decoration: none; display: flex; align-items: center; height: 100%; white-space: nowrap; }
.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; background-color: #111111; padding: 0 20px; }

.btn { background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); color: #3A2A12; text-decoration: none; padding: 10px 20px; border-radius: 5px; font-weight: bold; transition: transform 0.2s ease, box-shadow 0.2s ease; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
.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: #0A0A0A; 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: #FFF6D6; text-decoration: none; padding: 0 15px; font-size: 16px; font-weight: bold; transition: color 0.3s ease; white-space: nowrap; }
.nav-link:hover { color: #F2C14E; }

.hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; padding: 5px; margin-right: 15px; }
.hamburger-menu span { display: block; width: 100%; height: 3px; background-color: #FFF6D6; 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); }

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

.site-footer { background-color: #111111; padding: 40px 20px 20px; color: #FFF6D6; font-size: 14px; text-align: left; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; }
.footer-col h3 { color: #F2C14E; font-size: 18px; margin-bottom: 15px; }
.footer-logo { font-size: 22px; font-weight: bold; color: #FFF6D6; text-decoration: none; margin-bottom: 15px; display: block; }
.footer-description { line-height: 1.6; color: #FFF6D6; overflow-wrap: break-word; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #FFF6D6; text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: #F2C14E; }

.footer-slot-anchor, .footer-slot-anchor-inner { min-height: 1px; }
.footer-mid-slots { max-width: 1200px; margin: 0 auto 20px; }
.footer-mid-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 10px; }

.footer-bottom { border-top: 1px solid #3A2A12; padding-top: 20px; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { margin: 0; color: #FFF6D6; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { padding-top: var(--header-offset); }

  .header-top { min-height: 60px !important; height: 60px !important; }
  .header-container { padding: 0 15px; justify-content: space-between; width: 100%; max-width: none; }

  .hamburger-menu { display: flex; }

  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; margin-left: -30px; /* Offset hamburger width */ }
  .logo img { max-height: 56px !important; }

  .desktop-nav-buttons { display: none !important; }
  .mobile-nav-buttons { display: flex !important; 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: #111111; min-height: 48px; }
  .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 !important; height: 100vh; width: 280px; position: fixed; top: var(--header-offset); left: 0; background-color: #0A0A0A; flex-direction: column; padding: 20px 0; transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1001; display: none; overflow-y: auto; }
  .main-nav.active { transform: translateX(0); display: flex; }
  .nav-container { flex-direction: column; align-items: flex-start; padding: 0 20px; height: auto; width: 100%; max-width: none; }
  .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 15px; }
  .nav-link:last-child { border-bottom: none; }

  .footer-top-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h3 { margin-top: 20px; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-mid-row { grid-template-columns: 1fr; }

  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }
  body { overflow-x: hidden; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
