/* roulang page: index */
:root {
      --berry: #6D214F;
      --berry-dark: #4A1637;
      --crimson: #E83F6F;
      --crimson-dark: #C92F5D;
      --coral: #FF7A59;
      --coral-soft: #FFE1D8;
      --charcoal: #161316;
      --cream: #FFF7EE;
      --mist: #F8D9DF;
      --gold: #F6C453;
      --green: #D9F4D7;
      --text: #241B22;
      --muted: #6E5C66;
      --line: rgba(36, 27, 34, .14);
      --white: #FFFFFF;
      --shadow: 0 10px 24px rgba(22, 19, 22, .12);
      --shadow-solid: 8px 8px 0 rgba(22, 19, 22, .12);
      --radius: 8px;
      --radius-sm: 6px;
      --max: 1200px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.7;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 247, 238, .96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(10px);
    }

    .brand-row {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--berry);
      font-size: 22px;
      white-space: nowrap;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: repeating-linear-gradient(90deg, var(--berry) 0 4px, var(--crimson) 4px 7px, var(--gold) 7px 9px);
      border: 2px solid var(--charcoal);
      box-shadow: 4px 4px 0 rgba(22, 19, 22, .16);
    }

    .brand-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      color: var(--berry);
      background: var(--white);
      align-items: center;
      justify-content: center;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform var(--ease);
    }

    .menu-toggle span::before {
      transform: translateY(-7px);
    }

    .menu-toggle span::after {
      transform: translateY(5px);
    }

    .channel-row {
      border-top: 1px solid rgba(36, 27, 34, .08);
      padding: 12px 0;
      overflow-x: auto;
      scrollbar-width: thin;
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
    }

    .channel-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      color: var(--berry);
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(109, 33, 79, .18);
      font-weight: 800;
      transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
    }

    .channel-link:hover {
      background: var(--coral-soft);
      color: var(--charcoal);
      transform: translateY(-1px);
      border-color: rgba(255, 122, 89, .55);
    }

    .channel-link.active {
      background: var(--crimson);
      color: var(--white);
      border-color: var(--crimson);
      box-shadow: 0 8px 16px rgba(232, 63, 111, .22);
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: var(--radius-sm);
      font-weight: 900;
      line-height: 1.2;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    .btn:focus-visible,
    .channel-link:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    .faq-question:focus-visible,
    .menu-toggle:focus-visible {
      outline: 3px solid rgba(246, 196, 83, .8);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--crimson);
      color: var(--white);
      border-color: var(--crimson);
    }

    .btn-primary:hover {
      background: var(--crimson-dark);
      border-color: var(--crimson-dark);
    }

    .btn-secondary {
      background: var(--cream);
      color: var(--berry);
      border-color: rgba(109, 33, 79, .28);
    }

    .btn-dark {
      background: var(--charcoal);
      color: var(--cream);
      border-color: var(--charcoal);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, .14);
      color: var(--cream);
      border-color: rgba(255, 247, 238, .32);
    }

    .btn:disabled {
      opacity: .58;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      border: 1px solid transparent;
    }

    .badge-gold {
      background: var(--gold);
      color: var(--charcoal);
      border-color: rgba(22, 19, 22, .16);
    }

    .badge-light {
      background: rgba(255, 247, 238, .16);
      color: var(--cream);
      border-color: rgba(255, 247, 238, .3);
    }

    .badge-pink {
      background: var(--mist);
      color: var(--berry);
      border-color: rgba(109, 33, 79, .14);
    }

    .badge-red {
      background: var(--crimson);
      color: var(--white);
    }

    .section {
      padding: 72px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 36px);
      line-height: 1.18;
      color: var(--berry);
    }

    .section-copy {
      margin: 10px 0 0;
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero {
      background:
        radial-gradient(circle at 18% 12%, rgba(246, 196, 83, .22), transparent 25%),
        linear-gradient(135deg, var(--berry) 0%, var(--charcoal) 68%);
      color: var(--cream);
      padding: 44px 0 36px;
      overflow: hidden;
    }

    .hero-poster {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 22px 0;
    }

    .kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.08;
      letter-spacing: 0;
      max-width: 780px;
    }

    .hero p {
      margin: 18px 0 0;
      max-width: 760px;
      color: rgba(255, 247, 238, .84);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
      max-width: 760px;
    }

    .data-pill {
      border: 1px solid rgba(255, 247, 238, .22);
      background: rgba(255, 247, 238, .1);
      border-radius: var(--radius);
      padding: 14px;
    }

    .data-pill strong {
      display: block;
      font-size: 22px;
      color: var(--gold);
      line-height: 1.1;
    }

    .data-pill span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 247, 238, .72);
      font-size: 13px;
    }

    .console-card {
      position: relative;
      background: var(--cream);
      color: var(--text);
      border-radius: var(--radius);
      padding: 20px;
      border: 2px solid rgba(22, 19, 22, .36);
      box-shadow: 12px 12px 0 rgba(232, 63, 111, .5);
      min-height: 320px;
      overflow: hidden;
    }

    .console-card::before {
      content: "";
      position: absolute;
      inset: auto -20px -18px auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 18px solid rgba(109, 33, 79, .1);
    }

    .limit-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      background: var(--charcoal);
      color: var(--gold);
      border-radius: var(--radius-sm);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .countdown {
      color: var(--white);
      background: var(--crimson);
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 13px;
      white-space: nowrap;
    }

    .check-list {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .check-item {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .check-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--mist);
      color: var(--berry);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .check-item h3 {
      margin: 0;
      font-size: 17px;
      color: var(--berry);
    }

    .check-item p {
      margin: 3px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .spectrum {
      display: flex;
      align-items: end;
      gap: 5px;
      height: 44px;
      margin-top: 18px;
    }

    .spectrum i {
      flex: 1;
      min-width: 8px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(var(--coral), var(--crimson));
    }

    .spectrum i:nth-child(1) { height: 30%; }
    .spectrum i:nth-child(2) { height: 60%; }
    .spectrum i:nth-child(3) { height: 42%; }
    .spectrum i:nth-child(4) { height: 88%; }
    .spectrum i:nth-child(5) { height: 55%; }
    .spectrum i:nth-child(6) { height: 72%; }
    .spectrum i:nth-child(7) { height: 38%; }
    .spectrum i:nth-child(8) { height: 66%; }

    .play-section {
      background: var(--cream);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .step-card {
      position: relative;
      padding: 18px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      min-height: 190px;
    }

    .step-card::before {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      top: 0;
      height: 5px;
      background: var(--crimson);
      border-radius: 0 0 5px 5px;
    }

    .step-no {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--gold);
      color: var(--charcoal);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .step-card h3,
    .benefit-card h3,
    .entry-card h3,
    .story-card h3,
    .plan-card h3 {
      margin: 0;
      color: var(--berry);
      font-size: 19px;
      line-height: 1.3;
    }

    .step-card p,
    .benefit-card p,
    .entry-card p,
    .story-card p,
    .plan-card p {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .hot-section {
      background: var(--mist);
    }

    .benefit-list {
      display: grid;
      gap: 14px;
    }

    .benefit-row {
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr) 160px;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(109, 33, 79, .16);
      box-shadow: 5px 5px 0 rgba(109, 33, 79, .08);
    }

    .row-index {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--berry);
      color: var(--cream);
      font-weight: 900;
      font-size: 18px;
    }

    .benefit-card h3 {
      font-size: 20px;
    }

    .status-area {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .news-section {
      background: var(--cream);
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--white);
    }

    .news-item {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr) 110px;
      gap: 18px;
      padding: 18px;
      border-bottom: 1px solid var(--line);
      align-items: center;
      transition: background var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(255, 122, 89, .08);
    }

    .news-date {
      color: var(--berry);
      font-weight: 900;
    }

    .news-item h3 {
      margin: 0;
      font-size: 18px;
      color: var(--text);
    }

    .news-item p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-link {
      color: var(--crimson);
      font-weight: 900;
      text-align: right;
    }

    .recommend-box {
      background: var(--charcoal);
      color: var(--cream);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-solid);
    }

    .recommend-box h3 {
      margin: 0;
      font-size: 22px;
      color: var(--gold);
    }

    .recommend-box p {
      margin: 10px 0 16px;
      color: rgba(255, 247, 238, .78);
    }

    .mini-list {
      display: grid;
      gap: 10px;
    }

    .mini-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 0;
      border-top: 1px solid rgba(255, 247, 238, .16);
      color: var(--cream);
      font-weight: 800;
    }

    .mini-list span {
      color: var(--gold);
    }

    .matrix-section {
      background: var(--coral-soft);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .entry-card {
      padding: 20px;
      min-height: 180px;
      background: var(--cream);
      border: 1px solid rgba(255, 122, 89, .28);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .entry-icon {
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: var(--crimson);
      color: var(--white);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .story-section {
      background: var(--berry);
      color: var(--cream);
    }

    .story-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .story-section .section-title {
      color: var(--cream);
    }

    .story-section .section-copy {
      color: rgba(255, 247, 238, .78);
    }

    .story-panel {
      padding: 24px;
      border-radius: var(--radius);
      background: rgba(255, 247, 238, .1);
      border: 1px solid rgba(255, 247, 238, .18);
    }

    .story-card-list {
      display: grid;
      gap: 14px;
    }

    .story-card {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--cream);
      color: var(--text);
      border-left: 6px solid var(--gold);
    }

    .timeline-section {
      background: var(--cream);
    }

    .timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 28px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 8px;
      bottom: 8px;
      width: 3px;
      background: var(--crimson);
      transform: translateX(-50%);
    }

    .timeline-item {
      position: relative;
      padding: 20px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .timeline-item::after {
      content: "";
      position: absolute;
      top: 24px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--crimson);
    }

    .timeline-item:nth-child(odd)::after {
      right: -37px;
    }

    .timeline-item:nth-child(even)::after {
      left: -37px;
    }

    .timeline-item h3 {
      margin: 10px 0 6px;
      color: var(--berry);
      font-size: 19px;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .plans-section {
      background: var(--coral-soft);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .plan-card {
      position: relative;
      padding: 22px;
      background: var(--cream);
      border-radius: var(--radius);
      border: 1px solid rgba(36, 27, 34, .16);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      min-height: 360px;
    }

    .plan-card.recommended {
      border: 3px solid var(--crimson);
      transform: translateY(-8px);
    }

    .plan-card ul {
      list-style: none;
      padding: 0;
      margin: 18px 0;
      display: grid;
      gap: 10px;
    }

    .plan-card li {
      position: relative;
      padding-left: 24px;
      color: var(--muted);
    }

    .plan-card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--crimson);
      font-weight: 900;
    }

    .plan-footer {
      margin-top: auto;
      display: grid;
      gap: 10px;
    }

    .plan-note {
      color: var(--muted);
      font-size: 13px;
      min-height: 22px;
    }

    .faq-section {
      background: var(--cream);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 940px;
    }

    .faq-item {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--white);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--berry);
      font-weight: 900;
      text-align: left;
    }

    .faq-question::after {
      content: "+";
      font-size: 24px;
      color: var(--crimson);
      line-height: 1;
    }

    .faq-item.open {
      border-left: 6px solid var(--crimson);
    }

    .faq-item.open .faq-question::after {
      content: "−";
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 180ms ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .cta-section {
      background:
        linear-gradient(120deg, rgba(232, 63, 111, .22), transparent 42%),
        var(--charcoal);
      color: var(--cream);
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
      gap: 28px;
      align-items: start;
    }

    .cta-section .section-title {
      color: var(--cream);
    }

    .cta-section .section-copy {
      color: rgba(255, 247, 238, .78);
    }

    .form-card {
      background: var(--cream);
      color: var(--text);
      border-radius: var(--radius);
      padding: 22px;
      border: 2px solid rgba(255, 247, 238, .4);
      box-shadow: 12px 12px 0 rgba(246, 196, 83, .32);
    }

    .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-weight: 900;
      color: var(--berry);
      font-size: 14px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 48px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(36, 27, 34, .2);
      background: var(--white);
      color: var(--text);
      padding: 11px 12px;
      transition: border-color var(--ease), box-shadow var(--ease);
    }

    .field textarea {
      min-height: 96px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--crimson);
      box-shadow: 0 0 0 4px rgba(232, 63, 111, .12);
      outline: 0;
    }

    .hint {
      min-height: 18px;
      color: var(--muted);
      font-size: 12px;
    }

    .check-field {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .66);
    }

    .check-field input {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      accent-color: var(--crimson);
      flex: 0 0 auto;
    }

    .check-field span {
      color: var(--muted);
      font-size: 14px;
    }

    .form-status {
      min-height: 36px;
      margin: 14px 0 0;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      background: rgba(246, 196, 83, .2);
      color: var(--berry);
      font-weight: 800;
      display: none;
    }

    .form-status.show {
      display: block;
    }

    .form-status.error {
      background: rgba(232, 63, 111, .12);
      color: var(--crimson-dark);
    }

    .site-footer {
      background: var(--charcoal);
      color: var(--cream);
      padding: 48px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      font-size: 22px;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .footer-grid p {
      margin: 0;
      color: rgba(255, 247, 238, .72);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links strong {
      color: var(--cream);
      margin-bottom: 2px;
    }

    .footer-links a {
      color: rgba(255, 247, 238, .72);
      transition: color var(--ease);
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .copyright {
      margin-top: 32px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 247, 238, .14);
      color: rgba(255, 247, 238, .6);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero-poster,
      .news-layout,
      .story-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .plans-grid {
        grid-template-columns: 1fr;
      }

      .plan-card.recommended {
        transform: none;
      }

      .timeline {
        grid-template-columns: 1fr;
      }

      .timeline::before {
        left: 14px;
      }

      .timeline-item {
        margin-left: 34px;
      }

      .timeline-item:nth-child(odd)::after,
      .timeline-item:nth-child(even)::after {
        left: -28px;
        right: auto;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      .brand-row {
        min-height: 64px;
      }

      .brand-actions .btn-secondary,
      .brand-actions .btn-primary {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .channel-row {
        display: none;
      }

      .site-header.open .channel-row {
        display: block;
      }

      .hero {
        padding: 32px 0;
      }

      .hero-data,
      .steps-grid,
      .entry-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 54px 0;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .benefit-row {
        grid-template-columns: 54px minmax(0, 1fr);
      }

      .status-area {
        grid-column: 1 / -1;
        justify-content: flex-start;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .news-link {
        text-align: left;
      }

      .cta-grid {
        gap: 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .logo {
        font-size: 18px;
      }

      .logo-mark {
        width: 32px;
        height: 32px;
      }

      .hero-actions,
      .brand-actions {
        width: 100%;
      }

      .hero-actions .btn,
      .form-card .btn {
        width: 100%;
      }

      .console-card,
      .form-card {
        padding: 16px;
        box-shadow: 7px 7px 0 rgba(232, 63, 111, .36);
      }

      .limit-strip {
        align-items: flex-start;
        flex-direction: column;
      }

      .copyright {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root {
      --berry: #6D214F;
      --berry-dark: #351325;
      --crimson: #E83F6F;
      --crimson-deep: #C92D59;
      --coral: #FF7A59;
      --gold: #F6C453;
      --cream: #FFF7EE;
      --mist: #F8D9DF;
      --ink: #161316;
      --text: #241D23;
      --muted: #6F626B;
      --line: rgba(22, 19, 22, .14);
      --white: #FFFFFF;
      --ok: #DFF4D8;
      --ok-text: #256D3F;
      --danger-soft: #FFE1E5;
      --danger: #B92545;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 10px 24px rgba(22, 19, 22, .12);
      --shadow-solid: 8px 8px 0 rgba(22, 19, 22, .18);
      --container: 1200px;
      --transition: 160ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.7;
      letter-spacing: 0;
      min-width: 320px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ::selection {
      background: var(--gold);
      color: var(--ink);
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 247, 238, .96);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 0 rgba(109, 33, 79, .06);
      backdrop-filter: blur(10px);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 74px;
      gap: 20px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 22px;
      color: var(--berry);
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, transparent 20%, rgba(255,255,255,.55) 20% 28%, transparent 28% 42%, rgba(255,255,255,.45) 42% 50%, transparent 50% 64%, rgba(255,255,255,.55) 64% 72%, transparent 72%),
        var(--crimson);
      box-shadow: 5px 5px 0 var(--gold);
      border: 2px solid var(--ink);
    }

    .brand-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .top-link,
    .menu-toggle {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(109, 33, 79, .22);
      color: var(--berry);
      background: var(--white);
      font-size: 14px;
      font-weight: 800;
      transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    }

    .top-link:hover,
    .menu-toggle:hover {
      transform: translateY(-1px);
      background: #FFECE5;
      box-shadow: 0 6px 14px rgba(109, 33, 79, .12);
    }

    .top-link.primary {
      background: var(--crimson);
      color: var(--white);
      border-color: var(--crimson);
    }

    .top-link.primary:hover {
      background: var(--crimson-deep);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      padding: 0;
    }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform var(--transition), opacity var(--transition);
    }

    .menu-lines {
      position: relative;
    }

    .menu-lines::before {
      position: absolute;
      top: -6px;
      left: 0;
    }

    .menu-lines::after {
      position: absolute;
      top: 6px;
      left: 0;
    }

    .site-header.is-open .menu-lines {
      transform: rotate(45deg);
    }

    .site-header.is-open .menu-lines::before {
      transform: translateY(6px) rotate(90deg);
    }

    .site-header.is-open .menu-lines::after {
      opacity: 0;
    }

    .channel-wrap {
      border-top: 1px solid rgba(109, 33, 79, .12);
      padding: 10px 0 12px;
    }

    .channel-nav {
      display: flex;
      gap: 10px;
      align-items: center;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 2px;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-link {
      flex: 0 0 auto;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 18px;
      border-radius: 999px;
      background: var(--white);
      color: var(--berry);
      border: 1px solid rgba(109, 33, 79, .2);
      font-weight: 900;
      font-size: 14px;
      transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
    }

    .channel-link:hover {
      background: #FFE1D8;
      color: var(--ink);
      transform: translateY(-1px);
      border-color: var(--coral);
    }

    .channel-link.active {
      background: var(--crimson);
      color: var(--white);
      border-color: var(--crimson);
      box-shadow: 0 8px 0 rgba(232, 63, 111, .15);
    }

    .section {
      padding: 78px 0;
    }

    .section.compact {
      padding: 56px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      border-radius: 999px;
      background: var(--gold);
      color: var(--ink);
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 900;
      border: 1px solid rgba(22, 19, 22, .18);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 18px;
      border-radius: 999px;
      background: repeating-linear-gradient(to bottom, var(--berry), var(--berry) 3px, transparent 3px, transparent 6px);
    }

    .category-hero {
      background:
        radial-gradient(circle at 10% 20%, rgba(246, 196, 83, .22), transparent 28%),
        linear-gradient(135deg, var(--berry-dark), var(--berry) 55%, var(--ink));
      color: var(--white);
      padding: 58px 0 62px;
      overflow: hidden;
    }

    .hero-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      background: rgba(22, 19, 22, .48);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-solid);
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      right: -50px;
      bottom: 18px;
      width: 220px;
      height: 90px;
      background: repeating-linear-gradient(90deg, rgba(255, 122, 89, .4) 0 8px, transparent 8px 18px);
      opacity: .45;
      transform: rotate(-10deg);
    }

    .hero-copy > * {
      position: relative;
      z-index: 1;
    }

    h1 {
      margin-top: 18px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.12;
      letter-spacing: 0;
      max-width: 820px;
    }

    .hero-copy p {
      margin-top: 18px;
      color: rgba(255, 255, 255, .84);
      font-size: 17px;
      max-width: 720px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius-sm);
      padding: 12px 18px;
      font-weight: 900;
      font-size: 15px;
      border: 1px solid transparent;
      transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
    }

    .btn-primary {
      background: var(--crimson);
      color: var(--white);
      box-shadow: 0 8px 0 rgba(22, 19, 22, .22);
    }

    .btn-primary:hover {
      background: var(--crimson-deep);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--cream);
      color: var(--berry);
      border-color: rgba(255, 247, 238, .5);
    }

    .btn-secondary:hover {
      background: #FFE1D8;
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--ink);
      color: var(--white);
    }

    .btn-dark:hover {
      background: #2B2229;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--berry);
      border-color: rgba(109, 33, 79, .35);
    }

    .btn-outline:hover {
      background: #FFE1D8;
      border-color: var(--coral);
      transform: translateY(-1px);
    }

    .btn:focus-visible,
    .top-link:focus-visible,
    .channel-link:focus-visible,
    .form-control:focus-visible,
    .check-line input:focus-visible,
    .faq-question:focus-visible,
    .menu-toggle:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    .btn[disabled] {
      opacity: .55;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .countdown-strip {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      background: var(--ink);
      border: 1px solid rgba(255, 255, 255, .16);
      color: var(--gold);
      padding: 12px;
      border-radius: var(--radius);
      font-weight: 900;
    }

    .countdown-strip span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      font-size: 13px;
    }

    .data-board {
      background: var(--cream);
      color: var(--text);
      border-radius: var(--radius);
      border: 2px solid rgba(22, 19, 22, .28);
      box-shadow: var(--shadow-solid);
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .board-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      border-bottom: 1px solid var(--line);
      padding-bottom: 14px;
    }

    .board-title {
      font-size: 18px;
      font-weight: 950;
      color: var(--berry);
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 900;
      color: var(--ok-text);
      background: var(--ok);
      border-radius: 999px;
      padding: 6px 10px;
    }

    .status-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #35A85B;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 12px;
      align-items: center;
      min-height: 74px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 12px;
      background: var(--white);
    }

    .rank-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--mist);
      color: var(--berry);
      font-weight: 950;
      border: 1px solid rgba(109, 33, 79, .2);
    }

    .rank-item strong {
      display: block;
      font-size: 15px;
      color: var(--ink);
      line-height: 1.35;
    }

    .rank-item small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
    }

    .mini-wave {
      width: 78px;
      height: 28px;
      border-radius: 999px;
      background: repeating-linear-gradient(90deg, var(--crimson) 0 4px, transparent 4px 9px);
      opacity: .8;
    }

    .filter-band {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      padding: 20px 0;
    }

    .filter-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }

    .filter-tags {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-tags::-webkit-scrollbar {
      display: none;
    }

    .filter-tag {
      flex: 0 0 auto;
      border-radius: 999px;
      padding: 8px 13px;
      background: var(--cream);
      color: var(--berry);
      border: 1px solid rgba(109, 33, 79, .18);
      font-weight: 900;
      font-size: 13px;
    }

    .filter-tag.active {
      background: var(--berry);
      color: var(--white);
      border-color: var(--berry);
    }

    .sort-control {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .sort-control select {
      min-height: 42px;
      border: 1px solid rgba(109, 33, 79, .22);
      border-radius: var(--radius-sm);
      background: var(--cream);
      color: var(--text);
      padding: 0 38px 0 12px;
      cursor: pointer;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 310px;
      gap: 24px;
      align-items: start;
    }

    .section-title {
      max-width: 780px;
    }

    .section-title h2 {
      font-size: clamp(28px, 4vw, 36px);
      line-height: 1.2;
      letter-spacing: 0;
      color: var(--berry);
      margin-top: 12px;
    }

    .section-title p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 16px;
    }

    .notice-side {
      position: sticky;
      top: 150px;
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .notice-side strong {
      display: block;
      color: var(--gold);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .notice-side p {
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
    }

    .notice-side .btn {
      width: 100%;
      margin-top: 16px;
    }

    .entry-list {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr) 190px;
      gap: 18px;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--line);
      border-left: 6px solid var(--crimson);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 8px 20px rgba(22, 19, 22, .07);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .entry-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: rgba(232, 63, 111, .46);
    }

    .entry-icon {
      width: 58px;
      height: 58px;
      border-radius: var(--radius);
      background:
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(232, 63, 111, .22) 8px 13px),
        var(--mist);
      border: 1px solid rgba(109, 33, 79, .2);
      color: var(--berry);
      display: grid;
      place-items: center;
      font-weight: 950;
      font-size: 18px;
    }

    .entry-body h3 {
      font-size: 20px;
      color: var(--ink);
      line-height: 1.35;
    }

    .entry-body p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 950;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge.gold {
      background: var(--gold);
      color: var(--ink);
      border-color: rgba(22, 19, 22, .15);
    }

    .badge.pink {
      background: var(--mist);
      color: var(--berry);
      border-color: rgba(109, 33, 79, .16);
    }

    .badge.dark {
      background: var(--ink);
      color: var(--white);
    }

    .timeline-section {
      background: var(--mist);
      border-top: 1px solid rgba(109, 33, 79, .12);
      border-bottom: 1px solid rgba(109, 33, 79, .12);
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 26px;
      margin-top: 28px;
      position: relative;
    }

    .timeline-item {
      position: relative;
      padding: 18px 18px 18px 30px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: 0 8px 18px rgba(109, 33, 79, .08);
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 20px;
      bottom: 18px;
      width: 3px;
      border-radius: 999px;
      background: var(--crimson);
    }

    .timeline-item::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 22px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--gold);
      border: 2px solid var(--ink);
    }

    .timeline-item .time {
      display: inline-flex;
      margin-bottom: 8px;
      font-size: 12px;
      font-weight: 950;
      color: var(--berry);
      background: var(--cream);
      border-radius: 999px;
      padding: 4px 9px;
    }

    .timeline-item h3 {
      font-size: 19px;
      line-height: 1.35;
    }

    .timeline-item p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 15px;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 30px;
    }

    .highlight-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .highlight-card .num {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: var(--berry);
      color: var(--white);
      border-radius: 50%;
      font-weight: 950;
      margin-bottom: 14px;
      box-shadow: 5px 5px 0 var(--gold);
    }

    .highlight-card h3 {
      font-size: 19px;
      color: var(--ink);
    }

    .highlight-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .plans-section {
      background: #FFE9DF;
    }

    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 30px;
    }

    .plan-card {
      background: var(--cream);
      border: 1px solid rgba(109, 33, 79, .18);
      border-radius: var(--radius);
      padding: 22px;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      box-shadow: 0 8px 18px rgba(22, 19, 22, .08);
      position: relative;
    }

    .plan-card.recommended {
      border: 3px solid var(--crimson);
      background: var(--white);
      transform: translateY(-6px);
    }

    .plan-card .badge {
      margin-bottom: 14px;
    }

    .plan-card h3 {
      font-size: 22px;
      color: var(--berry);
    }

    .plan-card .fit {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .plan-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 18px 0 20px;
    }

    .plan-list li {
      position: relative;
      padding-left: 24px;
      font-size: 15px;
      color: var(--text);
    }

    .plan-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: var(--crimson);
      box-shadow: 4px 0 0 var(--gold);
    }

    .plan-note {
      margin-top: auto;
      color: var(--muted);
      font-size: 13px;
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }

    .plan-card .btn {
      margin-top: 18px;
      width: 100%;
    }

    .faq-section {
      background: var(--cream);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      margin-top: 28px;
      max-width: 940px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(22, 19, 22, .06);
    }

    .faq-question {
      width: 100%;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 18px;
      background: var(--white);
      color: var(--ink);
      text-align: left;
      font-weight: 950;
      border-left: 5px solid transparent;
    }

    .faq-question:hover {
      background: #FFF0E8;
    }

    .faq-question .plus {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--mist);
      color: var(--berry);
      display: grid;
      place-items: center;
      font-weight: 950;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 190ms ease;
      color: var(--muted);
    }

    .faq-answer p {
      padding: 0 18px 18px 23px;
    }

    .faq-item.open .faq-question {
      border-left-color: var(--crimson);
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    .faq-item.open .plus {
      background: var(--crimson);
      color: var(--white);
    }

    .cta-section {
      background:
        linear-gradient(120deg, rgba(232, 63, 111, .28), transparent 42%),
        var(--ink);
      color: var(--white);
      padding: 76px 0;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
      gap: 28px;
      align-items: start;
    }

    .cta-copy h2 {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.18;
    }

    .cta-copy p {
      margin-top: 14px;
      color: rgba(255, 255, 255, .78);
      font-size: 16px;
    }

    .cta-points {
      margin-top: 22px;
      display: grid;
      gap: 10px;
    }

    .cta-point {
      display: flex;
      gap: 10px;
      align-items: center;
      color: rgba(255, 255, 255, .88);
      font-weight: 800;
      font-size: 14px;
    }

    .cta-point::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 3px;
      background: var(--gold);
      box-shadow: 5px 0 0 var(--crimson);
    }

    .register-card {
      background: var(--cream);
      color: var(--text);
      border-radius: var(--radius);
      padding: 22px;
      border: 2px solid rgba(255, 255, 255, .26);
      box-shadow: var(--shadow-solid);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      display: block;
      margin-bottom: 7px;
      font-size: 14px;
      font-weight: 950;
      color: var(--berry);
    }

    .form-control {
      width: 100%;
      min-height: 46px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(109, 33, 79, .24);
      background: var(--white);
      color: var(--text);
      padding: 11px 12px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .form-control:hover {
      border-color: rgba(232, 63, 111, .55);
    }

    .form-control:focus {
      border-color: var(--crimson);
      box-shadow: 0 0 0 4px rgba(232, 63, 111, .14);
      background: #FFFCF8;
    }

    .field-help {
      min-height: 20px;
      margin-top: 5px;
      font-size: 12px;
      color: var(--muted);
    }

    .field-help.error {
      color: var(--danger);
    }

    .check-group {
      display: grid;
      gap: 10px;
      margin: 8px 0 16px;
    }

    .check-line {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--text);
      font-size: 14px;
      font-weight: 800;
    }

    .check-line input {
      width: 18px;
      height: 18px;
      margin-top: 3px;
      accent-color: var(--crimson);
      cursor: pointer;
    }

    .form-message {
      min-height: 34px;
      display: flex;
      align-items: center;
      margin-top: 12px;
      border-radius: var(--radius-sm);
      padding: 8px 10px;
      background: var(--ok);
      color: var(--ok-text);
      font-size: 13px;
      font-weight: 900;
    }

    .site-footer {
      background: var(--berry-dark);
      color: rgba(255, 255, 255, .78);
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr .7fr .9fr;
      gap: 30px;
      align-items: start;
    }

    .footer-brand {
      color: var(--white);
      font-size: 24px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-grid p {
      max-width: 460px;
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links strong {
      color: var(--gold);
      margin-bottom: 4px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
      width: fit-content;
      transition: color var(--transition), transform var(--transition);
    }

    .footer-links a:hover {
      color: var(--white);
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, .14);
      margin-top: 34px;
      padding-top: 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, .62);
    }

    @media (max-width: 1024px) {
      .hero-panel,
      .intro-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .notice-side {
        position: static;
      }

      .highlight-grid,
      .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .entry-card {
        grid-template-columns: 62px minmax(0, 1fr);
      }

      .entry-meta {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-row {
        min-height: 66px;
      }

      .brand-actions .top-link {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .channel-wrap {
        display: none;
      }

      .site-header.is-open .channel-wrap {
        display: block;
      }

      .channel-nav {
        padding-bottom: 4px;
      }

      .category-hero {
        padding: 38px 0 42px;
      }

      .hero-copy {
        padding: 22px;
        box-shadow: 5px 5px 0 rgba(22, 19, 22, .22);
      }

      .hero-actions,
      .countdown-strip {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .rank-item {
        grid-template-columns: 38px 1fr;
      }

      .mini-wave {
        grid-column: 2;
        width: 100%;
      }

      .filter-row {
        align-items: stretch;
      }

      .sort-control {
        width: 100%;
        justify-content: space-between;
      }

      .sort-control select {
        flex: 1;
      }

      .timeline,
      .highlight-grid,
      .plan-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .plan-card.recommended {
        transform: none;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-icon {
        width: 52px;
        height: 52px;
      }

      .entry-meta {
        grid-column: auto;
        align-items: stretch;
        flex-direction: column;
      }

      .entry-meta .btn {
        width: 100%;
      }

      .section {
        padding: 56px 0;
      }

      .cta-section {
        padding: 58px 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .logo {
        font-size: 18px;
        gap: 9px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      h1 {
        font-size: 32px;
      }

      .data-board,
      .register-card {
        padding: 16px;
      }

      .board-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .section-title h2 {
        font-size: 28px;
      }

      .btn {
        width: 100%;
      }
    }
