/* roulang page: index */
:root {
  --bg-deep: #07101f;
  --bg-panel: #0c1a2e;
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.12);
  --blue-accent: #3b82f6;
  --gold: #f5b14c;
  --gold-deep: #d98e2b;
  --text-primary: #edf4ff;
  --text-secondary: #8ea5c1;
  --link: #7fc2ff;
  --success: #2fd68b;
  --danger: #ff6b6b;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 6px 24px rgba(0,0,0,0.22);
  --shadow-float: 0 12px 40px rgba(0,0,0,0.32);
  --shadow-gold: 0 0 24px rgba(245,177,76,0.30), 0 8px 32px rgba(0,0,0,0.30);
  --transition: 200ms ease;
  --container: 1280px;
  --section-gap: 96px;
  --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, system-ui, sans-serif;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold);
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input, select, textarea {
  font-family: inherit;
}
::selection {
  background: rgba(245,177,76,0.35);
  color: #fff;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-gap) 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(245,177,76,0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: rgba(245,177,76,0.06);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.section-desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Background Texture ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(245,177,76,0.14) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer {
  position: relative;
  z-index: 1;
}

/* ---------- Glass Panel Utility ---------- */
.glass-panel {
  background: rgba(13,28,49,0.85);
  border: 1px solid var(--glass-border);
}
@supports (backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px)) {
  .glass-panel {
    background: var(--glass);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}
.clip-panel {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.30));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.2;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0b1526;
  box-shadow: 0 0 24px rgba(245,177,76,0.30), 0 8px 32px rgba(0,0,0,0.30);
  font-weight: 700;
}
.btn-gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 32px rgba(245,177,76,0.45), 0 10px 36px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  color: #0b1526;
}
.btn-gold:active {
  transform: translateY(2px);
  box-shadow: 0 0 16px rgba(245,177,76,0.25), 0 4px 16px rgba(0,0,0,0.30);
}
.btn-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--text-primary);
}
.btn-glass:hover {
  border-color: rgba(245,177,76,0.6);
  color: var(--gold);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 22px;
  font-size: 14px;
  border-radius: 999px;
}
.btn-block {
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(10,18,32,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@supports (backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px)) {
  .site-header {
    background: rgba(10,18,32,0.72);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe1a1, var(--gold) 45%, var(--gold-deep));
  box-shadow: 0 0 18px rgba(245,177,76,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  top: 8px;
  left: 8px;
  filter: blur(1px);
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  white-space: nowrap;
}
.brand-name:hover {
  color: var(--gold);
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 6px;
  flex: 0 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-panel::-webkit-scrollbar {
  display: none;
}
.nav-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-card svg {
  width: 15px;
  height: 15px;
  opacity: 0.8;
}
.nav-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,177,76,0.4);
  color: var(--gold);
  transform: translateY(-1px);
}
.nav-card.active {
  border-color: rgba(245,177,76,0.55);
  background: rgba(245,177,76,0.08);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(245,177,76,0.15);
  font-weight: 600;
}
.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: rgba(10,18,32,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 13px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-primary);
  font-size: 15px;
  transition: all var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  border-color: rgba(245,177,76,0.5);
  color: var(--gold);
  background: rgba(245,177,76,0.07);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 640px;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,31,0.94) 0%, rgba(7,16,31,0.78) 45%, rgba(7,16,31,0.35) 100%);
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(245,177,76,0.1);
  border: 1px solid rgba(245,177,76,0.30);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title .gold-text {
  background: linear-gradient(90deg, var(--gold) 0%, #ffd88a 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  letter-spacing: 0.5px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta-strip {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item .val {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.hero-meta-item .label {
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sun-emblem {
  position: relative;
  width: 340px;
  height: 340px;
}
.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe7b0 0%, var(--gold) 40%, var(--gold-deep) 100%);
  box-shadow: 0 0 80px rgba(245,177,76,0.45), 0 0 40px rgba(245,177,76,0.25);
  z-index: 3;
}
.sun-core::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 40%;
  height: 35%;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  filter: blur(12px);
}
.sun-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(245,177,76,0.35);
  animation: spin 24s linear infinite;
}
.sun-ring.r1 {
  width: 250px;
  height: 250px;
}
.sun-ring.r2 {
  width: 320px;
  height: 320px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(245,177,76,0.15);
  animation-direction: reverse;
  animation-duration: 36s;
}
.sun-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(245,177,76,0.6);
}
.sun-dot.d1 {
  width: 8px; height: 8px;
  top: 30px; right: 60px;
  opacity: 0.7;
  animation: pulse 3s ease-in-out infinite;
}
.sun-dot.d2 {
  width: 6px; height: 6px;
  bottom: 70px; left: 40px;
  opacity: 0.5;
  animation: pulse 4s ease-in-out infinite 0.5s;
}
.sun-dot.d3 {
  width: 5px; height: 5px;
  top: 110px; left: 30px;
  opacity: 0.4;
  animation: pulse 3.5s ease-in-out infinite 1s;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: floatDown 2s ease-in-out infinite;
}
.scroll-hint span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(245,177,76,0.6);
  border-bottom: 2px solid rgba(245,177,76,0.6);
  transform: rotate(45deg);
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}
@keyframes floatDown {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- Service Strip ---------- */
.service-strip {
  padding: 10px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-mini-card {
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .service-mini-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.service-mini-card:hover {
  border-color: rgba(245,177,76,0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.24);
}
.service-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,177,76,0.12);
  border: 1px solid rgba(245,177,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.service-mini-icon svg {
  width: 20px;
  height: 20px;
}
.service-mini-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.service-mini-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

/* ---------- Timeline Section ---------- */
.timeline-section {
  background: linear-gradient(180deg, transparent 0%, rgba(12,26,46,0.6) 100%);
  overflow: hidden;
}
.timeline-container {
  position: relative;
  padding: 40px 0 20px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,177,76,0.4) 40%, rgba(59,130,246,0.5) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-top: 70px;
  z-index: 2;
}
.timeline-dot {
  position: absolute;
  top: 24px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245,177,76,0.18), 0 0 16px rgba(245,177,76,0.5);
  z-index: 2;
}
.timeline-dot::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px dashed rgba(245,177,76,0.45);
  animation: spin 12s linear infinite;
}
.timeline-time {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0b1526;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  box-shadow: 0 0 14px rgba(245,177,76,0.30);
}
.timeline-card {
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .timeline-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.timeline-card:hover {
  border-color: rgba(245,177,76,0.40);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.timeline-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Highlights Section ---------- */
.highlights-section {
  background: transparent;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.highlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 280px;
  display: block;
  color: var(--text-primary);
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,177,76,0.40);
  box-shadow: var(--shadow-float);
  color: var(--text-primary);
}
.highlight-card.featured {
  grid-row: span 2;
  min-height: 460px;
}
.highlight-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,31,0.10) 0%, rgba(7,16,31,0.55) 55%, rgba(7,16,31,0.92) 100%);
}
.highlight-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
}
.highlight-card.featured .highlight-body {
  padding: 32px;
}
.highlight-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(245,177,76,0.18);
  border: 1px solid rgba(245,177,76,0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.highlight-card.featured h3 {
  font-size: 26px;
}
.highlight-card p {
  font-size: 13px;
  color: rgba(237,244,255,0.85);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.highlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}
.highlight-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.highlight-card:hover .highlight-cta svg {
  transform: translateX(4px);
}

/* ---------- Ticket / Benefits ---------- */
.ticket-section {
  background: linear-gradient(180deg, transparent 0%, rgba(12,26,46,0.55) 50%, transparent 100%);
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.ticket-card {
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: all var(--transition);
}
@supports (backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px)) {
  .ticket-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.ticket-card:hover {
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.ticket-card.hot {
  border: 1.5px solid rgba(245,177,76,0.60);
  box-shadow: var(--shadow-gold);
  transform: translateY(-20px);
}
.ticket-card.hot:hover {
  transform: translateY(-24px);
}
.ticket-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 4px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0b1526;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 16px rgba(245,177,76,0.45);
}
.ticket-level {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.ticket-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.ticket-price {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.ticket-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.ticket-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  margin: 24px 0;
}
.ticket-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  min-height: 150px;
}
.ticket-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ticket-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  box-shadow: 0 0 6px rgba(245,177,76,0.5);
}
.ticket-card.hot .ticket-benefits li {
  color: var(--text-primary);
}

/* ---------- Register CTA ---------- */
.register-section {
  position: relative;
  overflow: hidden;
}
.register-wrap {
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
@supports (backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px)) {
  .register-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}
.register-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.register-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 60px;
}
.register-intro h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.register-intro h2 .gold-text {
  color: var(--gold);
}
.register-intro > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.contact-line svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-line strong {
  color: var(--text-primary);
  font-weight: 600;
}
.register-form-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .register-form-panel {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder {
  color: rgba(142,165,193,0.6);
}
.form-control:focus {
  border-color: rgba(245,177,76,0.6);
  box-shadow: 0 0 0 3px rgba(245,177,76,0.18);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238ea5c1' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-select option {
  background: var(--bg-panel);
  color: var(--text-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  margin-top: 8px;
}
.form-privacy {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(142,165,193,0.75);
  text-align: center;
  line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(47,214,139,0.12);
  border: 1px solid rgba(47,214,139,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--success);
}
.form-success .success-icon svg {
  width: 30px;
  height: 30px;
}
.form-success h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- News Section ---------- */
.news-section {
  background: linear-gradient(180deg, transparent 0%, rgba(12,26,46,0.4) 50%, transparent 100%);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .news-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.news-item:hover {
  border-color: rgba(245,177,76,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.news-date {
  flex-shrink: 0;
  width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(245,177,76,0.08);
  border: 1px solid rgba(245,177,76,0.20);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
}
.news-date .date-day {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.news-date .date-month {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.news-date .date-year {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.75;
}
.news-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.news-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-title a {
  color: inherit;
}
.news-title a:hover {
  color: var(--gold);
}
.news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.tag {
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.read-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  padding: 4px 0;
  position: relative;
}
.read-more::after {
  content: '→';
  margin-left: 4px;
  transition: transform var(--transition);
  display: inline-block;
}
.read-more:hover::after {
  transform: translateX(4px);
}
.news-empty {
  background: rgba(13,28,49,0.85);
  border: 1px dashed rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
}
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .news-empty {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
}
.empty-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: var(--gold);
  animation: spin 3s linear infinite;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: transparent;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(13,28,49,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .faq-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.faq-item.open {
  border-color: rgba(245,177,76,0.40);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--text-secondary);
}
.faq-arrow svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
  border-color: rgba(245,177,76,0.5);
  background: rgba(245,177,76,0.08);
  color: var(--gold);
}
.faq-item.open .faq-arrow svg {
  transform: rotate(-90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050b16;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand .brand-name {
  font-size: 20px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 320px;
  margin-top: 14px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-copy a {
  color: var(--text-secondary);
}
.footer-copy a:hover {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .nav-cta {
    padding: 10px 16px;
    font-size: 13px;
  }
  .nav-card {
    padding: 8px 14px;
  }
}
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav-panel {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
  }
  .sun-emblem {
    width: 260px;
    height: 260px;
  }
  .sun-core {
    width: 110px;
    height: 110px;
  }
  .sun-ring.r1 {
    width: 200px;
    height: 200px;
  }
  .sun-ring.r2 {
    width: 250px;
    height: 250px;
  }
  .service-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .timeline-track::before {
    display: none;
  }
  .timeline-item:nth-child(4),
  .timeline-item:nth-child(5) {
    padding-top: 20px;
  }
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .highlight-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 320px;
  }
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ticket-card.hot {
    transform: translateY(-12px);
  }
  .register-inner {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .nav-panel {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-visual {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-meta-strip {
    gap: 20px;
  }
  .timeline-section .section-gap {
    padding: 60px 0;
  }
  .timeline-track {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .timeline-item {
    padding-top: 0;
    padding-left: 56px;
  }
  .timeline-dot {
    top: 10px;
    left: 18px;
  }
  .timeline-track::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(59,130,246,0.5) 100%);
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .highlight-card.featured {
    grid-column: span 1;
    min-height: 300px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .ticket-card.hot {
    transform: translateY(0);
  }
  .ticket-card.hot:hover {
    transform: translateY(-4px);
  }
  .news-item {
    flex-direction: column;
    gap: 14px;
  }
  .news-date {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 14px;
  }
  .news-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .register-inner {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .brand-name {
    font-size: 16px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-row .btn {
    width: 100%;
  }
  .service-strip-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta-strip {
    flex-direction: column;
    gap: 14px;
  }
  .ticket-card {
    padding: 28px 22px;
  }
  .ticket-benefits {
    min-height: auto;
  }
}

/* roulang page: category1 */
:root {
  --bg-deep: #07101f;
  --bg-panel: #0c1a2e;
  --bg-darker: #050b16;
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.12);
  --blue-accent: #3b82f6;
  --gold: #f5b14c;
  --gold-deep: #d98e2b;
  --text-primary: #edf4ff;
  --text-secondary: #8ea5c1;
  --link: #7fc2ff;
  --success: #2fd68b;
  --danger: #ff6b6b;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-card: 0 6px 24px rgba(0,0,0,0.22);
  --shadow-float: 0 12px 40px rgba(0,0,0,0.32);
  --shadow-gold: 0 0 24px rgba(245,177,76,0.30), 0 8px 32px rgba(0,0,0,0.30);
  --container-max: 1280px;
  --space-section-desktop: 96px;
  --space-section-tablet: 72px;
  --space-section-mobile: 48px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,177,76,0.08), transparent 60%),
    linear-gradient(0deg, rgba(7,16,31,0.98) 0%, rgba(7,16,31,0.92) 100%);
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
a { color: var(--link); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.section {
  padding: var(--space-section-desktop) 0;
  position: relative;
}
@media (max-width: 1024px) {
  .section { padding: var(--space-section-tablet) 0; }
}
@media (max-width: 768px) {
  .section { padding: var(--space-section-mobile) 0; }
  .container { padding: 0 16px; }
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 480px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .section-header h2 { font-size: 28px; }
}
.clipped {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,18,32,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe1a1, var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 0 16px rgba(245,177,76,0.5);
  position: relative;
  flex-shrink: 0;
}
.brand-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(245,177,76,0.5);
  animation: spin 16s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.nav-card svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.nav-card.active {
  border-color: var(--gold);
  background: rgba(245,177,76,0.08);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(245,177,76,0.12);
}
.nav-cta {
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5b14c, #e8922b);
  color: #0b1526;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(245,177,76,0.45), 0 8px 36px rgba(0,0,0,0.35);
  color: #0b1526;
}
.nav-cta:active {
  transform: translateY(2px);
  box-shadow: 0 0 12px rgba(245,177,76,0.30), 0 4px 20px rgba(0,0,0,0.30);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: border-color 0.2s ease;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .nav-panel .nav-card span { display: none; }
  .nav-card { padding: 10px 14px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-panel {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,18,32,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px;
    gap: 8px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-float);
  }
  .nav-panel.open { transform: translateY(0); }
  .nav-card { justify-content: flex-start; padding: 12px 16px; }
  .nav-card span { display: inline; }
}
@media (max-width: 480px) {
  .brand-name { font-size: 16px; }
  .header-inner { height: 64px; }
  .nav-panel { top: 64px; }
}

/* ===== Page Hero (small KV) ===== */
.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  margin-top: 72px;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,31,0.92) 0%, rgba(7,16,31,0.75) 60%, rgba(7,16,31,0.45) 100%);
  z-index: -1;
}
.page-hero-inner {
  padding: 48px 0;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 620px;
}
.page-hero .hero-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(245,177,76,0.12);
  border: 1px solid rgba(245,177,76,0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-hero { min-height: 240px; margin-top: 64px; }
  .page-hero-inner { padding: 32px 0; }
}

/* ===== Benefit Snapshot Cards ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}
.benefit-card:hover {
  background: var(--glass-strong);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,177,76,0.18), rgba(245,177,76,0.06));
  border: 1px solid rgba(245,177,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ===== Benefit Details Split ===== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.split-block:last-child { margin-bottom: 0; }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.split-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,16,31,0.15), rgba(7,16,31,0.55));
}
.split-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.split-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.split-list {
  list-style: none;
  margin: 20px 0 0;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}
.split-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
  box-shadow: 0 0 8px rgba(245,177,76,0.5);
}
@media (max-width: 768px) {
  .split-block { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .split-image img { height: 240px; }
  .split-content h3 { font-size: 22px; }
}

/* ===== Gold Banner / CTA ===== */
.gold-banner {
  background: linear-gradient(135deg, rgba(245,177,76,0.12), rgba(245,177,76,0.04));
  border: 1px solid rgba(245,177,76,0.30);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 0 32px rgba(245,177,76,0.06), var(--shadow-card);
}
.gold-banner h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.gold-banner p {
  color: var(--text-secondary);
  font-size: 15px;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5b14c, #e8922b);
  color: #0b1526;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(245,177,76,0.45), 0 8px 32px rgba(0,0,0,0.30);
  color: #0b1526;
  text-decoration: none;
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 0 12px rgba(245,177,76,0.25), 0 4px 18px rgba(0,0,0,0.30);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 768px) {
  .gold-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .gold-banner h3 { font-size: 22px; }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item:hover { border-color: rgba(245,177,76,0.35); }
.faq-item.active { border-color: var(--gold); box-shadow: 0 0 20px rgba(245,177,76,0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand .brand-name {
  font-size: 20px;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: var(--text-secondary);
  font-size: 13px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Scroll Down Indicator ===== */
.scroll-down {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.scroll-down a {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.scroll-down a:hover { color: var(--gold); }
.scroll-down .arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
  40% { transform: rotate(45deg) translate(0, -6px); }
  60% { transform: rotate(45deg) translate(0, -3px); }
}

/* ===== Section Divider ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  border: none;
  margin: 0;
}
@media (max-width: 480px) {
  .section-header h2 { font-size: 24px; }
  .benefit-card { padding: 24px 20px; }
  .nav-panel { padding: 12px; }
}

/* roulang page: article */
:root {
  --bg-deep: #07101f;
  --bg-panel: #0c1a2e;
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.12);
  --blue-accent: #3b82f6;
  --gold: #f5b14c;
  --gold-deep: #d98e2b;
  --text-primary: #edf4ff;
  --text-secondary: #8ea5c1;
  --link: #7fc2ff;
  --success: #2fd68b;
  --danger: #ff6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 6px 24px rgba(0,0,0,0.22);
  --shadow-float: 0 12px 40px rgba(0,0,0,0.32);
  --shadow-gold: 0 0 24px rgba(245,177,76,0.30), 0 8px 32px rgba(0,0,0,0.30);
  --container-max: 1280px;
  --space-section: 96px;
  --font-stack: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-stack);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
a:hover { color: var(--gold); }
button, input, select, textarea { font-family: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ===== Header & Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,18,32,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}
.header-row {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 20px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd98a, var(--gold) 45%, var(--gold-deep) 78%);
  box-shadow: 0 0 18px rgba(245,177,76,.55), 0 0 38px rgba(245,177,76,.22);
  display: inline-block;
  flex-shrink: 0;
}
.brand-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(245,177,76,.55);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: .5px;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.nav-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-primary) !important;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .22s ease;
}
.nav-card svg { width: 16px; height: 16px; opacity: .8; }
.nav-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,177,76,.55);
  color: var(--gold) !important;
  transform: translateY(-1px);
}
.nav-card.active {
  background: rgba(245,177,76,0.08);
  border-color: rgba(245,177,76,.65);
  color: var(--gold) !important;
  box-shadow: 0 0 14px rgba(245,177,76,.18);
}
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e8922b);
  color: #0b1526 !important;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(245,177,76,.30), 0 6px 24px rgba(0,0,0,.26);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
}
.btn-header:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 32px rgba(245,177,76,.45), 0 8px 28px rgba(0,0,0,.30);
  transform: translateY(-1px);
  color: #0b1526 !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s ease;
}
.nav-toggle:hover { border-color: rgba(245,177,76,.5); color: var(--gold); }

/* ===== Article Hero ===== */
.article-hero {
  position: relative;
  padding: 68px 0 56px;
  background:
    linear-gradient(90deg, rgba(7,16,31,.95) 0%, rgba(7,16,31,.82) 55%, rgba(7,16,31,.50) 100%),
    url('/assets/images/backpic/back-2.png') center / cover no-repeat;
  border-bottom: 1px solid var(--glass-border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--link); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.30); }
.breadcrumb .current { color: var(--text-primary); }
.article-header h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 860px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(245,177,76,.12);
  border: 1px solid rgba(245,177,76,.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}
.article-summary {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.8;
  color: #b6c8e0;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  border-radius: 0 10px 10px 0;
}

/* ===== Article Body ===== */
.article-section { padding: 64px 0 76px; position: relative; }
.article-panel {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 64px);
  box-shadow: var(--shadow-card);
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #c4d2e8;
  word-break: break-word;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
  margin: 40px 0 20px;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  margin: 32px 0 16px;
  line-height: 1.4;
}
.article-content p { margin: 0 0 20px; }
.article-content img { border-radius: 12px; margin: 24px 0; box-shadow: var(--shadow-card); }
.article-content blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(245,177,76,0.06);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  color: var(--text-secondary);
}
.article-content ul, .article-content ol { padding-left: 22px; margin: 0 0 20px; }
.article-content li { margin: 6px 0; }
.article-content a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--gold); }

