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

/* Header Styles */
.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.1); background-color: var(--secondary-color); }

.header-top { box-sizing: border-box; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--primary-color); 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(--secondary-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; }

.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(--primary-color); width: 100%; padding: 0 20px; }

.btn { display: inline-block; 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; cursor: pointer; border: none; text-align: center; }
.btn--register { background-color: var(--register-btn-bg); color: var(--btn-text-color); }
.btn--login { background-color: var(--login-btn-bg); color: var(--btn-text-color); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }

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

.main-nav { box-sizing: border-box; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: var(--secondary-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 { display: block; padding: 10px 15px; text-decoration: none; color: #333; font-weight: bold; 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: #f0f0f0; }

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

/* Footer Styles */
.site-footer { background-color: #333; color: #f0f0f0; padding: 40px 20px; font-size: 14px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 40px auto; }
.footer-col h3 { color: var(--secondary-color); font-size: 16px; margin-bottom: 15px; }
.footer-logo { font-size: 24px; font-weight: bold; color: var(--secondary-color); text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { margin-bottom: 15px; line-height: 1.8; word-wrap: break-word; overflow-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-bottom { border-top: 1px solid #444; padding-top: 20px; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { margin: 0; color: #ccc; }

/* Footer Slot Anchors - MUST be visible */
.footer-slot-anchor-inner { min-height: 1px; width: 100%; }

/* Responsive Styles */
@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { overflow-x: hidden; }

  /* Header */
  .header-top { height: 60px !important; padding: 0 15px; }
  .header-container { max-width: none; 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; }
  .desktop-nav-buttons { display: none !important; }
  .hamburger-menu { display: flex; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }

  .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(--primary-color);
  }
  .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 */
    flex-direction: column;
    position: fixed;
    top: var(--header-offset); /* Adjust based on header height */
    left: 0;
    width: 280px;
    height: calc(100% - var(--header-offset));
    background-color: var(--secondary-color);
    transform: translateX(-100%); /* Off-screen by default */
    transition: transform 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px 0;
    height: auto !important; /* Allow height to adjust to content */
    min-height: 0 !important; /* Override fixed height */
  }
  .main-nav.active {
    display: flex; /* Show when active */
    transform: translateX(0);
  }
  .nav-container { flex-direction: column; padding: 0; max-width: none; width: 100%; }
  .nav-link { width: 100%; text-align: left; padding: 12px 20px; border-bottom: 1px solid #eee; }
  .nav-link:last-child { border-bottom: none; }

  .overlay.active { display: block; }

  /* Footer */
  .footer-top-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Mobile Content Protection */
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-footer { padding: 30px 15px; }
  .footer-top-grid { gap: 15px; }
  .footer-col h3 { font-size: 15px; }
  .footer-logo { font-size: 22px; }
  .footer-description { font-size: 13px; }
  .footer-nav li { margin-bottom: 6px; }
  .footer-nav a { font-size: 13px; }
  .footer-bottom { padding-top: 15px; }
  .footer-bottom p { font-size: 12px; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
