html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; padding-top: var(--header-offset); overflow-x: hidden; color: #FFF6D6; background-color: #0A0A0A; }
:root { --header-offset: 122px; --primary-color: #F2C14E; --secondary-color: #FFD36B; --card-bg: #111111; --text-main: #FFF6D6; --border-color: #3A2A12; --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); }

/* Header Styles */
.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); background-color: #0A0A0A; }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #0A0A0A; 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; text-decoration: none; color: var(--primary-color); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.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; }
.btn { padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; color: #111; text-align: center; white-space: nowrap; transition: all 0.3s ease; background: var(--button-gradient); border: none; cursor: pointer; }
.btn:hover { filter: brightness(1.1); }
.btn-login { color: #111; }
.btn-register { color: #111; }

.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; width: 100%; background-color: #0A0A0A; padding: 0 20px; }

.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #111111; 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 { text-decoration: none; color: var(--text-main); padding: 15px 18px; transition: color 0.3s ease, background-color 0.3s ease; font-size: 15px; white-space: nowrap; }
.nav-link:hover { color: var(--secondary-color); background-color: rgba(255, 255, 255, 0.05); }

.hamburger-menu { display: none; cursor: pointer; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; }
.hamburger-menu span { display: block; height: 3px; width: 100%; background-color: var(--text-main); 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: 998; }
.overlay.active { display: block; }

/* Footer Styles */
.site-footer { background-color: #111111; padding: 40px 0 20px; color: var(--text-main); font-size: 14px; }
.site-footer h3 { color: var(--primary-color); font-size: 16px; margin-bottom: 15px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; padding: 0 20px; }
.footer-logo { font-size: 20px; font-weight: bold; text-decoration: none; color: var(--primary-color); margin-bottom: 15px; display: block; }
.footer-description { line-height: 1.6; color: rgba(255, 255, 255, 0.7); word-wrap: break-word; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--secondary-color); }
.footer-slot-anchor-inner { min-height: 1px; }
.footer-bottom { text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); color: rgba(255, 255, 255, 0.5); }
.footer-bottom p { margin: 0; }

/* Mobile Responsive */
@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; }
  .header-container { width: 100%; max-width: none; padding: 0 15px; position: relative; }
  .hamburger-menu { display: flex; z-index: 1001; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; margin-left: -30px; /* Offset for hamburger */ }
  .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: 0 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: #0A0A0A; }
  .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: 75%; max-width: 300px; height: calc(100% - var(--header-offset)); background-color: #1a1a1a; flex-direction: column; transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999; overflow-y: auto; }
  .main-nav.active { display: flex; transform: translateX(0); }
  .nav-container { flex-direction: column; padding: 20px; width: 100%; max-width: none; height: auto; align-items: flex-start; }
  .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-link:last-child { border-bottom: none; }

  .footer-top-grid { grid-template-columns: 1fr; padding: 0 15px; }
  .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;
  }
}
