/* roulang page: index */
:root{
      --bg:#0c1020;
      --bg-soft:#12182b;
      --surface:#ffffff;
      --surface-soft:#f7f8fc;
      --surface-warm:#fff7ed;
      --text:#172033;
      --text-soft:#5f6b80;
      --muted:#8b95a7;
      --primary:#ff5a3d;
      --primary-dark:#e5452c;
      --primary-soft:#fff0ec;
      --secondary:#605bff;
      --secondary-soft:#eef0ff;
      --accent:#10b981;
      --warning:#f59e0b;
      --border:#e6e9f2;
      --border-dark:rgba(255,255,255,.14);
      --shadow-sm:0 10px 24px rgba(18,24,43,.08);
      --shadow-md:0 18px 42px rgba(18,24,43,.14);
      --shadow-lg:0 28px 70px rgba(12,16,32,.28);
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:28px;
      --radius-xl:36px;
      --container:1180px;
      --ease:all .24s ease;
      --font:"PingFang SC","Microsoft YaHei","Hiragino Sans GB",Arial,sans-serif;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(96,91,255,.12), transparent 36%),
        linear-gradient(180deg,#fff 0%,#f7f8fc 42%,#fff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:rgba(255,90,61,.18);color:var(--primary-dark)}
    :focus-visible{outline:3px solid rgba(255,90,61,.35);outline-offset:3px}

    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:82px 0;
      position:relative;
    }
    .section.compact{padding:56px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary-dark);
      background:var(--primary-soft);
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
      margin-bottom:12px;
    }
    .section-title{
      font-size:clamp(28px,3.6vw,44px);
      line-height:1.18;
      letter-spacing:-.04em;
      color:var(--text);
      font-weight:900;
    }
    .section-desc{
      color:var(--text-soft);
      max-width:560px;
      font-size:16px;
      margin-top:12px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(18px);
      background:rgba(255,255,255,.82);
      border-bottom:1px solid rgba(230,233,242,.82);
      box-shadow:0 8px 30px rgba(23,32,51,.04);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      color:var(--text);
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      background:
        radial-gradient(circle at 30% 25%,rgba(255,255,255,.9),transparent 18%),
        linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 24px rgba(255,90,61,.26);
      font-size:16px;
      font-weight:950;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-text strong{font-size:18px}
    .brand-text span{font-size:12px;color:var(--muted);font-weight:700;letter-spacing:.04em}

    .nav-center{
      display:flex;
      align-items:center;
      gap:12px;
      flex:1;
      justify-content:center;
      min-width:0;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      color:var(--text-soft);
      font-size:14px;
      font-weight:800;
      transition:var(--ease);
    }
    .nav-link:hover{
      color:var(--text);
      background:rgba(96,91,255,.07);
    }
    .nav-link.active{
      color:var(--primary-dark);
      background:var(--primary-soft);
    }
    .stage-chips{
      display:flex;
      gap:8px;
      padding-left:12px;
      border-left:1px solid var(--border);
      overflow:auto;
      scrollbar-width:none;
    }
    .stage-chips::-webkit-scrollbar{display:none}
    .stage-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      white-space:nowrap;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      color:var(--text-soft);
      background:var(--surface-soft);
      border:1px solid var(--border);
      transition:var(--ease);
    }
    .stage-chip::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--muted);
    }
    .stage-chip.live{color:#047857;background:#ecfdf5;border-color:#bbf7d0}
    .stage-chip.live::before{background:var(--accent);box-shadow:0 0 0 5px rgba(16,185,129,.12)}
    .stage-chip:hover{transform:translateY(-1px);box-shadow:var(--shadow-sm)}

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .quick-search{
      width:190px;
      height:42px;
      border:1px solid var(--border);
      border-radius:999px;
      background:#fff;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      color:var(--muted);
      transition:var(--ease);
    }
    .quick-search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      font-size:13px;
      color:var(--text);
    }
    .quick-search:focus-within{
      border-color:rgba(255,90,61,.45);
      box-shadow:0 0 0 4px rgba(255,90,61,.12);
    }
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      background:var(--surface-soft);
      color:var(--text);
      border:1px solid var(--border);
    }
    .menu-toggle span{
      display:block;
      width:18px;
      height:2px;
      background:currentColor;
      margin:4px auto;
      border-radius:99px;
      transition:var(--ease);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      transition:var(--ease);
      white-space:nowrap;
      border:1px solid transparent;
      user-select:none;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ff7b3d);
      box-shadow:0 14px 30px rgba(255,90,61,.28);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(255,90,61,.34)}
    .btn-secondary{
      color:var(--text);
      background:#fff;
      border-color:rgba(255,255,255,.5);
      box-shadow:0 14px 30px rgba(12,16,32,.18);
    }
    .btn-secondary:hover{transform:translateY(-2px);background:#fff7ed}
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.72);
      border-color:var(--border);
    }
    .btn-ghost:hover{background:#fff;box-shadow:var(--shadow-sm);transform:translateY(-1px)}
    .btn-dark{
      color:#fff;
      background:var(--bg);
      box-shadow:0 14px 30px rgba(12,16,32,.22);
    }
    .btn-dark:hover{transform:translateY(-2px);background:#171c31}

    .hero{
      min-height:680px;
      display:flex;
      align-items:center;
      color:#fff;
      overflow:hidden;
      background:var(--bg);
      padding:96px 0 74px;
    }
    .hero-video-bg{
      position:absolute;
      inset:0;
      overflow:hidden;
      z-index:0;
    }
    .hero-video-bg::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(110deg,rgba(12,16,32,.92) 0%,rgba(12,16,32,.74) 38%,rgba(12,16,32,.34) 68%,rgba(12,16,32,.78) 100%),
        radial-gradient(circle at 74% 18%,rgba(255,90,61,.45),transparent 28%),
        radial-gradient(circle at 35% 92%,rgba(96,91,255,.42),transparent 28%);
      z-index:2;
    }
    .hero-video-bg::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:52px 52px;
      opacity:.36;
      z-index:3;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent);
    }
    .video-motion{
      position:absolute;
      inset:-12%;
      background:
        linear-gradient(120deg,rgba(255,90,61,.26),transparent 22%,rgba(96,91,255,.25) 48%,transparent 66%,rgba(16,185,129,.18)),
        repeating-linear-gradient(100deg,rgba(255,255,255,.10) 0 1px,transparent 1px 36px);
      filter:blur(.2px);
      transform:rotate(-3deg) scale(1.08);
      animation:flow 16s linear infinite alternate;
      z-index:1;
    }
    @keyframes flow{
      from{transform:translate3d(-2%,0,0) rotate(-3deg) scale(1.08)}
      to{transform:translate3d(2%,1%,0) rotate(-3deg) scale(1.12)}
    }
    .hero-inner{
      position:relative;
      z-index:5;
      display:grid;
      grid-template-columns:minmax(0,1.04fr) 390px;
      align-items:center;
      gap:46px;
    }
    .hero-copy{max-width:780px}
    .hero-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:22px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:8px 13px;
      font-size:13px;
      font-weight:850;
      color:#fff;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(12px);
    }
    .badge.hot{background:rgba(255,90,61,.18);border-color:rgba(255,90,61,.42)}
    .badge.safe{background:rgba(16,185,129,.16);border-color:rgba(16,185,129,.35)}
    .hero h1{
      font-size:clamp(38px,6vw,74px);
      line-height:1.05;
      letter-spacing:-.07em;
      font-weight:950;
      max-width:900px;
      text-shadow:0 16px 40px rgba(0,0,0,.22);
    }
    .hero-lead{
      max-width:760px;
      color:rgba(255,255,255,.82);
      font-size:clamp(16px,2vw,20px);
      line-height:1.9;
      margin:24px 0 30px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      margin-bottom:30px;
    }
    .hero-data{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .data-pill{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:156px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(14px);
    }
    .data-pill strong{
      display:block;
      font-size:20px;
      line-height:1;
      color:#fff;
      letter-spacing:-.03em;
    }
    .data-pill span{
      display:block;
      color:rgba(255,255,255,.66);
      font-size:12px;
      margin-top:4px;
    }
    .play-panel{
      align-self:stretch;
      min-height:420px;
      border-radius:var(--radius-xl);
      padding:24px;
      background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.08));
      border:1px solid rgba(255,255,255,.22);
      box-shadow:var(--shadow-lg);
      backdrop-filter:blur(18px);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .play-panel::before{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-90px;
      top:-110px;
      border-radius:50%;
      background:rgba(255,90,61,.28);
      filter:blur(12px);
    }
    .play-top{
      position:relative;
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
    }
    .ticket-label{
      color:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:800;
    }
    .ticket-title{
      font-size:26px;
      line-height:1.22;
      margin-top:8px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .play-button{
      width:74px;
      height:74px;
      flex:0 0 auto;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#fff;
      color:var(--primary);
      box-shadow:0 20px 46px rgba(0,0,0,.25);
      transition:var(--ease);
    }
    .play-button:hover{transform:scale(1.06)}
    .play-button i{
      width:0;height:0;
      border-top:13px solid transparent;
      border-bottom:13px solid transparent;
      border-left:20px solid currentColor;
      margin-left:5px;
    }
    .panel-lines{
      position:relative;
      display:grid;
      gap:12px;
      margin:34px 0;
    }
    .panel-line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:14px;
      border-radius:16px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.76);
      font-size:13px;
    }
    .panel-line strong{color:#fff}
    .count-card{
      position:relative;
      border-radius:24px;
      background:#fff;
      color:var(--text);
      padding:18px;
    }
    .count-card small{
      display:block;
      color:var(--muted);
      font-weight:800;
      margin-bottom:10px;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:8px;
    }
    .timebox{
      text-align:center;
      background:var(--surface-soft);
      border:1px solid var(--border);
      border-radius:14px;
      padding:10px 6px;
    }
    .timebox b{
      display:block;
      font-size:20px;
      color:var(--primary-dark);
      line-height:1.05;
    }
    .timebox span{font-size:11px;color:var(--muted);font-weight:800}

    .limit-bar{
      background:linear-gradient(90deg,#171c31,#2b2140 54%,#4d1f2a);
      color:#fff;
      padding:14px 0;
      overflow:hidden;
    }
    .limit-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .limit-text{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:850;
    }
    .limit-text span:first-child{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:30px;
      padding:0 11px;
      border-radius:999px;
      background:rgba(255,90,61,.22);
      color:#ffd5cc;
      border:1px solid rgba(255,90,61,.36);
      font-size:12px;
    }
    .limit-note{color:rgba(255,255,255,.72);font-size:13px}

    .highlight-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .feature-card{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
      padding:28px;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
    .feature-card.large{
      min-height:355px;
      background:
        radial-gradient(circle at 82% 12%,rgba(255,90,61,.16),transparent 26%),
        linear-gradient(135deg,#fff,#fff7f2);
      padding:34px;
    }
    .feature-card.large::after{
      content:"6080";
      position:absolute;
      right:-8px;
      bottom:-34px;
      font-size:126px;
      line-height:1;
      font-weight:950;
      color:rgba(255,90,61,.08);
      letter-spacing:-.08em;
    }
    .icon{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--secondary),#8b5cf6);
      box-shadow:0 14px 28px rgba(96,91,255,.22);
      font-weight:950;
      margin-bottom:18px;
    }
    .feature-card:nth-child(2) .icon,
    .mini-card:nth-child(2) .icon{background:linear-gradient(135deg,var(--primary),#fb923c)}
    .feature-card h2,.feature-card h3{
      font-size:28px;
      line-height:1.25;
      font-weight:950;
      letter-spacing:-.04em;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .feature-card h3{font-size:21px}
    .feature-card p{
      color:var(--text-soft);
      position:relative;
      z-index:1;
    }
    .feature-points{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:24px;
    }
    .point{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(230,233,242,.8);
      color:var(--text-soft);
      font-size:14px;
      font-weight:750;
    }
    .check{
      width:20px;
      height:20px;
      border-radius:50%;
      background:rgba(16,185,129,.12);
      color:#059669;
      display:grid;
      place-items:center;
      font-size:13px;
      font-weight:950;
      flex:0 0 auto;
    }
    .mini-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:22px;
    }

    .schedule-wrap{
      border-radius:var(--radius-xl);
      padding:28px;
      background:
        linear-gradient(135deg,#151b31,#251a36 64%,#381d2c);
      color:#fff;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .schedule-wrap::before{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      right:-150px;
      top:-150px;
      border-radius:50%;
      background:rgba(255,90,61,.26);
      filter:blur(14px);
    }
    .schedule-head{
      position:relative;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:24px;
    }
    .schedule-head h2{
      font-size:clamp(28px,4vw,42px);
      line-height:1.2;
      letter-spacing:-.04em;
    }
    .schedule-head p{
      color:rgba(255,255,255,.72);
      max-width:520px;
      margin-top:10px;
    }
    .time-card-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .time-card{
      min-height:180px;
      border-radius:22px;
      padding:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      transition:var(--ease);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .time-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.14)}
    .time-card .time{
      font-size:28px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .time-card .tag{
      display:inline-flex;
      width:max-content;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      font-size:12px;
      color:#ffd5cc;
      background:rgba(255,90,61,.16);
      border:1px solid rgba(255,90,61,.32);
      font-weight:850;
      margin:10px 0 12px;
    }
    .time-card p{font-size:14px;color:rgba(255,255,255,.72)}
    .time-card strong{font-size:14px;color:#fff}

    .info-strip{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .kpi{
      background:#fff;
      border:1px solid var(--border);
      border-radius:22px;
      padding:18px;
      box-shadow:var(--shadow-sm);
    }
    .kpi span{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .kpi strong{
      display:block;
      margin-top:8px;
      font-size:26px;
      line-height:1.1;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .kpi em{
      display:block;
      font-style:normal;
      margin-top:6px;
      color:var(--text-soft);
      font-size:13px;
    }

    .category-ribbon{
      display:flex;
      gap:12px;
      overflow:auto;
      padding:4px 0 16px;
      scrollbar-width:none;
    }
    .category-ribbon::-webkit-scrollbar{display:none}
    .category-card{
      min-width:225px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(255,90,61,.28)}
    .category-card b{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      font-size:18px;
      letter-spacing:-.03em;
    }
    .category-card b span{
      width:32px;
      height:32px;
      border-radius:12px;
      background:var(--secondary-soft);
      color:var(--secondary);
      display:grid;
      place-items:center;
      font-size:13px;
    }
    .category-card p{
      color:var(--text-soft);
      font-size:14px;
      margin-top:10px;
    }

    .live-layout{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:stretch;
    }
    .cover-card{
      min-height:390px;
      border-radius:var(--radius-xl);
      padding:28px;
      color:#fff;
      background:
        linear-gradient(145deg,rgba(12,16,32,.92),rgba(12,16,32,.45)),
        radial-gradient(circle at 72% 20%,rgba(255,90,61,.8),transparent 28%),
        linear-gradient(135deg,#293156,#11162a);
      box-shadow:var(--shadow-lg);
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .cover-card::after{
      content:"";
      position:absolute;
      inset:24px;
      border-radius:26px;
      border:1px solid rgba(255,255,255,.14);
      pointer-events:none;
    }
    .cover-title{
      position:relative;
      z-index:1;
    }
    .cover-title span{
      display:inline-flex;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.18);
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      color:#ffd5cc;
      margin-bottom:16px;
    }
    .cover-title h2{
      font-size:34px;
      line-height:1.2;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .cover-bottom{
      position:relative;
      z-index:1;
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:center;
    }
    .cover-bottom p{color:rgba(255,255,255,.72);font-size:14px;max-width:260px}
    .watch-dot{
      width:58px;
      height:58px;
      border-radius:50%;
      background:#fff;
      color:var(--primary);
      display:grid;
      place-items:center;
      font-weight:950;
      box-shadow:0 16px 36px rgba(0,0,0,.24);
    }
    .watch-list{
      display:grid;
      gap:14px;
    }
    .watch-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:16px;
      padding:18px;
      border-radius:22px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .watch-item:hover{transform:translateX(4px);box-shadow:var(--shadow-md)}
    .watch-num{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-weight:950;
    }
    .watch-item h3{font-size:18px;line-height:1.25;letter-spacing:-.03em}
    .watch-item p{font-size:14px;color:var(--text-soft);margin-top:4px}
    .watch-state{
      padding:6px 10px;
      border-radius:999px;
      background:#ecfdf5;
      color:#047857;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .news-area{
      display:grid;
      grid-template-columns:1fr 330px;
      gap:24px;
      align-items:start;
    }
    .news-list{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .news-row{
      display:grid;
      grid-template-columns:118px 1fr 108px;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid var(--border);
      transition:var(--ease);
    }
    .news-row:last-child{border-bottom:0}
    .news-row:hover{
      background:linear-gradient(90deg,var(--primary-soft),#fff);
    }
    .news-date{
      color:var(--muted);
      font-size:13px;
      font-weight:850;
    }
    .news-row a{
      font-size:17px;
      font-weight:900;
      letter-spacing:-.03em;
      color:var(--text);
    }
    .news-row a:hover{color:var(--primary-dark)}
    .news-row p{
      color:var(--text-soft);
      font-size:14px;
      margin-top:4px;
    }
    .status{
      justify-self:end;
      border-radius:999px;
      padding:6px 10px;
      background:var(--secondary-soft);
      color:var(--secondary);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .recommend{
      border-radius:var(--radius-lg);
      padding:24px;
      background:var(--bg);
      color:#fff;
      box-shadow:var(--shadow-lg);
      position:sticky;
      top:98px;
    }
    .recommend h3{
      font-size:23px;
      line-height:1.28;
      letter-spacing:-.04em;
      margin-bottom:12px;
    }
    .recommend p{color:rgba(255,255,255,.72);font-size:14px}
    .recommend-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:20px 0;
    }
    .recommend-tags span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.12);
      font-size:12px;
      font-weight:850;
      color:rgba(255,255,255,.78);
    }

    .plans{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .plan-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .plan-card.featured{
      border-color:rgba(255,90,61,.35);
      background:
        radial-gradient(circle at top right,rgba(255,90,61,.14),transparent 35%),
        #fff;
      transform:translateY(-8px);
    }
    .plan-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
    .plan-card.featured:hover{transform:translateY(-10px)}
    .plan-tag{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      color:var(--primary-dark);
      background:var(--primary-soft);
      font-size:12px;
      font-weight:950;
      margin-bottom:14px;
    }
    .plan-card h3{
      font-size:24px;
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .price{
      display:flex;
      align-items:flex-end;
      gap:5px;
      margin:18px 0;
    }
    .price strong{
      font-size:40px;
      line-height:1;
      letter-spacing:-.06em;
    }
    .price span{color:var(--muted);font-weight:800}
    .plan-list{
      display:grid;
      gap:10px;
      margin:18px 0 24px;
      color:var(--text-soft);
      font-size:14px;
    }
    .plan-list li{
      list-style:none;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }

    .milestone{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
      padding:28px;
    }
    .line-steps{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
      position:relative;
    }
    .line-steps::before{
      content:"";
      position:absolute;
      left:8%;
      right:8%;
      top:28px;
      height:2px;
      background:linear-gradient(90deg,var(--primary),var(--secondary),var(--accent));
      opacity:.24;
    }
    .step{
      position:relative;
      padding-top:52px;
    }
    .step-dot{
      position:absolute;
      top:12px;
      left:0;
      width:34px;
      height:34px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#fff;
      border:7px solid var(--primary-soft);
      color:var(--primary-dark);
      font-size:12px;
      font-weight:950;
      box-shadow:var(--shadow-sm);
    }
    .step h3{font-size:18px;letter-spacing:-.03em;margin-bottom:8px}
    .step p{color:var(--text-soft);font-size:14px}

    .faq-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:start;
    }
    .faq-intro{
      border-radius:var(--radius-lg);
      padding:28px;
      background:linear-gradient(135deg,var(--secondary-soft),#fff);
      border:1px solid var(--border);
    }
    .faq-intro h2{
      font-size:34px;
      line-height:1.22;
      letter-spacing:-.04em;
      margin-bottom:12px;
    }
    .faq-intro p{color:var(--text-soft)}
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      background:#fff;
      border:1px solid var(--border);
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow-sm);
    }
    .faq-question{
      width:100%;
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      padding:18px 20px;
      text-align:left;
      background:#fff;
      color:var(--text);
      font-weight:950;
      transition:var(--ease);
    }
    .faq-question:hover{background:var(--surface-soft)}
    .faq-question span:last-child{
      width:26px;height:26px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      flex:0 0 auto;
      transition:var(--ease);
    }
    .faq-answer{
      display:none;
      padding:0 20px 20px;
      color:var(--text-soft);
      font-size:15px;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg)}

    .booking{
      padding-bottom:92px;
    }
    .booking-panel{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:28px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at top left,rgba(255,90,61,.16),transparent 34%),
        linear-gradient(135deg,#fff,#f8f9ff);
      border:1px solid var(--border);
      box-shadow:var(--shadow-md);
      padding:32px;
    }
    .booking-copy h2{
      font-size:clamp(28px,4vw,46px);
      line-height:1.18;
      letter-spacing:-.05em;
      margin-bottom:14px;
    }
    .booking-copy p{color:var(--text-soft);margin-bottom:22px}
    .contact-cards{
      display:grid;
      gap:12px;
    }
    .contact-card{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.76);
      border:1px solid var(--border);
    }
    .contact-card b{display:block;font-size:15px}
    .contact-card span{display:block;color:var(--text-soft);font-size:13px;margin-top:2px}
    .form-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:28px;
      padding:24px;
      box-shadow:var(--shadow-sm);
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .field{display:grid;gap:7px}
    .field.full{grid-column:1/-1}
    .field label{
      font-size:13px;
      color:var(--text);
      font-weight:900;
    }
    .field input,.field select,.field textarea{
      width:100%;
      border:1px solid var(--border);
      background:var(--surface-soft);
      color:var(--text);
      border-radius:15px;
      min-height:48px;
      padding:11px 13px;
      outline:0;
      transition:var(--ease);
    }
    .field textarea{min-height:104px;resize:vertical}
    .field input:focus,.field select:focus,.field textarea:focus{
      border-color:rgba(255,90,61,.48);
      background:#fff;
      box-shadow:0 0 0 4px rgba(255,90,61,.10);
    }
    .form-note{
      color:var(--muted);
      font-size:13px;
      margin:14px 0 18px;
    }

    .site-footer{
      background:#0b1020;
      color:#fff;
      padding:54px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      width:380px;height:380px;border-radius:50%;
      right:-180px;top:-190px;
      background:rgba(255,90,61,.16);
      filter:blur(18px);
    }
    .footer-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr;
      gap:30px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      font-weight:950;
      font-size:20px;
    }
    .footer-brand .brand-mark{width:38px;height:38px;border-radius:14px}
    .footer-desc{
      color:rgba(255,255,255,.66);
      max-width:520px;
      font-size:14px;
    }
    .footer-col h3{
      font-size:15px;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a,.footer-links span{
      color:rgba(255,255,255,.62);
      font-size:14px;
      transition:var(--ease);
    }
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .footer-bottom{
      position:relative;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.48);
      font-size:13px;
      padding-top:22px;
    }

    .float-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:40;
      width:min(760px,calc(100% - 28px));
      border-radius:999px;
      background:rgba(12,16,32,.86);
      border:1px solid rgba(255,255,255,.16);
      box-shadow:0 18px 48px rgba(12,16,32,.32);
      backdrop-filter:blur(16px);
      color:#fff;
      padding:10px 12px 10px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .float-cta span{
      color:rgba(255,255,255,.78);
      font-size:14px;
      font-weight:800;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .float-cta .btn{min-height:40px;padding:0 16px}

    @media (max-width:1024px){
      .nav-center{
        position:fixed;
        left:20px;
        right:20px;
        top:86px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        background:#fff;
        padding:16px;
        border:1px solid var(--border);
        border-radius:24px;
        box-shadow:var(--shadow-lg);
      }
      body.nav-open .nav-center{display:flex}
      .stage-chips{border-left:0;padding-left:0;flex-wrap:wrap;overflow:visible}
      .quick-search{display:none}
      .menu-toggle{display:block}
      .hero-inner{grid-template-columns:1fr}
      .play-panel{min-height:360px}
      .highlight-grid,.live-layout,.news-area,.faq-grid,.booking-panel{grid-template-columns:1fr}
      .time-card-grid,.info-strip,.line-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
      .plans{grid-template-columns:1fr}
      .plan-card.featured{transform:none}
      .recommend{position:relative;top:auto}
      .footer-grid{grid-template-columns:1fr 1fr}
    }

    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .section{padding:62px 0}
      .section-head{display:block}
      .section-desc{font-size:15px}
      .hero{min-height:auto;padding:72px 0 56px}
      .hero h1{font-size:42px}
      .hero-lead{font-size:16px;margin:20px 0 24px}
      .hero-actions{align-items:stretch}
      .hero-actions .btn{width:100%}
      .data-pill{flex:1 1 145px}
      .play-panel{border-radius:26px;padding:20px}
      .limit-inner{align-items:flex-start;flex-direction:column}
      .feature-points,.time-card-grid,.info-strip,.plans,.line-steps,.form-grid{grid-template-columns:1fr}
      .line-steps::before{left:16px;right:auto;top:24px;bottom:24px;width:2px;height:auto}
      .step{padding-top:0;padding-left:54px}
      .step-dot{top:4px;left:0}
      .news-row{grid-template-columns:1fr;gap:8px}
      .status{justify-self:start}
      .cover-bottom{align-items:flex-start;flex-direction:column}
      .watch-item{grid-template-columns:auto 1fr}
      .watch-state{grid-column:2}
      .footer-grid{grid-template-columns:1fr}
      .float-cta{border-radius:22px;align-items:flex-start;flex-direction:column;padding:14px}
      .float-cta .btn{width:100%}
    }

    @media (max-width:520px){
      .nav-wrap{min-height:68px}
      .brand-text span{display:none}
      .brand-text strong{font-size:16px}
      .brand-mark{width:38px;height:38px}
      .nav-actions .btn{display:none}
      .hero h1{font-size:34px;letter-spacing:-.05em}
      .ticket-title{font-size:22px}
      .countdown{grid-template-columns:repeat(2,1fr)}
      .feature-card,.feature-card.large,.schedule-wrap,.booking-panel{padding:20px;border-radius:24px}
      .section-title{font-size:28px}
      .category-card{min-width:205px}
      .footer-bottom{padding-bottom:74px}
    }
