/* roulang page: index */
:root {
  --primary: #C69C6D;
  --primary-dark: #A87B45;
  --primary-light: #F0E2CE;
  --dark: #17171C;
  --dark-2: #202028;
  --dark-3: #292932;
  --light: #F7F4EE;
  --white: #FFFFFF;
  --gray: #F2EFE9;
  --text: #2B2B2F;
  --text-muted: #7C7C84;
  --text-dark: #E8E2D8;
  --text-dark-muted: #9A9AA4;
  --border: #E7E0D6;
  --border-dark: #3A3A44;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 14px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 36px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-primary: 0 8px 28px rgba(198,156,109,0.30);
  --transition: 0.3s ease;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(198,156,109,0.42); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(198,156,109,0.28); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-dark {
  background: var(--dark);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
}
.btn-dark:hover { background: var(--dark-2); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn:focus-visible {
  outline: 3px solid rgba(198,156,109,0.5);
  outline-offset: 2px;
}

.section-pad { padding: 84px 0; }

.sec-head {
  margin-bottom: 48px;
  max-width: 720px;
}
.sec-head .sec-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.sec-head p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.header-top { border-bottom: 1px solid rgba(0,0,0,0.05); background: var(--white); }
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}
.brand .brand-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 1 380px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--gray);
  transition: var(--transition);
}
.header-search:focus-within {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(198,156,109,0.15);
}
.header-search input {
  flex: 1;
  padding: 11px 20px;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--dark);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
}
.header-search button:hover { background: var(--primary); color: var(--white); }

