:root { --header-offset: 122px; }
body { padding-top: var(--header-offset); font-family: 'Arial', sans-serif; margin: 0; line-height: 1.6; background-color: #0A0A0A; color: #FFF6D6; }
a { color: #F2C14E; text-decoration: none; }
a:hover { text-decoration: underline; }
.header-container, .footer-container { max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 25px; background-image: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); color: #111111; font-weight: bold; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4); /* Using Glow color for shadow */ }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6); text-decoration: none; }

/* Header */
.site-header { position: fixed; top: 0; width: 100%; background-color: #111111; /* Card BG */ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); z-index: 1000; min-height: 60px; display: flex; align-items: center; }
.site-header .header-container { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 52px; }
.logo { font-size: 28px; font-weight: bold; color: #F2C14E; text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; display: block; }
.main-nav { flex: 1; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 25px; padding: 0 20px; }
.main-nav .nav-link { color: #FFF6D6; font-weight: bold; padding: 10px 0; transition: color 0.3s ease; white-space: nowrap; /* Prevent wrapping */ }
.main-nav .nav-link:hover { color: #F2C14E; text-decoration: none; }
.desktop-nav-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.mobile-nav-buttons { display: none !important; }
.hamburger-menu { display: none; background: none; border: none; font-size: 28px; color: #FFF6D6; cursor: pointer; padding: 5px; flex-shrink: 0; line-height: 1; }
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu-overlay.active { display: block; opacity: 1; }

/* Footer */
.site-footer { background-color: #111111; /* Card BG */ color: #FFF6D6; /* Text Main */ padding: 40px 0 20px; font-size: 14px; border-top: 1px solid #3A2A12; /* Border */ }
.site-footer .footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col { display: flex; flex-direction: column; }
.footer-logo { font-size: 24px; font-weight: bold; color: #F2C14E; text-transform: uppercase; margin-bottom: 15px; display: block; }
.footer-description { margin-top: 0; margin-bottom: 20px; line-height: 1.8; word-wrap: break-word; overflow-wrap: break-word; }
.footer-heading { font-size: 18px; color: #FFD36B; /* Secondary color */ margin-bottom: 15px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav .nav-link { color: #FFF6D6; transition: color 0.3s ease; }
.footer-nav .nav-link:hover { color: #F2C14E; text-decoration: underline; }
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid #3A2A12; /* Border */ text-align: center; color: #FFF6D6; }
.footer-bottom p { margin: 0; }
.footer-slot-anchor-inner { display: block; width: 100%; min-height: 5px; }

/* Mobile styles */
@media (max-width: 768px) {
  :root { --header-offset: 110px; }

  .site-header .header-container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: none;
    justify-content: space-between;
    min-height: 48px;
  }

  .hamburger-menu {
    display: block;
    z-index: 1001;
  }

  .logo {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 24px;
  }
  .logo img {
    display: block !important;
    max-width: 100%;
    height: auto;
    max-height: 40px;
  }

  .main-nav {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: fixed;
    top: var(--header-offset);
    left: 0;
    width: 280px;
    height: calc(100% - var(--header-offset));
    background-color: #111111;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 20px;
    align-items: flex-start;
    gap: 15px;
    overflow-y: auto; /* Allow scrolling for long menus */
  }

  .main-nav.active {
    display: flex; /* Show when active */
    transform: translateX(0);
  }

  .main-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #3A2A12;
  }
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }

  .desktop-nav-buttons {
    display: none !important;
  }

  .mobile-nav-buttons {
    display: flex !important;
    gap: 8px;
    flex-shrink: 0;
    z-index: 1000;
  }

  .mobile-menu-overlay.active {
    z-index: 998;
  }

  body.no-scroll {
    overflow: hidden;
  }

  /* Footer mobile */
  .site-footer .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-col {
    margin-bottom: 20px;
  }
  .footer-col:last-child {
    margin-bottom: 0;
  }

  /* Mobile content overflow prevention */
  .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;
  }
}