/* Not found */
.not-found {
  text-align: center;
  padding: 56px 24px;
}
.not-found h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.not-found p { color: var(--text-secondary); margin-bottom: 24px; }
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e8922b);
  color: #0b1526 !important;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-back-home:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Back to category */
.back-category-wrap { text-align: center; margin-top: 40px; }
.btn-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text-primary) !important;
  font-size: 14px;
  font-weight: 500;
  transition: all .22s ease;
}
.btn-capsule:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(245,177,76,.08);
  transform: translateY(-1px);
}

/* ===== Related ===== */
.related-section { padding: 72px 0 40px; }
.section-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-sub { color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,177,76,.45);
  box-shadow: var(--shadow-float);
}
.related-card-img { height: 168px; overflow: hidden; background: var(--bg-panel); }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .related-card-img img { transform: scale(1.04); }
.related-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.related-card-body h3 { font-size: 18px; font-weight: 600; line-height: 1.45; }
.related-card-body h3 a { color: var(--text-primary); }
.related-card-body h3 a:hover { color: var(--gold); }
.related-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold) !important;
}
.related-link:hover { gap: 10px; }

/* ===== FAQ ===== */
.faq-section { padding: 60px 0 24px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  padding: 22px 28px;
  transition: border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.faq-item:hover { border-color: rgba(245,177,76,.35); }
.faq-item.open { border-color: rgba(245,177,76,.55); box-shadow: 0 0 18px rgba(245,177,76,.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-arrow {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: transform .3s ease, color .3s ease, border-color .3s ease;
  font-size: 14px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); border-color: var(--gold); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 14px;
}

/* ===== CTA ===== */
.cta-section { padding: 56px 0 88px; }
.cta-panel {
  position: relative;
  background:
    linear-gradient(120deg, rgba(245,177,76,0.10), rgba(255,255,255,0.03) 45%, rgba(245,177,76,0.05)),
    rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  padding: 52px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,177,76,.25), transparent 70%);
  pointer-events: none;
}
.cta-panel h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-panel p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--text-secondary);
  font-size: 15px;
}
.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.cta-contact svg { width: 18px; height: 18px; color: var(--gold); }
.cta-panel .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e8922b);
  color: #0b1526 !important;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: all .22s ease;
}
.cta-panel .btn-gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 32px rgba(245,177,76,.45), 0 10px 32px rgba(0,0,0,.32);
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.site-footer {
  background: #050b16;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-desc {
  max-width: 320px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 14px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-copy { font-size: 13px; color: var(--text-secondary); }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .nav-card span { display: none; }
  .nav-card { padding: 10px 14px; }
  .nav-card svg { width: 18px; height: 18px; }
}
@media (max-width: 1023px) {
  :root { --space-section: 72px; }
  .nav-toggle { display: flex; }
  .nav-panel {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,18,32,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 14px;
    gap: 8px;
    display: none;
    box-shadow: var(--shadow-float);
    z-index: 99;
  }
  .nav-panel.open { display: flex; }
  .nav-card { padding: 13px 16px; }
  .nav-card span { display: inline; }
  .btn-header { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  :root { --space-section: 48px; }
  .container { padding: 0 16px; }
  .header-row { height: 64px; gap: 12px; }
  .brand-name { font-size: 16px; }
  .brand-icon { width: 32px; height: 32px; }
  .article-hero { padding: 44px 0 38px; }
  .article-header h1 { font-size: 27px; }
  .article-summary { font-size: 14px; padding: 12px 14px; }
  .article-panel { padding: 24px 18px; }
  .article-content { font-size: 15px; }
  .article-content h2 { font-size: 21px; }
  .article-content h3 { font-size: 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card-img { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-panel { padding: 38px 18px; }
}
@media (max-width: 480px) {
  .brand-icon { width: 28px; height: 28px; }
  .brand-name { font-size: 15px; letter-spacing: 0; }
  .article-header h1 { font-size: 24px; }
  .article-meta { gap: 12px; flex-direction: column; align-items: flex-start; }
  .faq-item { padding: 18px 16px; }
  .faq-question { font-size: 15px; }
  .cta-contact { flex-direction: column; gap: 8px; }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header, .nav-panel, .article-panel, .related-card, .faq-item, .cta-panel {
    background: rgba(13,28,49,0.92);
  }
}

/* roulang page: category2 */
:root{
  --bg-deep:#07101f;
  --bg-panel:#0c1a2e;
  --glass:rgba(255,255,255,0.06);
  --glass-strong:rgba(255,255,255,0.10);
  --glass-border:rgba(255,255,255,0.12);
  --blue-accent:#3b82f6;
  --gold:#f5b14c;
  --gold-deep:#d98e2b;
  --text-primary:#edf4ff;
  --text-secondary:#8ea5c1;
  --link:#7fc2ff;
  --success:#2fd68b;
  --danger:#ff6b6b;
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:10px;
  --shadow-card:0 6px 24px rgba(0,0,0,0.22);
  --shadow-float:0 12px 40px rgba(0,0,0,0.32);
  --shadow-gold:0 0 24px rgba(245,177,76,0.30),0 8px 32px rgba(0,0,0,0.30);
  --font-main:"PingFang SC","Microsoft YaHei","Noto Sans SC",-apple-system,system-ui,sans-serif;
  --container-max:1280px;
  --spacing-section:96px;
  --transition:all .2s ease;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-main);
  background-color:var(--bg-deep);
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:32px 32px;
  color:var(--text-primary);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:'';
  position:fixed;
  top:-320px;
  left:50%;
  transform:translateX(-50%);
  width:1000px;
  height:640px;
  background:radial-gradient(ellipse at center,rgba(245,177,76,.10) 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
a{color:var(--link);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--gold)}
img{max-width:100%;display:block}
button,input,select,textarea{font-family:inherit;font-size:inherit;color:inherit}
button{cursor:pointer;border:none;background:none}
.container{max-width:var(--container-max);margin:0 auto;padding:0 24px;position:relative;z-index:1}
.glass-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  clip-path:polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);
  transition:var(--transition);
  position:relative;
}
@supports not (backdrop-filter:blur(16px)){
  .glass-card{background:rgba(13,28,49,.85)}
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  line-height:1;
  transition:var(--transition);
  white-space:nowrap;
  gap:8px;
}
.btn-primary{
  background:linear-gradient(135deg,#f5b14c,#e8922b);
  color:#0b1526;
  box-shadow:var(--shadow-gold);
}
.btn-primary:hover{
  color:#0b1526;
  filter:brightness(1.1);
  box-shadow:0 0 32px rgba(245,177,76,.45),0 10px 36px rgba(0,0,0,.32);
  transform:translateY(-1px);
}
.btn-primary:active{
  transform:translateY(2px);
  box-shadow:0 0 14px rgba(245,177,76,.25),0 4px 20px rgba(0,0,0,.30);
}
.btn-outline{
  background:var(--glass);
  border:1px solid var(--glass-border);
  color:var(--text-primary);
}
.btn-outline:hover{
  border-color:var(--gold);
  color:var(--gold);
  background:rgba(255,255,255,.08);
}
.btn-sm{padding:10px 22px;font-size:14px}
.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
}
.badge-open{
  background:rgba(47,214,139,.12);
  border:1px solid rgba(47,214,139,.30);
  color:var(--success);
}
.badge-soon{
  background:rgba(245,177,76,.12);
  border:1px solid rgba(245,177,76,.30);
  color:var(--gold);
}
.badge-wait{
  background:rgba(127,194,255,.10);
  border:1px solid rgba(127,194,255,.25);
  color:var(--link);
}
/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:999;
  background:rgba(10,18,32,.78);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand-icon{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle,rgba(245,177,76,.15) 0%,transparent 70%);
}
.brand-icon svg{width:24px;height:24px;stroke:var(--gold);fill:none}
.brand-name{
  font-size:18px;
  font-weight:700;
  color:var(--text-primary);
  letter-spacing:.02em;
}
.brand:hover .brand-name{color:var(--gold)}
.nav-panel{
  display:flex;
  align-items:center;
  gap:8px;
  flex:1;
  justify-content:center;
}
.nav-card{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  border-radius:var(--radius-md);
  background:var(--glass);
  border:1px solid rgba(255,255,255,.08);
  color:var(--text-secondary);
  font-size:14px;
  font-weight:500;
  transition:var(--transition);
}
.nav-card svg{width:18px;height:18px;stroke:currentColor;fill:none}
.nav-card:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(245,177,76,.5);
  color:var(--gold);
}
.nav-card.active{
  background:rgba(245,177,76,.08);
  border-color:rgba(245,177,76,.50);
  color:var(--gold);
  box-shadow:0 0 18px rgba(245,177,76,.12);
}
.nav-cta{margin-left:auto;flex-shrink:0}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  border-radius:var(--radius-sm);
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text-primary);
  border-radius:2px;
  transition:var(--transition);
}
.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* Page Title */
.page-title-area{
  padding:170px 0 52px;
  background:
    radial-gradient(ellipse at 75% 20%,rgba(245,177,76,.07),transparent 55%),
    linear-gradient(180deg,rgba(7,16,31,.6) 0%,var(--bg-deep) 100%);
  border-bottom:1px solid rgba(255,255,255,.05);
  position:relative;
}
.page-title-area h1{
  font-size:clamp(30px,4vw,42px);
  font-weight:800;
  line-height:1.2;
  color:var(--text-primary);
  letter-spacing:.02em;
}
.page-title-area .lead{
  margin-top:12px;
  font-size:16px;
  color:var(--text-secondary);
  max-width:560px;
  line-height:1.8;
}
/* Theme Cards */
.theme-section{
  padding:72px 0 0;
}
.theme-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.theme-card{
  padding:28px 24px;
  text-align:left;
}
.theme-card .theme-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(245,177,76,.10);
  border:1px solid rgba(245,177,76,.20);
  margin-bottom:16px;
}
.theme-card .theme-icon svg{width:22px;height:22px;stroke:var(--gold);fill:none}
.theme-card h3{
  font-size:18px;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:6px;
}
.theme-card p{
  font-size:14px;
  color:var(--text-secondary);
  line-height:1.7;
}
/* Schedule Section */
.schedule-section{
  padding:var(--spacing-section) 0;
}
.schedule-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:48px;
  align-items:start;
}
.section-header{
  margin-bottom:36px;
}
.section-header h2{
  font-size:clamp(26px,3vw,34px);
  font-weight:700;
  line-height:1.3;
}
.section-header p{
  margin-top:8px;
  color:var(--text-secondary);
  font-size:15px;
}
/* Timeline */
.timeline{
  position:relative;
  padding-left:48px;
}
.timeline::before{
  content:'';
  position:absolute;
  left:7px;
  top:10px;
  bottom:10px;
  width:2px;
  background:linear-gradient(180deg,var(--gold) 0%,rgba(245,177,76,.18) 50%,var(--blue-accent) 100%);
  border-radius:2px;
}
.timeline-month{
  margin-bottom:44px;
}
.timeline-month:last-child{margin-bottom:0}
.timeline-month-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 18px;
  border-radius:999px;
  background:rgba(245,177,76,.10);
  border:1px solid rgba(245,177,76,.28);
  color:var(--gold);
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
  letter-spacing:.03em;
}
.timeline-month-label::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 8px rgba(245,177,76,.6);
}
.timeline-event{
  position:relative;
  margin-bottom:16px;
  padding-left:0;
}
.timeline-event:last-child{margin-bottom:0}
.timeline-event::before{
  content:'';
  position:absolute;
  left:-41px;
  top:26px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
  border:3px solid var(--bg-deep);
  box-shadow:0 0 0 2px rgba(245,177,76,.35),0 0 12px rgba(245,177,76,.35);
  z-index:2;
}
.event-card{
  padding:24px 28px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  transition:var(--transition);
}
.event-card:hover{
  border-color:rgba(245,177,76,.45);
  box-shadow:var(--shadow-float);
  transform:translateY(-2px);
}
.event-date-block{
  flex-shrink:0;
  text-align:center;
  min-width:64px;
  padding:12px 10px;
  border-radius:var(--radius-md);
  background:rgba(245,177,76,.10);
  border:1px solid rgba(245,177,76,.25);
}
.event-date-block .day{
  display:block;
  font-size:24px;
  font-weight:800;
  color:var(--gold);
  line-height:1.1;
}
.event-date-block .month{
  display:block;
  font-size:12px;
  color:var(--text-secondary);
  margin-top:2px;
}
.event-content{
  flex:1;
  min-width:0;
}
.event-content h3{
  font-size:18px;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:4px;
}
.event-location{
  font-size:14px;
  color:var(--text-secondary);
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:8px;
}
.event-location svg{width:14px;height:14px;stroke:currentColor;fill:none;flex-shrink:0}
.event-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
/* Sidebar */
.schedule-side{
  display:flex;
  flex-direction:column;
  gap:24px;
  position:sticky;
  top:96px;
}
.side-card{
  padding:28px 24px;
  clip-path:polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);
  background:var(--glass);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
}
@supports not (backdrop-filter:blur(16px)){
  .side-card{background:rgba(13,28,49,.88)}
}
.side-card h3{
  font-size:18px;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  gap:8px;
}
.side-card h3::before{
  content:'';
  width:4px;
  height:18px;
  border-radius:4px;
  background:var(--gold);
}
.recent-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.recent-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  transition:var(--transition);
}
.recent-item:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(245,177,76,.4);
  transform:translateX(3px);
}
.recent-date{
  font-size:14px;
  font-weight:700;
  color:var(--gold);
  flex-shrink:0;
  padding:4px 10px;
  background:rgba(245,177,76,.10);
  border-radius:8px;
}
.recent-name{
  flex:1;
  font-size:14px;
  color:var(--text-primary);
  line-height:1.4;
  min-width:0;
}
.recent-status{
  font-size:12px;
  color:var(--text-secondary);
  flex-shrink:0;
}
/* FAQ */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:0;
}
.faq-item{
  border-bottom:1px solid rgba(255,255,255,.06);
}
.faq-item:last-child{border-bottom:none}
.faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  padding:16px 0;
  text-align:left;
  font-size:15px;
  font-weight:600;
  color:var(--text-primary);
  transition:var(--transition);
}
.faq-question:hover{color:var(--gold)}
.faq-question .faq-icon{
  width:18px;
  height:18px;
  stroke:var(--text-secondary);
  fill:none;
  flex-shrink:0;
  transition:transform .3s ease;
}
.faq-item.active .faq-icon{
  transform:rotate(180deg);
  stroke:var(--gold);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease,padding .3s ease;
  padding:0;
  font-size:14px;
  color:var(--text-secondary);
  line-height:1.7;
}
.faq-item.active .faq-answer{
  max-height:320px;
  padding-bottom:16px;
}
/* Process */
.process-section{
  padding:0 0 var(--spacing-section);
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px;
}
.process-step{
  padding:32px 24px;
  text-align:left;
  position:relative;
}
.process-step .step-num{
  font-size:14px;
  font-weight:800;
  color:var(--gold);
  letter-spacing:.1em;
  margin-bottom:12px;
  display:inline-block;
  padding:4px 12px;
  border-radius:999px;
  background:rgba(245,177,76,.10);
  border:1px solid rgba(245,177,76,.25);
}
.process-step h3{
  font-size:17px;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:6px;
}
.process-step p{
  font-size:14px;
  color:var(--text-secondary);
  line-height:1.7;
}
/* CTA */
.cta-section{
  padding-bottom:var(--spacing-section);
}
.cta-banner{
  padding:56px 48px;
  background:
    linear-gradient(135deg,rgba(245,177,76,.06) 0%,transparent 50%),
    rgba(255,255,255,.04);
  border:1px solid rgba(245,177,76,.20);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-float);
  clip-path:polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cta-banner h2{
  font-size:clamp(24px,3vw,32px);
  font-weight:800;
  color:var(--text-primary);
  line-height:1.3;
}
.cta-banner p{
  margin-top:8px;
  color:var(--text-secondary);
  font-size:15px;
  max-width:460px;
}
.cta-banner .btn-group{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  flex-shrink:0;
}
/* Footer */
.site-footer{
  background:#050b16;
  border-top:1px solid rgba(255,255,255,.06);
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:48px;
}
.footer-brand .brand{
  margin-bottom:16px;
}
.footer-desc{
  font-size:14px;
  color:var(--text-secondary);
  line-height:1.8;
  max-width:360px;
}
.footer-col h4{
  font-size:16px;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:20px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  color:var(--text-secondary);
  font-size:14px;
  transition:var(--transition);
}
.footer-links a:hover{color:var(--gold);padding-left:4px}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--text-secondary);
}
.footer-contact-item svg{
  width:16px;
  height:16px;
  stroke:var(--gold);
  fill:none;
  flex-shrink:0;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-copy{
  font-size:13px;
  color:var(--text-secondary);
}
/* Responsive */
@media (max-width:1024px){
  .theme-grid{grid-template-columns:repeat(2,1fr)}
  .schedule-layout{grid-template-columns:1fr 280px;gap:32px}
  .process-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:768px){
  :root{--spacing-section:64px}
  .nav-panel{
    position:fixed;
    top:72px;
    left:0;
    right:0;
    background:rgba(10,18,32,.96);
    backdrop-filter:blur(18px);
    flex-direction:column;
    align-items:stretch;
    padding:20px 24px;
    gap:10px;
    transform:translateY(-120%);
    transition:transform .3s ease;
    border-bottom:1px solid rgba(255,255,255,.06);
    z-index:998;
  }
  .nav-panel.open{transform:translateY(0)}
  .nav-card{justify-content:flex-start;padding:14px 18px}
  .nav-cta{display:none}
  .nav-toggle{display:flex}
  .page-title-area{padding:140px 0 40px}
  .schedule-layout{grid-template-columns:1fr}
  .schedule-side{position:static;order:2}
  .cta-banner{padding:40px 24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .footer-brand{grid-column:1/-1}
}
@media (max-width:520px){
  :root{--spacing-section:48px}
  .container{padding:0 16px}
  .theme-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .event-card{flex-direction:column;gap:12px;padding:20px}
  .event-date-block{display:flex;align-items:center;gap:8px;min-width:0;padding:8px 14px}
  .event-date-block .day{font-size:18px}
  .event-date-block .month{margin-top:0}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .cta-banner{flex-direction:column;align-items:flex-start}
  .btn-group{width:100%}
  .btn-group .btn{flex:1}
}
