html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; line-height: 1.6; color: #333333; padding-top: var(--header-offset); overflow-x: hidden; }
:root { --header-offset: 122px; --primary-color: #E53935; --accent-color: #FF5A4F; --text-main-color: #333333; --card-bg-color: #FFFFFF; --background-color: #F5F7FA; --border-color: #E0E0E0; }

/* 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(--card-bg-color); }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #B71C1C; color: #FFFFFF; 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: #FFFFFF; text-decoration: none; display: flex; align-items: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 100%; 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(--background-color); border-bottom: 1px solid var(--border-color); }

.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; }
.nav-link { color: #FFFFFF; text-decoration: none; padding: 8px 15px; font-size: 15px; white-space: nowrap; transition: background-color 0.3s ease; border-radius: 4px; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.2); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; border: none; }
.btn-primary { background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); color: #FFFFFF; box-shadow: 0 4px 8px rgba(229, 57, 53, 0.3); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 12px rgba(229, 57, 53, 0.4); }
.btn-secondary { background-color: #FFFFFF; color: var(--primary-color); border: 2px solid var(--primary-color); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn-secondary:hover { background-color: var(--primary-color); color: #FFFFFF; }

.hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; padding: 5px; background: none; border: none; z-index: 1001; }
.hamburger-menu .bar { width: 100%; height: 3px; background-color: #FFFFFF; border-radius: 2px; transition: all 0.3s ease; }
.hamburger-menu.active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .bar: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.5); z-index: 999; }
.overlay.active { display: block; }

/* Footer Styles */
.site-footer { background-color: #333333; color: #FFFFFF; padding: 40px 0 20px; font-size: 14px; line-height: 1.8; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 20px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-col h3 { color: var(--accent-color); font-size: 16px; margin-bottom: 15px; }
.footer-logo { font-size: 22px; font-weight: bold; color: #FFFFFF; text-decoration: none; margin-bottom: 15px; display: block; }
.footer-description { margin-bottom: 20px; color: rgba(255, 255, 255, 0.7); 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: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; margin-top: 20px; padding: 10px 20px; color: rgba(255, 255, 255, 0.5); }
.footer-bottom p { margin: 0; }
.footer-slot-anchor-inner { min-height: 1px; }

/* Responsive 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; }
  .header-container { padding: 0 15px; max-width: none; width: 100%; position: relative; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; max-width: calc(100% - 100px); }
  .logo img { max-height: 56px !important; display: block !important; width: auto; height: auto; }
  .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;
    width: 100%; max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px; padding-right: 15px;
    overflow: hidden;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .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: auto !important;
    height: auto !important;
    display: none; /* Hidden by default */
    flex-direction: column;
    position: fixed;
    top: var(--header-offset); /* Adjusted to be below header-top and mobile-nav-buttons */
    left: 0;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-offset));
    background-color: var(--primary-color);
    transform: translateX(-100%); /* Off-screen to the left */
    transition: transform 0.3s ease, display 0.3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    overflow-y: auto;
    z-index: 1000;
  }
  .main-nav.active {
    display: flex; /* Show the menu */
    transform: translateX(0); /* Slide into view */
  }
  .nav-container { flex-direction: column; align-items: flex-start; padding: 20px 15px; width: 100%; max-width: none; }
  .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); text-align: left; }
  .nav-link:last-child { border-bottom: none; }

  .footer-top-grid { grid-template-columns: 1fr; padding: 0 15px 20px; }
  .footer-col { margin-bottom: 20px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-bottom { padding: 10px 15px; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
