:root { --primary: #113B7A; --secondary: #1D5FD1; --btn-grad: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); --card-bg: #10233F; --text-main: #F3F8FF; --text-sec: #AFC4E8; --border-col: #244D84; --glow: #4FA8FF; --gold: #F2C14E; --divider: #1B3357; --deep-navy: #08162B; --header-offset: 122px; }
body { padding-top: var(--header-offset); }
.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 20px rgba(8,22,43,0.55); background-color: var(--deep-navy); }
.header-top { box-sizing: border-box; min-height: 68px; height: 68px; width: 100%; display: flex; align-items: center; overflow: hidden; background: linear-gradient(90deg, #08162B 0%, #113B7A 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-left: 24px; padding-right: 24px; gap: 20px; }
.logo { display: inline-block; font-size: 28px; font-weight: 900; letter-spacing: 1px; color: var(--gold); text-decoration: none; line-height: 1; text-transform: lowercase; }
.logo:hover { color: var(--glow); }
.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 { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 700; border-radius: 8px; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; box-sizing: border-box; }
.btn-primary { background: var(--btn-grad); color: #FFFFFF; border: 1px solid #2B73F6; padding: 10px 22px; font-size: 14px; box-shadow: 0 4px 14px rgba(43,115,246,0.45); }
.btn-primary:hover { box-shadow: 0 6px 22px rgba(79,168,255,0.65); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--glow); padding: 10px 20px; font-size: 14px; }
.btn-outline:hover { background: rgba(79,168,255,0.18); color: #FFFFFF; }
.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; }
.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; width: 100%; display: flex; align-items: center; overflow: hidden; background-color: #10233F; border-bottom: 1px solid var(--border-col); }
.nav-container { box-sizing: border-box; width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; }
.nav-menu { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu li { margin: 0; }
.nav-menu li a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text-main); text-decoration: none; border-radius: 6px; transition: all 0.2s ease; white-space: nowrap; }
.nav-menu li a:hover { color: var(--gold); background-color: rgba(79,168,255,0.14); }
.hamburger-menu { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger-menu span { display: block; width: 25px; height: 3px; background-color: var(--text-main); border-radius: 2px; transition: all 0.3s ease; }
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.nav-overlay { display: none; }
.site-footer { background-color: var(--deep-navy); color: var(--text-main); border-top: 2px solid var(--border-col); }
.footer-top { padding: 50px 0 30px; }
.footer-container { box-sizing: border-box; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col { min-width: 0; }
.footer-about { }
.footer-logo { display: inline-block; font-size: 26px; font-weight: 900; color: var(--gold); text-decoration: none; letter-spacing: 1px; margin-bottom: 14px; text-transform: lowercase; }
.footer-logo:hover { color: var(--glow); }
.footer-description { color: var(--text-sec); font-size: 14px; line-height: 1.7; margin: 0; word-wrap: break-word; overflow-wrap: break-word; }
.footer-title { color: var(--gold); font-size: 16px; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav li a { color: var(--text-sec); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-nav li a:hover { color: var(--glow); }
.footer-dynamic-col { min-width: 0; }
.footer-slot-anchor-inner { min-height: 1px; }
.footer-mid { padding: 10px 0 20px; border-top: 1px solid var(--divider); }
.footer-mid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 12px; }
.footer-mid-cell { min-width: 0; }
.footer-bottom { background-color: #050E1C; padding: 20px 0; border-top: 1px solid var(--divider); }
.footer-copyright { color: var(--text-sec); font-size: 13px; text-align: center; margin: 0; }
@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  .header-top { min-height: 60px !important; height: 60px !important; }
  .header-container { width: 100%; max-width: none; padding-left: 15px; padding-right: 15px; gap: 0; }
  .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: 56px; }
  .desktop-nav-buttons { display: none !important; }
  .mobile-nav-buttons { display: flex !important; align-items: center; justify-content: center; min-height: 48px; width: 100%; max-width: 100%; box-sizing: border-box; padding: 6px 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: #10233F; border-bottom: 1px solid var(--border-col); }
  .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: 48px !important; height: 48px !important; background-color: transparent; border-bottom: none; }
  .nav-container { width: 100%; max-width: none; padding-left: 10px; padding-right: 10px; justify-content: flex-start; position: relative; }
  .hamburger-menu { display: flex; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; width: 78%; max-width: 320px; height: 100vh; background-color: #0B1D38; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; padding: 90px 0 30px; margin: 0; overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1001; box-shadow: 4px 0 24px rgba(0,0,0,0.5); list-style: none; }
  .nav-menu.active { display: flex; transform: translateX(0); }
  .nav-menu li { margin: 0; border-bottom: 1px solid var(--divider); }
  .nav-menu li a { display: block; padding: 14px 22px; font-size: 15px; color: var(--text-main); border-radius: 0; white-space: normal; }
  .nav-menu li a:hover { color: var(--gold); background-color: rgba(79,168,255,0.14); }
  .nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999; }
  .nav-overlay.active { display: block; }
  body.no-scroll { overflow: hidden; }
  .footer-top { padding: 34px 0 20px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-mid-grid { grid-template-columns: 1fr; }
  .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;
  }
}
/* 内容保护（系统追加，请勿删除） */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
