/* roulang page: index */
:root {
      --bg: #fff8fb;
      --bg-2: #f7f2ff;
      --panel: rgba(255, 255, 255, .84);
      --panel-solid: #ffffff;
      --text: #241f33;
      --muted: #6f6780;
      --subtle: #948ca5;
      --primary: #a855f7;
      --primary-2: #ec4899;
      --primary-3: #7c3aed;
      --accent: #22c55e;
      --warning: #f59e0b;
      --danger: #ef4444;
      --line: rgba(92, 70, 125, .16);
      --line-strong: rgba(124, 58, 237, .28);
      --shadow: 0 24px 70px rgba(88, 28, 135, .16);
      --shadow-soft: 0 14px 38px rgba(88, 28, 135, .10);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1160px;
      --nav-h: 76px;
      --ease: cubic-bezier(.2, .8, .2, 1);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: var(--font);
      color: var(--text);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 8%, rgba(236, 72, 153, .18), transparent 32%),
        radial-gradient(circle at 88% 14%, rgba(168, 85, 247, .20), transparent 30%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 42%, var(--bg-2) 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    ::selection {
      background: rgba(168, 85, 247, .22);
      color: var(--text);
    }

    :focus-visible {
      outline: 3px solid rgba(168, 85, 247, .36);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255, 248, 251, .78);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--text);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 14px 30px rgba(168, 85, 247, .28);
      background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .85), transparent 18%),
        linear-gradient(135deg, var(--primary-2), var(--primary-3));
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 17px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 360px;
    }

    .top-nav {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 800;
      transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
    }

    .top-nav a:hover {
      color: var(--primary-3);
      background: rgba(168, 85, 247, .09);
      transform: translateY(-1px);
    }

    .top-nav a.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 24px rgba(168, 85, 247, .22);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-search {
      width: 218px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0 14px;
      background: rgba(255, 255, 255, .72);
      color: var(--subtle);
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    }

    .nav-search:focus-within {
      border-color: var(--line-strong);
      box-shadow: 0 0 0 4px rgba(168, 85, 247, .10);
    }

    .nav-search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .nav-search input::placeholder {
      color: var(--subtle);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: .01em;
      border: 1px solid transparent;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
      user-select: none;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary-3), var(--primary-2));
      box-shadow: 0 18px 34px rgba(168, 85, 247, .28);
    }

    .btn-primary:hover {
      box-shadow: 0 22px 44px rgba(168, 85, 247, .34);
    }

    .btn-light {
      color: var(--primary-3);
      background: rgba(255, 255, 255, .86);
      border-color: rgba(255, 255, 255, .78);
      box-shadow: 0 16px 32px rgba(88, 28, 135, .13);
    }

    .btn-light:hover {
      background: #fff;
      border-color: rgba(168, 85, 247, .24);
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255, 255, 255, .58);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      color: var(--primary-3);
      background: #fff;
      border-color: rgba(168, 85, 247, .26);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 5px 12px;
      border-radius: 999px;
      color: var(--primary-3);
      background: rgba(168, 85, 247, .10);
      border: 1px solid rgba(168, 85, 247, .18);
      font-size: 13px;
      font-weight: 900;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 86px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-3);
      font-weight: 900;
      margin-bottom: 10px;
      letter-spacing: .02em;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.18;
      letter-spacing: -.045em;
      color: var(--text);
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.9;
    }

    .hero {
      position: relative;
      min-height: calc(100vh - var(--nav-h));
      display: grid;
      align-items: center;
      padding: 62px 0 82px;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 18px 20px 34px;
      z-index: -2;
      border-radius: 44px;
      background:
        linear-gradient(120deg, rgba(36, 31, 51, .72), rgba(124, 58, 237, .40)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .55), transparent 18%),
        radial-gradient(circle at 76% 26%, rgba(236, 72, 153, .55), transparent 24%),
        radial-gradient(circle at 50% 92%, rgba(34, 197, 94, .22), transparent 24%),
        linear-gradient(135deg, #2e1065 0%, #7e22ce 45%, #db2777 100%);
      box-shadow: var(--shadow);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 18px 20px 34px;
      z-index: -1;
      border-radius: 44px;
      background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 84%);
    }

    .hero-inner {
      position: relative;
      min-height: 640px;
      display: grid;
      align-items: center;
      justify-items: center;
      text-align: center;
      color: #fff;
      padding: 48px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .16);
      border: 1px solid rgba(255, 255, 255, .28);
      backdrop-filter: blur(16px);
      color: rgba(255, 255, 255, .92);
      font-weight: 900;
      margin-bottom: 22px;
    }

    h1.hero-title {
      max-width: 980px;
      font-size: clamp(40px, 7vw, 82px);
      line-height: 1.05;
      letter-spacing: -.065em;
      text-wrap: balance;
      text-shadow: 0 18px 50px rgba(0,0,0,.20);
    }

    .hero-lead {
      max-width: 820px;
      margin: 24px auto 0;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(160px, 1fr));
      gap: 14px;
      width: min(760px, 100%);
      margin: 38px auto 0;
    }

    .proof-pill {
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .22);
      backdrop-filter: blur(16px);
      color: rgba(255, 255, 255, .86);
      text-align: left;
    }

    .proof-pill strong {
      display: block;
      font-size: 24px;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 3px;
    }

    .hero-count-strip {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translate(-50%, 50%);
      width: min(980px, calc(100% - 44px));
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 16px 18px 16px 24px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .90);
      box-shadow: 0 24px 60px rgba(88, 28, 135, .20);
      border: 1px solid rgba(255, 255, 255, .72);
      color: var(--text);
      backdrop-filter: blur(18px);
    }

    .strip-title {
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .strip-title span {
      color: var(--primary-3);
    }

    .mini-timer {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mini-time-box {
      min-width: 54px;
      padding: 8px 10px;
      border-radius: 16px;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, var(--primary-3), var(--primary-2));
      box-shadow: 0 10px 20px rgba(168, 85, 247, .18);
      font-weight: 950;
      line-height: 1.1;
    }

    .mini-time-box small {
      display: block;
      margin-top: 3px;
      color: rgba(255,255,255,.78);
      font-size: 11px;
      font-weight: 800;
    }

    .countdown-section {
      padding-top: 74px;
    }

    .count-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .count-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--panel-solid);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      padding: 30px;
    }

    .count-card.dark {
      color: #fff;
      background:
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, .45), transparent 30%),
        linear-gradient(135deg, #2e1065, #6d28d9 56%, #be185d);
      border-color: rgba(255,255,255,.16);
    }

    .timer-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .time-box {
      padding: 20px 14px;
      border-radius: 22px;
      text-align: center;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.20);
      backdrop-filter: blur(12px);
    }

    .time-box b {
      display: block;
      font-size: clamp(26px, 4vw, 44px);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .time-box span {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,.76);
      font-size: 13px;
      font-weight: 800;
    }

    .notice-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .notice-item {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(168, 85, 247, .08);
      border: 1px solid rgba(168, 85, 247, .12);
    }

    .notice-icon,
    .card-icon {
      width: 38px;
      height: 38px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 24px rgba(168, 85, 247, .18);
      flex: 0 0 auto;
    }

    .notice-item strong {
      display: block;
      margin-bottom: 2px;
      color: var(--text);
      line-height: 1.35;
    }

    .notice-item p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .highlight-wall {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      grid-template-rows: auto auto;
      gap: 18px;
    }

    .feature-card {
      position: relative;
      min-height: 210px;
      padding: 26px;
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(168, 85, 247, .26);
    }

    .feature-card.large {
      grid-row: span 2;
      min-height: 438px;
      background:
        radial-gradient(circle at 82% 18%, rgba(236, 72, 153, .16), transparent 28%),
        linear-gradient(180deg, #fff, #fbf7ff);
    }

    .feature-card.tint {
      background:
        radial-gradient(circle at 80% 18%, rgba(34, 197, 94, .13), transparent 28%),
        #ffffff;
    }

    .feature-card h3 {
      margin-top: 18px;
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: -.03em;
    }

    .feature-card p {
      margin-top: 10px;
      color: var(--muted);
      line-height: 1.85;
    }

    .feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 22px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(124, 58, 237, .08);
      border: 1px solid rgba(124, 58, 237, .12);
      color: var(--primary-3);
      font-size: 13px;
      font-weight: 850;
    }

    .visual-orbit {
      position: absolute;
      right: -36px;
      bottom: -42px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.75) 0 20%, transparent 21%),
        conic-gradient(from 120deg, rgba(168,85,247,.95), rgba(236,72,153,.88), rgba(34,197,94,.55), rgba(168,85,247,.95));
      opacity: .22;
      filter: blur(.2px);
    }

    .ticket-area {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px;
      align-items: start;
    }

    .ticket-note {
      position: sticky;
      top: calc(var(--nav-h) + 24px);
      border-radius: var(--radius-xl);
      padding: 30px;
      background:
        radial-gradient(circle at 20% 12%, rgba(255,255,255,.45), transparent 24%),
        linear-gradient(135deg, #7c3aed, #db2777);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .ticket-note p {
      color: rgba(255,255,255,.84);
      margin-top: 12px;
    }

    .ticket-note .badge {
      background: rgba(255,255,255,.16);
      color: #fff;
      border-color: rgba(255,255,255,.22);
    }

    .ticket-list {
      display: grid;
      gap: 16px;
    }

    .ticket-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border-radius: 26px;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
    }

    .ticket-card:hover {
      transform: translateX(4px);
      border-color: rgba(168, 85, 247, .28);
      box-shadow: var(--shadow);
    }

    .ticket-card.featured {
      border: 1px solid rgba(236, 72, 153, .30);
      background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(124,58,237,.65), rgba(236,72,153,.58)) border-box;
    }

    .ticket-title {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 8px;
    }

    .ticket-title h3 {
      font-size: 22px;
      letter-spacing: -.025em;
    }

    .ticket-card p {
      color: var(--muted);
      max-width: 620px;
    }

    .ticket-price {
      text-align: right;
      min-width: 128px;
    }

    .ticket-price strong {
      display: block;
      font-size: 28px;
      color: var(--primary-3);
      line-height: 1.1;
      letter-spacing: -.04em;
    }

    .ticket-price span {
      display: block;
      margin-top: 4px;
      color: var(--subtle);
      font-size: 13px;
      font-weight: 800;
    }

    .info-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .news-panel,
    .recommend-panel,
    .form-panel,
    .faq-panel {
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .news-panel {
      padding: 14px;
    }

    .news-list {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      gap: 16px;
      align-items: center;
      min-height: 84px;
      padding: 14px;
      border-radius: 22px;
      transition: background .2s var(--ease), transform .2s var(--ease);
    }

    .news-list a:hover {
      background: rgba(168,85,247,.08);
      transform: translateX(3px);
    }

    .news-date {
      color: var(--primary-3);
      font-weight: 950;
      font-size: 14px;
      padding: 8px 10px;
      border-radius: 14px;
      background: rgba(168,85,247,.10);
      text-align: center;
    }

    .news-title {
      font-size: 17px;
      font-weight: 900;
      line-height: 1.45;
      color: var(--text);
    }

    .news-summary {
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .news-arrow {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--primary-3);
      transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
    }

    .news-list a:hover .news-arrow {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      transform: rotate(-12deg);
    }

    .recommend-panel {
      padding: 24px;
    }

    .recommend-panel h3 {
      font-size: 22px;
      letter-spacing: -.025em;
      margin-bottom: 14px;
    }

    .rank-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .rank-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding: 12px;
      border-radius: 18px;
      background: rgba(124, 58, 237, .06);
      border: 1px solid rgba(124, 58, 237, .08);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      font-weight: 950;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    .rank-list strong {
      display: block;
      line-height: 1.35;
    }

    .rank-list span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .cta-section {
      padding-top: 70px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 28px;
      align-items: stretch;
      padding: 30px;
      border-radius: 38px;
      background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.62), transparent 24%),
        linear-gradient(135deg, #2e1065, #7c3aed 52%, #db2777);
      box-shadow: var(--shadow);
      color: #fff;
    }

    .cta-copy {
      padding: 18px 10px 18px 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cta-copy h2 {
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.16;
      letter-spacing: -.05em;
    }

    .cta-copy p {
      margin-top: 16px;
      color: rgba(255,255,255,.82);
      line-height: 1.9;
    }

    .benefit-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .benefit {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.86);
      font-weight: 850;
    }

    .form-panel {
      padding: 24px;
      background: rgba(255,255,255,.92);
      color: var(--text);
    }

    .form-grid {
      display: grid;
      gap: 14px;
      margin-top: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--text);
      font-weight: 900;
      font-size: 14px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      min-height: 48px;
      padding: 12px 14px;
      background: #fff;
      color: var(--text);
      outline: 0;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }

    .field textarea {
      resize: vertical;
      min-height: 94px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(168,85,247,.48);
      box-shadow: 0 0 0 4px rgba(168,85,247,.10);
      background: #fff;
    }

    .form-hint {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
      margin-top: 10px;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      color: #166534;
      background: rgba(34,197,94,.12);
      border: 1px solid rgba(34,197,94,.20);
      font-weight: 850;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 24px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: calc(var(--nav-h) + 24px);
      padding: 28px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 82% 18%, rgba(236,72,153,.18), transparent 28%),
        rgba(255,255,255,.84);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .faq-aside p {
      margin-top: 12px;
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 24px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      box-shadow: 0 12px 28px rgba(88, 28, 135, .07);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 36px;
      gap: 16px;
      align-items: center;
      padding: 20px 22px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 950;
      font-size: 17px;
    }

    .faq-q span:last-child {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: var(--primary-3);
      background: rgba(168,85,247,.10);
      transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    }

    .faq-a {
      display: none;
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.9;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .faq-item.open .faq-q span:last-child {
      transform: rotate(45deg);
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    .site-footer {
      position: relative;
      z-index: 1;
      padding: 58px 0 96px;
      background: #21172f;
      color: rgba(255,255,255,.78);
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 19px;
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .footer-text {
      max-width: 620px;
      margin-top: 16px;
      color: rgba(255,255,255,.66);
      line-height: 1.9;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .footer-links a {
      padding: 10px 14px;
      border-radius: 999px;
      color: rgba(255,255,255,.78);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255,255,255,.12);
      transform: translateY(-2px);
    }

    .copyright {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.52);
      font-size: 14px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-tabs {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 60;
      padding: 8px;
      border-radius: 24px;
      background: rgba(255,255,255,.90);
      border: 1px solid var(--line);
      box-shadow: 0 18px 46px rgba(88,28,135,.18);
      backdrop-filter: blur(18px);
    }

    .mobile-tabs a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      border-radius: 18px;
      font-weight: 950;
      color: #fff;
      background: linear-gradient(135deg, var(--primary-3), var(--primary-2));
      box-shadow: 0 10px 22px rgba(168,85,247,.20);
    }

    .fixed-cta {
      position: fixed;
      left: 50%;
      bottom: 20px;
      z-index: 55;
      transform: translateX(-50%);
      width: min(720px, calc(100% - 32px));
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px 14px 12px 18px;
      border-radius: 999px;
      background: rgba(36,31,51,.88);
      color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 22px 54px rgba(36,31,51,.28);
      backdrop-filter: blur(18px);
    }

    .fixed-cta strong {
      display: block;
      line-height: 1.2;
    }

    .fixed-cta span {
      color: rgba(255,255,255,.68);
      font-size: 13px;
    }

    .fixed-cta .btn {
      min-height: 42px;
      padding: 0 18px;
    }

    @media (max-width: 1024px) {
      :root {
        --nav-h: 70px;
      }

      .nav-search {
        display: none;
      }

      .section {
        padding: 72px 0;
      }

      .section-head,
      .count-grid,
      .ticket-area,
      .info-layout,
      .cta-box,
      .faq-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .ticket-note,
      .faq-aside {
        position: relative;
        top: auto;
      }

      .highlight-wall {
        grid-template-columns: 1fr 1fr;
      }

      .feature-card.large {
        grid-column: span 2;
        min-height: 330px;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 82px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-text {
        max-width: 230px;
        font-size: 15px;
      }

      .top-nav,
      .nav-actions {
        display: none;
      }

      .hero {
        min-height: auto;
        padding: 28px 0 72px;
      }

      .hero::before,
      .hero::after {
        inset: 10px 10px 24px;
        border-radius: 30px;
      }

      .hero-inner {
        min-height: 590px;
        padding: 54px 14px 76px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
      }

      .proof-pill {
        text-align: center;
      }

      .hero-count-strip {
        grid-template-columns: 1fr;
        text-align: center;
        border-radius: 22px;
      }

      .mini-timer {
        justify-content: center;
      }

      .timer-row,
      .benefit-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .highlight-wall {
        grid-template-columns: 1fr;
      }

      .feature-card.large {
        grid-column: auto;
      }

      .ticket-card {
        grid-template-columns: 1fr;
      }

      .ticket-price {
        text-align: left;
      }

      .news-list a {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
        text-align: left;
        width: fit-content;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .mobile-tabs {
        display: block;
      }

      .fixed-cta {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .brand-text {
        max-width: 188px;
      }

      .section {
        padding: 58px 0;
      }

      .section-head {
        gap: 14px;
        margin-bottom: 24px;
      }

      .hero-inner {
        min-height: 620px;
      }

      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .mini-timer {
        gap: 6px;
      }

      .mini-time-box {
        min-width: 48px;
        padding: 8px 7px;
      }

      .timer-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .count-card,
      .feature-card,
      .ticket-note,
      .recommend-panel,
      .form-panel,
      .faq-aside {
        padding: 22px;
        border-radius: 24px;
      }

      .ticket-card {
        padding: 18px;
        border-radius: 22px;
      }

      .cta-box {
        padding: 20px;
        border-radius: 28px;
      }

      .benefit-strip {
        grid-template-columns: 1fr;
      }

      .faq-q {
        padding: 18px;
        font-size: 16px;
      }

      .faq-a {
        padding: 0 18px 18px;
      }
    }
