html { scroll-behavior: smooth; font-family: sans-serif; line-height: 1.6; }
body { margin: 0; padding-top: var(--header-offset); color: #333; background-color: #FFFFFF; overflow-x: hidden; }
:root { --header-offset: 122px; --primary-color: #017439; --secondary-color: #FFFFFF; --btn-register-bg: #C30808; --btn-login-bg: #C30808; --btn-text-color: #FFFF00; }

.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); background-color: var(--secondary-color); }
.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #005026; width: 100%; color: var(--secondary-color); }
.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 25px; }
.logo { font-size: 28px; font-weight: bold; color: var(--secondary-color); text-decoration: none; display: flex; align-items: center; height: 100%; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; }
.desktop-nav-buttons { display: flex; gap: 10px; }
.btn { padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; white-space: nowrap; text-align: center; display: inline-flex; align-items: center; justify-content: center;}
.btn-register { background-color: var(--btn-register-bg); color: var(--btn-text-color); border: 1px solid var(--btn-register-bg); }
.btn-register:hover { background-color: #a30606; transform: translateY(-2px); }
.btn-login { background-color: var(--btn-login-bg); color: var(--btn-text-color); border: 1px solid var(--btn-login-bg); }
.btn-login:hover { background-color: #a30606; transform: translateY(-2px); }

.hamburger-menu { display: none; cursor: pointer; width: 30px; height: 24px; position: relative; flex-direction: column; justify-content: space-between; z-index: 1001; background: none; border: none; padding: 0; }
.hamburger-menu span { display: block; width: 100%; height: 3px; background-color: var(--secondary-color); transition: all 0.3s ease; border-radius: 2px; }
.hamburger-menu.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

.mobile-nav-buttons { display: none; background-color: #005026; /* Same as header-top for consistency */ }

.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; gap: 20px; }
.nav-link { color: var(--secondary-color); text-decoration: none; font-weight: bold; padding: 8px 0; transition: color 0.3s ease; white-space: nowrap; }
.nav-link:hover { color: #e0e0e0; }

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

/* Footer Styles */
.site-footer { background-color: #1a1a1a; color: #f0f0f0; padding: 40px 20px 20px; font-size: 14px; }
.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(--primary-color); font-size: 16px; margin-bottom: 15px; }
.footer-logo { font-size: 24px; font-weight: bold; color: var(--primary-color); text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { margin-bottom: 15px; line-height: 1.8; overflow-wrap: break-word; word-wrap: break-word; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #f0f0f0; text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--primary-color); }
.footer-slot-anchor-inner { min-height: 10px; /* Placeholder for dynamic content */ margin-top: 15px; }
.footer-dynamic-col .footer-slot-anchor-inner { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 5px; }
.footer-dynamic-row { max-width: 1200px; margin: 20px auto; }
.footer-dynamic-row .footer-slot-anchor-inner { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 8px; width: 100%; }
.footer-bottom { max-width: 1200px; margin: 20px auto 0; text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #aaa; }
.footer-bottom p { margin: 0; }

/* Media Queries for Mobile */
@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 { padding: 0 15px; width: 100%; max-width: none; position: relative; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; position: absolute; left: 50%; transform: translateX(-50%); max-width: calc(100% - 100px); }
  .logo img { max-height: 56px !important; }
  .desktop-nav-buttons { display: none; }
  .hamburger-menu { display: flex; position: relative; z-index: 1001; }

  .mobile-nav-buttons {
    display: flex !important;
    min-height: 48px;
    align-items: 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: #005026; /* Match header-top background */
  }
  .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; /* Hidden by default on mobile */
    position: fixed;
    top: var(--header-offset);
    left: 0;
    width: 280px;
    height: calc(100% - var(--header-offset));
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .main-nav.active { display: flex; transform: translateX(0); }
  .nav-container { flex-direction: column; align-items: flex-start; gap: 15px; padding: 0; width: 100%; max-width: none; }
  .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-link:last-child { border-bottom: none; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-col { text-align: center; }
  .footer-col h3 { text-align: center; }
  .footer-nav { text-align: center; }
  .footer-nav li { display: inline-block; margin: 0 8px 8px 0; }
  .footer-nav li:last-child { margin-right: 0; }
  .footer-logo { text-align: center; }
  .footer-description { text-align: center; }
  .footer-dynamic-col .footer-slot-anchor-inner { justify-content: center; }
  .footer-dynamic-row .footer-slot-anchor-inner { justify-content: center; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