.header-nav {
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark-muted);
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--primary); background: rgba(198,156,109,0.12); }
.nav-link.active { color: var(--white); background: var(--primary); font-weight: 600; box-shadow: var(--shadow-primary); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-cta .btn { padding: 10px 24px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray);
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: url('/assets/images/backpic/back-1.jpg') center center / cover no-repeat;
  padding: 90px 0 100px;
  color: var(--text-dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,12,18,0.92) 20%, rgba(12,12,18,0.72) 55%, rgba(12,12,18,0.55) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--light);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  padding-left: 0;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,156,109,0.18);
  border: 1px solid rgba(198,156,109,0.4);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-pill .dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-size: 43px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-data {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-data-item .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.hero-data-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Coupon */
.hero-coupons { position: relative; }
.coupon-main {
  background: linear-gradient(145deg, #FFFDF8, #F6ECD9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  overflow: hidden;
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: var(--transition);
}
.coupon-main:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 24px 70px rgba(0,0,0,0.22); }
.coupon-left {
  padding: 34px 26px;
  flex: 1;
  position: relative;
}
.coupon-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed #D8C7A8;
}
.coupon-left .tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.coupon-left .amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}
.coupon-left .amount small { font-size: 20px; font-weight: 700; }
.coupon-left .name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.coupon-left .note { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }
.coupon-right {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(198,156,109,0.06);
}
.coupon-right .validity {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.coupon-right .get-btn {
  writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  padding: 16px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.1em;
  border: none;
}
.coupon-right .get-btn:hover { background: var(--primary-dark); transform: scale(1.04); }
.coupon-right .get-btn:active { transform: scale(0.98); }
.coupon-right .get-btn.received { background: #A0A0A0; cursor: default; }

.coupon-side-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
  max-width: 420px;
  margin-left: auto;
}
.coupon-mini {
  background: rgba(23,23,28,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  flex: 1;
  text-align: center;
  transition: var(--transition);
}
.coupon-mini:hover { border-color: var(--primary); transform: translateY(-3px); }
.coupon-mini .mini-title { font-size: 13px; color: var(--text-dark-muted); }
.coupon-mini .mini-val { font-size: 20px; font-weight: 800; color: var(--primary); margin-top: 2px; }

/* ===== Countdown ===== */
.countdown {
  background: var(--dark);
  color: var(--text-dark);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198,156,109,0.14), transparent 70%);
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.countdown-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}
.countdown-text p { color: var(--text-dark-muted); font-size: 14px; }
.countdown-timer {
  display: flex;
  gap: 16px;
  align-items: center;
}
.timer-box {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  min-width: 76px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
}
.timer-box .val {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.timer-box .unit { font-size: 12px; color: var(--text-dark-muted); margin-top: 4px; letter-spacing: 0.08em; }
.timer-sep { font-size: 24px; color: var(--primary); font-weight: 700; }

/* ===== Highlights ===== */
.highlights { background: var(--light); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.hl-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.hl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(198,156,109,0.2));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.hl-card:hover::before { transform: scaleX(1); }
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(198,156,109,0.3); }
.hl-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}
.hl-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.hl-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* ===== Tickets ===== */
.tickets { background: var(--white); position: relative; }
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.ticket-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.ticket-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.ticket-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, rgba(198,156,109,0.06), transparent 60%);
}
.ticket-card.popular .ticket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ticket-type { font-size: 16px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.ticket-price { font-size: 42px; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.ticket-price small { font-size: 16px; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.ticket-list { flex: 1; margin-bottom: 24px; }
.ticket-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  line-height: 1.6;
}
.ticket-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}
.ticket-list li.off { color: var(--text-muted); text-decoration: line-through; }
.ticket-list li.off::before { content: '×'; color: #C0C0C0; }

/* ===== News ===== */
.news { background: var(--gray); }
.news-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
}
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.news-item:hover { border-color: rgba(198,156,109,0.3); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.news-item .thumb {
  width: 96px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gray);
}
.news-content { flex: 1; }
.news-content .date { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; display: block; }
.news-content h4 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 6px; }
.news-content .excerpt {
  font-size: 13px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
}
.news-content .tag {
  display: inline-block;
  font-size: 11px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: 6px;
}
.news-side { display: flex; flex-direction: column; gap: 24px; }
.side-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.side-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}
.hot-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}
.hot-list li:last-child { border-bottom: none; }
.hot-list .rank {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hot-list .rank.top { background: var(--primary); color: var(--white); }
.hot-list .info { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.5; }
.hot-list .info .meta { color: var(--text-muted); font-weight: 400; font-size: 12px; }
.side-coupon {
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  color: var(--text-dark);
}
.side-coupon .v { font-size: 30px; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.side-coupon p { font-size: 13px; color: var(--text-dark-muted); margin-bottom: 16px; }
.side-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.side-tags span {
  font-size: 12px;
  padding: 6px 14px;
  background: var(--gray);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.side-tags span:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ===== CTA ===== */
.cta {
  position: relative;
  background: url('/assets/images/backpic/back-2.jpg') center center / cover no-repeat;
  color: var(--text-dark);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,14,18,0.85);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.cta p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 30px; line-height: 1.8; }
.cta .btn { font-size: 16px; padding: 16px 40px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 18px; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.faq-item {
  background: var(--gray);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item .q {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
.faq-item .q::before {
  content: 'Q';
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 1px;
}
.faq-item .a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  padding-left: 26px;
}
.faq-item .a::before {
  content: 'A';
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-dark);
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0.7;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: var(--text-dark-muted);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .brand { color: var(--white); font-size: 20px; margin-bottom: 16px; }
.footer-brand .brand .brand-sub { color: var(--text-dark-muted); }
.footer-desc { font-size: 14px; line-height: 1.8; max-width: 360px; }
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
}
.footer-bottom a { color: var(--text-dark-muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-coupons { max-width: 480px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .news-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .countdown-inner { flex-direction: column; text-align: center; }
  .header-search { flex: 0 1 280px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .sec-head h2 { font-size: 26px; }
  .header-top-inner { flex-wrap: wrap; }
  .header-search { order: 3; flex: 1 1 100%; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .header-nav { display: none; }
  .header-nav.open { display: block; }
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px;
    overflow-x: visible;
  }
  .nav-link { justify-content: center; padding: 14px; }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 30px; }
  .hero-data { gap: 22px; }
  .coupon-main { flex-direction: column; transform: none; }
  .coupon-left::after { display: none; }
  .coupon-right { width: 100%; flex-direction: row; gap: 16px; padding: 12px; }
  .coupon-right .get-btn { writing-mode: horizontal-tb; padding: 8px 24px; margin-bottom: 0; }
  .coupon-right .validity { margin-bottom: 0; }
  .coupon-side-row { flex-direction: column; }
  .highlight-grid { grid-template-columns: 1fr; }
  .news-item { flex-direction: column; }
  .news-item .thumb { width: 100%; height: 140px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timer-box { min-width: 60px; padding: 12px 14px; }
  .timer-box .val { font-size: 24px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .brand { font-size: 15px; }
  .brand .brand-mark { width: 34px; height: 34px; font-size: 15px; }
  .hero h1 { font-size: 25px; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .countdown-timer { gap: 8px; }
  .timer-box { min-width: 52px; padding: 10px; }
  .timer-box .val { font-size: 20px; }
  .timer-sep { font-size: 16px; }
  .sec-head h2 { font-size: 22px; }
  .ticket-card { padding: 28px 18px; }
  .faq-item { padding: 20px; }
  .footer-bottom { font-size: 12px; }
}
