/* roulang page: index */
:root {
      --color-primary: #f5b51b;
      --color-primary-strong: #df9812;
      --color-secondary: #58b368;
      --color-secondary-dark: #2f8a43;
      --color-ink: #222019;
      --color-muted: #6f6a5f;
      --color-soft: #fff8e8;
      --color-soft-green: #eef9ef;
      --color-card: rgba(255, 255, 255, 0.86);
      --color-border: rgba(72, 61, 36, 0.14);
      --color-footer: #211a10;
      --color-danger: #e15b3b;
      --shadow-sm: 0 8px 22px rgba(62, 48, 17, 0.08);
      --shadow-md: 0 18px 46px rgba(77, 56, 12, 0.14);
      --shadow-lg: 0 28px 70px rgba(54, 42, 12, 0.18);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-pill: 999px;
      --container: 1180px;
      --transition: 180ms ease;
      --font-main: -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 {
      font-family: var(--font-main);
      color: var(--color-ink);
      line-height: 1.72;
      background:
        radial-gradient(circle at 8% 8%, rgba(245, 181, 27, 0.22), transparent 28%),
        radial-gradient(circle at 92% 15%, rgba(88, 179, 104, 0.18), transparent 26%),
        linear-gradient(180deg, #fffaf0 0%, #fffdf7 42%, #f7fbf1 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--color-border);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--color-ink);
      padding: 13px 14px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    input:focus,
    select:focus,
    textarea:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(245, 181, 27, 0.34);
      outline-offset: 3px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--color-primary-strong);
      box-shadow: 0 0 0 4px rgba(245, 181, 27, 0.15);
      background: #ffffff;
    }

    textarea {
      min-height: 104px;
      resize: vertical;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 238, 0.82);
      border-bottom: 1px solid rgba(92, 73, 29, 0.12);
    }

    .nav-wrap {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.02em;
      font-size: 21px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 30% 25%, #fff4ad 0 24%, transparent 25%),
        linear-gradient(135deg, #ffd75e, #f5b51b 56%, #65bd70);
      color: #2b210b;
      box-shadow: 0 10px 24px rgba(245, 181, 27, 0.28);
      transform: rotate(-5deg);
      font-size: 21px;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border: 1px solid rgba(92, 73, 29, 0.12);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.62);
    }

    .nav-link {
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      font-weight: 800;
      color: var(--color-muted);
    }

    .nav-link:hover,
    .nav-link.active {
     color: #2f2818;
      background: #ffffff;
      box-shadow: var(--shadow-sm);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mini-search {
      width: 210px;
      position: relative;
    }

    .mini-search input {
      height: 42px;
      border-radius: var(--radius-pill);
      padding: 10px 14px 10px 38px;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.72);
    }

    .mini-search::before {
      content: "⌕";
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-muted);
      z-index: 1;
      font-size: 18px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fff;
      color: var(--color-ink);
      box-shadow: var(--shadow-sm);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: var(--radius-pill);
      font-weight: 900;
      letter-spacing: -0.01em;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ffd86b, var(--color-primary) 58%, #f09a19);
      color: #241b08;
      box-shadow: 0 13px 28px rgba(223, 152, 18, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(223, 152, 18, 0.34);
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--color-secondary-dark);
      border-color: rgba(88, 179, 104, 0.28);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(88, 179, 104, 0.48);
      box-shadow: var(--shadow-md);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.56);
      color: var(--color-ink);
      border-color: rgba(72, 61, 36, 0.12);
    }

    .btn-ghost:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      background: rgba(245, 181, 27, 0.14);
      color: #8a5c06;
      border: 1px solid rgba(245, 181, 27, 0.24);
      font-weight: 900;
      font-size: 13px;
    }

    main {
      overflow: hidden;
    }

    section {
      position: relative;
      padding: 82px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-secondary-dark);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .section-desc {
      color: var(--color-muted);
      max-width: 760px;
      font-size: 17px;
    }

    .hero {
      padding: 58px 0 70px;
    }

    .hero-board {
      position: relative;
      min-height: 560px;
      border-radius: 38px;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(255, 234, 146, 0.92) 0%, rgba(255, 248, 218, 0.94) 46%, rgba(222, 248, 221, 0.92) 100%);
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.72);
      padding: clamp(28px, 5vw, 58px);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: stretch;
      gap: 28px;
    }

    .hero-board::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      right: -180px;
      top: -170px;
      background: radial-gradient(circle, rgba(245, 181, 27, 0.42), rgba(245, 181, 27, 0) 68%);
    }

    .hero-board::after {
      content: "";
      position: absolute;
      inset: auto -40px -160px 36%;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(88, 179, 104, 0.22), rgba(88, 179, 104, 0) 68%);
    }

    .hero-copy,
    .group-panel {
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 650px;
    }

    h1 {
      font-size: clamp(42px, 7vw, 78px);
      line-height: 0.98;
      letter-spacing: -0.07em;
      margin: 18px 0 22px;
    }

    .hero-copy p {
      font-size: clamp(17px, 2vw, 20px);
      color: #5b503d;
      max-width: 610px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 620px;
    }

    .data-chip {
      padding: 15px;
      background: rgba(255, 255, 255, 0.58);
      border: 1px solid rgba(255, 255, 255, 0.66);
      border-radius: 18px;
      box-shadow: 0 10px 26px rgba(91, 70, 18, 0.08);
    }

    .data-chip strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .data-chip span {
      display: block;
      margin-top: 5px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .group-panel {
      align-self: center;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 34px;
      padding: 24px;
      box-shadow: 0 18px 48px rgba(77, 59, 20, 0.14);
      backdrop-filter: blur(16px);
    }

    .group-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .group-top h2 {
      font-size: 26px;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--color-danger);
      font-weight: 900;
      font-size: 13px;
      white-space: nowrap;
    }

    .live-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-danger);
      box-shadow: 0 0 0 6px rgba(225, 91, 59, 0.12);
    }

    .banana-arc {
      height: 168px;
      position: relative;
      margin: 18px 0 22px;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255, 248, 226, 0.62), rgba(255, 255, 255, 0.35)),
        repeating-linear-gradient(90deg, rgba(245, 181, 27, 0.16) 0 2px, transparent 2px 26px);
      overflow: hidden;
    }

    .banana-arc span {
      position: absolute;
      display: block;
      width: 150px;
      height: 42px;
      border-radius: 80px 80px 80px 10px;
      background: linear-gradient(90deg, #ffe66d, #f5b51b);
      box-shadow: inset -10px -8px 0 rgba(223, 152, 18, 0.2), 0 12px 24px rgba(223, 152, 18, 0.18);
      transform-origin: left center;
    }

    .banana-arc span::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 10px;
      border-radius: 10px;
      right: -8px;
      top: 15px;
      background: #4d3813;
    }

    .banana-arc span:nth-child(1) { left: 24px; top: 82px; transform: rotate(-24deg); }
    .banana-arc span:nth-child(2) { left: 96px; top: 55px; transform: rotate(-9deg); }
    .banana-arc span:nth-child(3) { left: 176px; top: 58px; transform: rotate(12deg); }
    .banana-arc span:nth-child(4) { left: 236px; top: 86px; transform: rotate(29deg); }

    .progress-box {
      padding: 18px;
      border-radius: 22px;
      background: #fffaf0;
      border: 1px solid rgba(245, 181, 27, 0.25);
      margin-bottom: 18px;
    }

    .progress-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-muted);
      font-weight: 800;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .progress-bar {
      height: 14px;
      border-radius: var(--radius-pill);
      background: rgba(92, 73, 29, 0.12);
      overflow: hidden;
    }

    .progress-bar i {
      display: block;
      width: 82%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
      box-shadow: 0 0 18px rgba(88, 179, 104, 0.34);
    }

    .group-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .group-stat {
      padding: 13px 10px;
      border-radius: 17px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(72, 61, 36, 0.1);
      text-align: center;
    }

    .group-stat b {
      display: block;
      font-size: 20px;
      line-height: 1.1;
    }

    .group-stat small {
      color: var(--color-muted);
      font-weight: 700;
    }

    .countdown-section {
      padding-top: 22px;
    }

    .countdown-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 28px;
      align-items: center;
      padding: 28px;
      border-radius: 30px;
      background: #1f1a10;
      color: #fffaf0;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .countdown-wrap .section-kicker {
      color: #ffd86b;
    }

    .countdown-wrap .section-desc {
      color: rgba(255, 250, 240, 0.72);
    }

    .timer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .time-card {
      position: relative;
      min-height: 130px;
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
      border: 1px solid rgba(255, 255, 255, 0.14);
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    .time-card::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 90px;
      right: -35px;
      bottom: -35px;
      border-radius: 50%;
      background: rgba(245, 181, 27, 0.2);
    }

    .time-card strong {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .time-card span {
      margin-top: 8px;
      color: rgba(255, 250, 240, 0.68);
      font-weight: 800;
    }

    .highlight-wall {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 249, 239, 0.9));
    }

    .wall-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: start;
      margin-top: 30px;
    }

    .feature-stack {
      display: grid;
      gap: 14px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 16px;
      align-items: start;
      padding: 20px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .feature-row:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .icon-tile {
      width: 64px;
      height: 64px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      font-size: 28px;
      background: var(--color-soft);
      border: 1px solid rgba(245, 181, 27, 0.22);
    }

    .feature-row:nth-child(even) .icon-tile {
      background: var(--color-soft-green);
      border-color: rgba(88, 179, 104, 0.22);
    }

    .feature-row h3,
    .ticket-card h3,
    .news-list a h3,
    .faq-item h3,
    .review-card h3 {
      font-size: 20px;
      line-height: 1.3;
      margin-bottom: 7px;
      letter-spacing: -0.02em;
    }

    .feature-row p,
    .ticket-card p,
    .news-list a p,
    .review-card p {
      color: var(--color-muted);
      font-size: 15px;
    }

    .poster-card {
      position: sticky;
      top: 106px;
      padding: 26px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 20% 15%, rgba(255, 244, 173, 0.9), transparent 30%),
        linear-gradient(145deg, #ffffff, #fff2c6 48%, #e6f8df);
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow-lg);
      min-height: 470px;
      overflow: hidden;
    }

    .poster-card::after {
      content: "BANANA";
      position: absolute;
      bottom: 18px;
      right: -10px;
      font-size: 74px;
      font-weight: 1000;
      color: rgba(47, 40, 24, 0.05);
      letter-spacing: -0.06em;
    }

    .poster-card h3 {
      font-size: 34px;
      line-height: 1.08;
      letter-spacing: -0.05em;
      margin: 12px 0;
    }

    .poster-list {
      position: relative;
      z-index: 1;
      margin-top: 22px;
      display: grid;
      gap: 12px;
    }

    .poster-list li {
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(72, 61, 36, 0.1);
      color: var(--color-muted);
      font-weight: 800;
    }

    .poster-list b {
      color: var(--color-ink);
    }

    .ticket-section {
      background: #fffdf7;
    }

    .ticket-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 22px;
      align-items: stretch;
    }

    .ticket-note {
      border-radius: 30px;
      padding: 28px;
      background: var(--color-footer);
      color: #fffaf0;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .ticket-note::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(245, 181, 27, 0.2);
      right: -120px;
      top: -120px;
    }

    .ticket-note p {
      color: rgba(255, 250, 240, 0.72);
      margin-top: 10px;
    }

    .ticket-note ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 26px;
      position: relative;
      z-index: 1;
    }

    .ticket-note li {
      padding-left: 28px;
      position: relative;
      color: rgba(255, 250, 240, 0.86);
      font-weight: 750;
    }

    .ticket-note li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #ffd86b;
      font-weight: 1000;
    }

    .ticket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .ticket-card {
      position: relative;
      padding: 22px;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      min-height: 342px;
    }

    .ticket-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(245, 181, 27, 0.42);
    }

    .ticket-card.recommend {
      background: linear-gradient(180deg, #fff6d7, #ffffff);
      border-color: rgba(245, 181, 27, 0.5);
      box-shadow: 0 18px 42px rgba(223, 152, 18, 0.16);
    }

    .ticket-tag {
      width: max-content;
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      background: var(--color-soft-green);
      color: var(--color-secondary-dark);
      font-weight: 900;
      font-size: 12px;
      margin-bottom: 14px;
    }

    .ticket-price {
      margin: 16px 0 12px;
      font-size: 34px;
      line-height: 1;
      font-weight: 1000;
      letter-spacing: -0.05em;
    }

    .ticket-price small {
      font-size: 14px;
      color: var(--color-muted);
      font-weight: 800;
      letter-spacing: 0;
    }

    .ticket-card ul {
      list-style: none;
      display: grid;
      gap: 9px;
      margin: 14px 0 20px;
      color: var(--color-muted);
      font-size: 14px;
    }

    .ticket-card li::before {
      content: "•";
      color: var(--color-primary-strong);
      margin-right: 8px;
      font-weight: 1000;
    }

    .ticket-card .btn {
      margin-top: auto;
      width: 100%;
    }

    .news-section {
      background:
        linear-gradient(180deg, #fffdf7, rgba(255, 248, 232, 0.82));
    }

    .news-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
      gap: 24px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .news-list a:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(88, 179, 104, 0.28);
    }

    .news-date {
      min-height: 78px;
      border-radius: 20px;
      background: var(--color-soft);
      display: grid;
      place-items: center;
      text-align: center;
      color: #8a5c06;
      font-weight: 900;
    }

    .news-date b {
      display: block;
      font-size: 26px;
      line-height: 1;
    }

    .news-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(88, 179, 104, 0.1);
      color: var(--color-secondary-dark);
      font-weight: 1000;
    }

    .recommend-box {
      padding: 24px;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .recommend-box h3 {
      font-size: 24px;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
    }

    .hot-list {
      counter-reset: hot;
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .hot-list li {
      counter-increment: hot;
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: start;
      padding: 13px;
      border-radius: 18px;
      background: #fffaf0;
      border: 1px solid rgba(245, 181, 27, 0.16);
    }

    .hot-list li::before {
      content: counter(hot);
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #ffffff;
      color: var(--color-primary-strong);
      font-weight: 1000;
      box-shadow: var(--shadow-sm);
    }

    .hot-list b {
      display: block;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .hot-list span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .milestone-section {
      background: rgba(238, 249, 239, 0.74);
    }

    .timeline {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-md);
      background: #fff;
    }

    .timeline-item {
      padding: 26px;
      min-height: 230px;
      border-right: 1px solid var(--color-border);
      position: relative;
    }

    .timeline-item:last-child {
      border-right: 0;
    }

    .timeline-item::before {
      content: "";
      display: block;
      width: 44px;
      height: 8px;
      border-radius: var(--radius-pill);
      background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
      margin-bottom: 18px;
    }

    .timeline-item b {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--color-primary-strong);
      font-size: 14px;
    }

    .timeline-item h3 {
      font-size: 21px;
      line-height: 1.24;
      margin-bottom: 9px;
      letter-spacing: -0.02em;
    }

    .timeline-item p {
      color: var(--color-muted);
      font-size: 15px;
    }

    .review-section {
      background: #fffdf7;
    }

    .review-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    .score-card {
      padding: 30px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 20% 0%, rgba(245, 181, 27, 0.25), transparent 34%),
        #ffffff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-md);
    }

    .score-card strong {
      display: block;
      font-size: 70px;
      line-height: 0.98;
      letter-spacing: -0.08em;
    }

    .stars {
      color: #f3a91a;
      letter-spacing: 2px;
      font-size: 22px;
      margin: 12px 0;
    }

    .score-card p {
      color: var(--color-muted);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .review-card {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .review-user {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-weight: 900;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--color-soft-green);
      color: var(--color-secondary-dark);
      font-weight: 1000;
    }

    .signup-section {
      padding: 86px 0;
      background:
        linear-gradient(135deg, rgba(245, 181, 27, 0.16), rgba(88, 179, 104, 0.16)),
        #fffdf7;
    }

    .signup-card {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      padding: clamp(24px, 4vw, 42px);
      border-radius: 36px;
      background: #ffffff;
      border: 1px solid rgba(72, 61, 36, 0.12);
      box-shadow: var(--shadow-lg);
    }

    .signup-benefits {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .benefit {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 18px;
      background: #fffaf0;
      border: 1px solid rgba(245, 181, 27, 0.18);
      color: var(--color-muted);
      font-weight: 750;
    }

    .benefit i {
      font-style: normal;
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: #ffffff;
      color: var(--color-primary-strong);
      font-weight: 1000;
      flex: 0 0 auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .form-hint {
      margin-top: 12px;
      color: var(--color-muted);
      font-size: 13px;
    }

    .form-actions {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .faq-section {
      background: #fffaf0;
    }

    .faq-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 0.75fr 1.25fr;
      gap: 28px;
      align-items: start;
    }

    .faq-aside {
      padding: 26px;
      border-radius: 30px;
      background: linear-gradient(145deg, #2f8a43, #58b368);
      color: #ffffff;
      box-shadow: var(--shadow-md);
    }

    .faq-aside h3 {
      font-size: 30px;
      line-height: 1.16;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .faq-aside p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 20px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 22px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .faq-item p {
      color: var(--color-muted);
      font-size: 15px;
    }

    .site-footer {
      background: var(--color-footer);
      color: #fffaf0;
      padding: 58px 0 26px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: start;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 1000;
      margin-bottom: 14px;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

    .footer-desc {
      max-width: 650px;
      color: rgba(255, 250, 240, 0.68);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer-links a {
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      color: rgba(255, 250, 240, 0.72);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-weight: 800;
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      color: rgba(255, 250, 240, 0.56);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .mini-search {
        display: none;
      }

      .hero-board,
      .countdown-wrap,
      .wall-layout,
      .ticket-layout,
      .news-layout,
      .review-layout,
      .signup-card,
      .faq-layout {
        grid-template-columns: 1fr;
      }

      .poster-card {
        position: relative;
        top: auto;
        min-height: auto;
      }

      .ticket-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .timeline {
        grid-template-columns: repeat(2, 1fr);
      }

      .timeline-item:nth-child(2) {
        border-right: 0;
      }

      .timeline-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--color-border);
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav-wrap {
        min-height: 68px;
      }

      .nav-center {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        display: none;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-md);
      }

      .site-header.nav-open .nav-center {
        display: grid;
      }

      .nav-link {
        text-align: center;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .nav-actions .btn {
        display: none;
      }

      section {
        padding: 62px 0;
      }

      .hero {
        padding-top: 32px;
      }

      .hero-board {
        min-height: auto;
        border-radius: 28px;
        padding: 24px;
      }

      .hero-data,
      .group-stats,
      .timer-grid,
      .ticket-grid,
      .review-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .timer-grid {
        gap: 10px;
      }

      .time-card {
        min-height: 98px;
      }

      .news-list a {
        grid-template-columns: 1fr;
      }

      .news-date {
        width: 112px;
      }

      .news-arrow {
        display: none;
      }

      .footer-top,
      .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      h1 {
        font-size: 40px;
      }

      .section-title {
        font-size: 30px;
      }

      .hero-actions,
      .form-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .group-top {
        flex-direction: column;
      }

      .banana-arc {
        height: 132px;
      }

      .banana-arc span {
        width: 118px;
        height: 34px;
      }

      .banana-arc span:nth-child(1) { left: 12px; top: 70px; }
      .banana-arc span:nth-child(2) { left: 60px; top: 46px; }
      .banana-arc span:nth-child(3) { left: 112px; top: 48px; }
      .banana-arc span:nth-child(4) { left: 150px; top: 72px; }

      .timeline {
        grid-template-columns: 1fr;
      }

      .timeline-item,
      .timeline-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
      }

      .timeline-item:last-child {
        border-bottom: 0;
      }

      .signup-card,
      .countdown-wrap {
        padding: 20px;
        border-radius: 26px;
      }
    }
