/* roulang page: index */
:root {
      --bg-main: #0b0c10;
      --bg-card: #151821;
      --bg-card-hover: #1c212d;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.35);
      --cyan: #05d9e8;
      --cyan-glow: rgba(5, 217, 232, 0.3);
      --purple: #7928ca;
      --text-main: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #626778;
      --border: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 42, 109, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Container Custom */
    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Header & Mega Menu */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--purple));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .brand-logo span {
      background: linear-gradient(90deg, #fff, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
    }
    .nav-item {
      position: relative;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-item:hover, .nav-item.active {
      color: #fff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }

    /* Mega Dropdown Panel */
    .mega-parent:hover .mega-menu-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 580px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      z-index: 1010;
    }
    .mega-card {
      display: flex;
      gap: 12px;
      background: rgba(255,255,255,0.03);
      padding: 10px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      transition: var(--transition);
    }
    .mega-card:hover {
      background: rgba(255, 42, 109, 0.08);
      border-color: var(--border-hover);
    }
    .mega-card img {
      width: 64px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }
    .mega-card-info h5 {
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .mega-card-info p {
      font-size: 0.78rem;
      color: var(--text-dim);
      line-height: 1.3;
      margin-bottom: 0;
    }

    /* Nav Right Tools */
    .nav-tools {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .speed-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 0.78rem;
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyan);
    }
    .speed-badge .dot {
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0% { opacity: 0.4; }
      50% { opacity: 1; }
      100% { opacity: 0.4; }
    }

    /* Buttons & Badges */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.75rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      outline: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #e61055);
      color: #fff;
      box-shadow: 0 4px 16px var(--primary-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(255, 42, 109, 0.5);
      color: #fff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-sm {
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
    }
    .badge-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
    }
    .badge-pink {
      background: rgba(255, 42, 109, 0.2);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.4);
    }
    .badge-cyan {
      background: rgba(5, 217, 232, 0.15);
      color: var(--cyan);
      border: 1px solid rgba(5, 217, 232, 0.4);
    }

    /* Section Global Headers */
    .section-spacing {
      padding: 4.8rem 0;
      position: relative;
    }
    .section-head {
      margin-bottom: 2.8rem;
    }
    .section-head.text-center {
      text-align: center;
    }
    .section-subtitle {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--cyan);
      margin-bottom: 0.4rem;
      display: block;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }
    .section-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 680px;
      line-height: 1.65;
    }
    .section-head.text-center .section-desc {
      margin: 0 auto;
    }

    /* 1. Hero Section (Before/After Contrast) */
    .hero-section {
      padding: 4rem 0 5rem;
      background: radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.18) 0%, rgba(11, 12, 16, 0) 70%),
                  radial-gradient(circle at 10% 80%, rgba(255, 42, 109, 0.12) 0%, rgba(11, 12, 16, 0) 60%);
      border-bottom: 1px solid var(--border);
    }
    .hero-badge-wrap {
      margin-bottom: 1.2rem;
    }
    .hero-h1 {
      font-size: 2.7rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 1.25rem;
      color: #fff;
    }
    .hero-h1 span.hl-text {
      background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-summary {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .hero-cta-btns {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 2.2rem;
    }
    .hero-meta-points {
      display: flex;
      gap: 1.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border);
    }
    .hero-meta-item strong {
      display: block;
      font-size: 1.25rem;
      color: #fff;
    }
    .hero-meta-item span {
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    /* Before / After Dual Stage */
    .contrast-stage {
      position: relative;
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 1rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    }
    .contrast-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .contrast-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #000;
    }
    .contrast-card img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      transition: var(--transition);
    }
    .contrast-card.legacy img {
      filter: blur(2px) grayscale(40%) contrast(85%);
      opacity: 0.7;
    }
    .contrast-card.modern img {
      filter: saturate(120%) contrast(110%);
    }
    .contrast-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 4px;
      font-weight: 700;
    }
    .tag-legacy {
      background: rgba(0,0,0,0.8);
      color: #999;
      border: 1px solid #444;
    }
    .tag-modern {
      background: rgba(255, 42, 109, 0.9);
      color: #fff;
      box-shadow: 0 0 10px var(--primary-glow);
    }
    .contrast-info-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px;
      background: linear-gradient(to top, rgba(11,12,16,0.95), transparent);
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* 2. Feature Matrix */
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      height: 100%;
      transition: var(--transition);
    }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .feature-icon-box {
      width: 52px;
      height: 52px;
      background: rgba(255, 42, 109, 0.1);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
    }
    .feature-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .feature-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* 3. Engine Render (Dual Column) */
    .engine-section {
      background: #0f121a;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .render-spec-list {
      list-style: none;
      margin: 1.5rem 0 0 0;
      padding: 0;
    }
    .render-spec-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .spec-icon {
      color: var(--cyan);
      font-size: 1.1rem;
      margin-top: 3px;
    }
    .spec-text strong {
      display: block;
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }
    .spec-text span {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .render-preview-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
    }
    .render-preview-wrapper img {
      width: 100%;
      height: 380px;
      object-fit: cover;
    }
    .render-hud-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(11,12,16,0.95), transparent);
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .hud-param span {
      display: block;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .hud-param strong {
      font-size: 1.1rem;
      color: var(--cyan);
      font-family: monospace;
    }

    /* 4. Scene Cards */
    .scene-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border);
      height: 100%;
      transition: var(--transition);
    }
    .scene-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-hover);
    }
    .scene-thumb {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .scene-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .scene-card:hover .scene-thumb img {
      transform: scale(1.05);
    }
    .scene-body {
      padding: 1.5rem;
    }
    .scene-body h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .scene-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* 5. Player Breakdown Stage */
    .player-deck {
      position: relative;
      background: #06070a;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      box-shadow: 0 24px 60px rgba(0,0,0,0.8);
    }
    .player-window-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 1.25rem;
    }
    .player-dots {
      display: flex;
      gap: 6px;
    }
    .player-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
    }
    .player-dots span:first-child { background: #ff5f56; }
    .player-dots span:nth-child(2) { background: #ffbd2e; }
    .player-dots span:last-child { background: #27c93f; }
    .player-window-title {
      font-size: 0.82rem;
      color: var(--text-dim);
      font-family: monospace;
    }
    .player-screen-area {
      position: relative;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .player-screen-area img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }
    .player-ui-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
      padding: 1.5rem;
    }
    .player-progress-bar {
      width: 100%;
      height: 4px;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
      margin-bottom: 1rem;
      position: relative;
    }
    .player-progress-current {
      width: 68%;
      height: 100%;
      background: var(--primary);
      border-radius: 2px;
      position: relative;
    }
    .player-progress-current::after {
      content: '';
      position: absolute;
      right: -5px;
      top: -4px;
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 8px var(--primary);
    }
    .player-button-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .ctrl-left, .ctrl-right {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      color: #fff;
      font-size: 1.05rem;
    }
    .ctrl-pill {
      font-size: 0.75rem;
      background: rgba(255,255,255,0.12);
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
    }

    /* 6. Trending Ranking */
    .rank-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .rank-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
      box-shadow: 0 12px 24px rgba(255, 42, 109, 0.2);
    }
    .rank-poster-box {
      position: relative;
      height: 280px;
      overflow: hidden;
    }
    .rank-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .rank-card:hover .rank-poster-box img {
      transform: scale(1.06);
    }
    .rank-num-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary), var(--purple));
      color: #fff;
      font-weight: 900;
      font-size: 1.2rem;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    }
    .rank-info {
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .rank-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    .rank-bar-wrap {
      margin-top: auto;
    }
    .rank-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-dim);
      margin-bottom: 4px;
    }
    .rank-bar {
      height: 4px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      overflow: hidden;
    }
    .rank-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--cyan), var(--primary));
      border-radius: 2px;
    }

    /* 7. 4K Remaster Showcase */
    .special-topic-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      transition: var(--transition);
      height: 100%;
    }
    .special-topic-card:hover {
      border-color: var(--cyan);
      box-shadow: 0 12px 30px rgba(5, 217, 232, 0.2);
    }
    .special-topic-img {
      position: relative;
      min-height: 260px;
    }
    .special-topic-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .special-topic-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .special-topic-content h4 {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .special-topic-content p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 1.2rem;
    }
    .param-pill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* 8. Success Metrics Dashboard */
    .metric-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: var(--transition);
    }
    .metric-card:hover {
      transform: translateY(-4px);
      border-color: var(--cyan);
    }
    .metric-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      font-family: monospace;
      line-height: 1.2;
      margin-bottom: 0.4rem;
      background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .metric-card h5 {
      font-size: 1rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .metric-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* 9. Membership Pricing Deck */
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem 1.8rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition);
      height: 100%;
    }
    .pricing-card.featured {
      background: #181b26;
      border: 2px solid var(--primary);
      box-shadow: 0 16px 36px var(--primary-glow);
      transform: scale(1.03);
    }
    .pricing-badge-popular {
      position: absolute;
      top: -12px;
      right: 24px;
      background: var(--primary);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 20px;
      text-transform: uppercase;
    }
    .pricing-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .pricing-rate {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.4rem;
    }
    .pricing-rate span {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-dim);
    }
    .pricing-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
      min-height: 42px;
    }
    .pricing-features {
      list-style: none;
      margin: 0 0 2rem 0;
      padding: 0;
      flex-grow: 1;
    }
    .pricing-features li {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-features li i {
      color: var(--cyan);
      font-size: 0.85rem;
    }
    .pricing-features li.disabled {
      color: var(--text-dim);
      text-decoration: line-through;
    }
    .pricing-features li.disabled i {
      color: var(--text-dim);
    }

    /* 10. Testimonial Stream */
    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }
    .review-card:hover {
      border-color: rgba(255,255,255,0.2);
    }
    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1rem;
    }
    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--cyan);
      overflow: hidden;
    }
    .review-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .review-meta h6 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }
    .review-stars {
      color: #ffb703;
      font-size: 0.75rem;
    }
    .review-content {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* 11. Performance Score Deck */
    .score-deck {
      background: #11141c;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
    }
    .score-left-col {
      text-align: center;
      border-right: 1px solid var(--border);
      padding-right: 1.5rem;
    }
    .score-big-num {
      font-size: 4rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .score-stars-big {
      color: #ffb703;
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
    }
    .score-bar-row {
      margin-bottom: 1.2rem;
    }
    .score-bar-header {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .score-track {
      height: 8px;
      background: rgba(255,255,255,0.06);
      border-radius: 4px;
      overflow: hidden;
    }
    .score-track-inner {
      height: 100%;
      background: linear-gradient(90deg, var(--cyan), var(--primary));
      border-radius: 4px;
    }

    /* 12. Special Project Matrix */
    .project-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 220px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .project-card:hover img {
      transform: scale(1.08);
    }
    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,12,16,0.92) 0%, rgba(11,12,16,0.3) 60%, transparent 100%);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .project-overlay h5 {
      font-size: 1.05rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .project-overlay p {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    /* 13. News & Timetable */
    .news-spotlight {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-card);
      height: 100%;
    }
    .news-spotlight-img {
      height: 230px;
      overflow: hidden;
    }
    .news-spotlight-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-spotlight-body {
      padding: 1.5rem;
    }
    .news-spotlight-body h4 {
      font-size: 1.2rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .news-spotlight-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .news-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .news-item {
      display: flex;
      gap: 1.2rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--border);
    }
    .news-item:first-child {
      padding-top: 0;
    }
    .news-item:last-child {
      border-bottom: none;
    }
    .news-item-date {
      min-width: 60px;
      text-align: center;
      padding: 6px;
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius-sm);
      height: fit-content;
    }
    .news-item-date strong {
      display: block;
      font-size: 1.15rem;
      color: var(--cyan);
      line-height: 1;
    }
    .news-item-date span {
      font-size: 0.7rem;
      color: var(--text-dim);
    }
    .news-item-content h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .news-item-content p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* 14. Action CTA */
    .cta-banner {
      background: linear-gradient(135deg, rgba(121, 40, 202, 0.25) 0%, rgba(255, 42, 109, 0.2) 100%), #141722;
      border: 1px solid var(--border-hover);
      border-radius: var(--radius-lg);
      padding: 3.5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    }
    .cta-title {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .cta-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto 2rem;
      line-height: 1.65;
    }
    .cta-input-group {
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      gap: 8px;
    }
    .cta-input-group input {
      background: rgba(11, 12, 16, 0.8);
      border: 1px solid var(--border);
      color: #fff;
      padding: 0.75rem 1.2rem;
      border-radius: var(--radius-sm);
      outline: none;
      flex-grow: 1;
    }
    .cta-input-group input:focus {
      border-color: var(--primary);
    }

    /* Footer System */
    .site-footer {
      background: #07080b;
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      margin: 1rem 0 1.5rem;
      color: var(--text-dim);
    }
    .footer-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
      letter-spacing: 0.5px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.6rem;
    }
    .footer-links a {
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      border-top: 1px solid rgba(255,255,255,0.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    /* Responsive Queries */
    @media (max-width: 1024px) {
      .hero-h1 { font-size: 2.2rem; }
      .mega-menu-panel { width: 440px; }
      .score-left-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
      }
    }
    @media (max-width: 768px) {
      .nav-wrapper { height: 64px; }
      .main-nav { display: none; }
      .hero-h1 { font-size: 1.85rem; }
      .contrast-box { grid-template-columns: 1fr; }
      .special-topic-card { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: none; }
      .cta-input-group { flex-direction: column; }
      .section-spacing { padding: 3.2rem 0; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* roulang page: category2 */
:root {
            --bg-main: #0b0c10;
            --bg-card: #151821;
            --bg-card-hover: #1c212d;
            --primary: #ff2a6d;
            --primary-glow: rgba(255, 42, 109, 0.35);
            --cyan: #05d9e8;
            --cyan-glow: rgba(5, 217, 232, 0.3);
            --purple: #7928ca;
            --text-main: #ffffff;
            --text-muted: #a0a5b5;
            --text-dim: #626778;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 42, 109, 0.4);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 14px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        
        /* Header & Mega Menu */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 12, 16, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.45rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .brand-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            box-shadow: 0 0 15px var(--primary-glow);
        }
        .brand-logo span {
            background: linear-gradient(90deg, #fff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
        }
        .nav-item {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-item:hover, .nav-item.active {
            color: #fff;
        }
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            box-shadow: 0 0 8px var(--primary);
        }
        .mega-parent:hover .mega-menu-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .mega-menu-panel {
            position: absolute;
            top: 100%;
            right: 0;
            width: 580px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: 0 16px 36px rgba(0,0,0,0.6);
            padding: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            z-index: 1010;
        }
        .mega-card {
            display: flex;
            gap: 12px;
            background: rgba(255,255,255,0.03);
            padding: 10px;
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .mega-card:hover {
            background: rgba(255, 42, 109, 0.08);
            border-color: var(--border-hover);
        }
        .mega-card img {
            width: 64px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        .mega-card-info h5 {
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .mega-card-info p {
            font-size: 0.78rem;
            color: var(--text-dim);
            line-height: 1.3;
            margin-bottom: 0;
        }
        .nav-tools {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .speed-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 0.78rem;
            background: rgba(5, 217, 232, 0.1);
            border: 1px solid rgba(5, 217, 232, 0.3);
            color: var(--cyan);
        }
        .speed-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--cyan);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.75rem 1.6rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #e61055);
            color: #fff;
            box-shadow: 0 4px 16px var(--primary-glow);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(255, 42, 109, 0.5);
            color: #fff;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid var(--border);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-sm {
            padding: 0.45rem 1rem;
            font-size: 0.82rem;
        }

        /* 扩展分类页 7 大板块特化样式 */
        /* 板块 1: 分类专属轻量 Header */
        .category-header-wrap {
            position: relative;
            padding: 3.5rem 0 2.5rem;
            background: radial-gradient(circle at 80% -20%, rgba(121, 40, 202, 0.25) 0%, rgba(11, 12, 16, 0.95) 70%),
                        linear-gradient(to bottom, #11141c, var(--bg-main));
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 1rem;
        }
        .breadcrumb-nav a {
            color: var(--text-muted);
        }
        .breadcrumb-nav a:hover {
            color: var(--cyan);
        }
        .category-h1 {
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.6rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .category-h1 .glow-tag {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(255, 42, 109, 0.15);
            border: 1px solid rgba(255, 42, 109, 0.4);
            color: var(--primary);
            letter-spacing: 0.5px;
        }
        .category-lead {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 820px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* 板块 2: 紧凑型条件筛选器 */
        .filter-section-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.25rem 1.5rem;
            margin-top: -1.5rem;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .filter-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 0.55rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.06);
        }
        .filter-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .filter-label {
            min-width: 68px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-pill {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.82rem;
            color: var(--text-muted);
            background: rgba(255,255,255,0.03);
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition);
        }
        .filter-pill:hover {
            color: #fff;
            border-color: rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.06);
        }
        .filter-pill.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 0 10px var(--primary-glow);
            font-weight: 600;
        }

        /* 板块 3: 核心片库网格 (3:4海报) */
        .section-spacing-cat {
            padding: 3.5rem 0;
        }
        .anime-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .poster-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .poster-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-hover);
            box-shadow: 0 12px 30px rgba(0,0,0,0.7), 0 0 16px var(--primary-glow);
        }
        .poster-thumb-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background: #000;
        }
        .poster-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .poster-card:hover .poster-thumb-wrap img {
            transform: scale(1.05);
        }
        .poster-overlay-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            z-index: 2;
        }
        .card-tag {
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            text-transform: uppercase;
        }
        .tag-res {
            background: rgba(5, 217, 232, 0.9);
            color: #0b0c10;
        }
        .tag-lang {
            background: rgba(255, 42, 109, 0.88);
            color: #fff;
        }
        .poster-bottom-grad {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(11, 12, 16, 0.96) 0%, transparent 100%);
            z-index: 1;
        }
        .poster-meta-float {
            position: absolute;
            bottom: 8px;
            left: 12px;
            right: 12px;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: #e2e8f0;
        }
        .poster-score {
            color: #ffb703;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .poster-info {
            padding: 1rem 1.1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .poster-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .poster-sub {
            font-size: 0.8rem;
            color: var(--text-dim);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.8rem;
        }
        .poster-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.6rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .loadmore-wrap {
            text-align: center;
            margin-top: 1.5rem;
        }

        /* 板块 4: 分类特色精选推荐横幅 */
        .spotlight-banner-wrap {
            background: linear-gradient(135deg, #181d2a 0%, #0d1017 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: 0 16px 36px rgba(0,0,0,0.6);
            margin: 2rem 0 4rem;
        }
        .spotlight-banner-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--cyan));
        }
        .spotlight-inner {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
        }
        .spotlight-text {
            padding: 3rem 2.8rem;
        }
        .spotlight-badge-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--cyan);
            background: rgba(5, 217, 232, 0.12);
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(5, 217, 232, 0.3);
        }
        .spotlight-title {
            font-size: 1.85rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .spotlight-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.8rem;
        }
        .spotlight-specs {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .spec-item h6 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 2px;
        }
        .spec-item span {
            font-size: 0.78rem;
            color: var(--text-dim);
        }
        .spotlight-media {
            position: relative;
            height: 100%;
            min-height: 380px;
            overflow: hidden;
        }
        .spotlight-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .spotlight-media-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, #181d2a 0%, transparent 40%),
                        linear-gradient(to top, #181d2a 0%, transparent 20%);
        }

        /* 板块 5: 当前品类高分看点指南 */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1.8rem;
        }
        .guide-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
        }
        .guide-card:hover {
            border-color: rgba(5, 217, 232, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0,0,0,0.5);
        }
        .guide-icon-box {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--cyan);
            margin-bottom: 1.25rem;
        }
        .guide-title {
            font-size: 1.18rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
        }
        .guide-text {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 0;
        }

        /* 板块 6: 分类常见问题答疑 (FAQ 手风琴) */
        .faq-accordion {
            max-width: 960px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-panel {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-panel:hover {
            border-color: rgba(255, 42, 109, 0.3);
        }
        .faq-question {
            padding: 1.2rem 1.6rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.02rem;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            user-select: none;
        }
        .faq-question i {
            color: var(--primary);
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        .faq-answer {
            padding: 0 1.6rem 1.4rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            border-top: 1px solid rgba(255,255,255,0.04);
            padding-top: 1rem;
        }

        /* 板块 7: 分类专属追番订阅收口区 */
        .subscribe-banner-box {
            background: linear-gradient(135deg, rgba(121, 40, 202, 0.25) 0%, rgba(255, 42, 109, 0.15) 100%), var(--bg-card);
            border: 1px solid rgba(255, 42, 109, 0.35);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            margin: 4.5rem 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 42, 109, 0.05);
        }
        .sub-left h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .sub-left p {
            font-size: 0.92rem;
            color: var(--text-muted);
            margin-bottom: 0;
            max-width: 650px;
        }
        .sub-actions {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        /* 页脚系统 */
        .site-footer {
            background: #07080a;
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }
        .footer-brand .logo-icon {
            color: var(--primary);
            font-size: 1.4rem;
        }
        .footer-intro {
            font-size: 0.86rem;
            color: var(--text-dim);
            line-height: 1.65;
            margin-bottom: 1.2rem;
        }
        .footer-tech-tag {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .footer-tech-tag span {
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            background: rgba(255,255,255,0.05);
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .footer-col h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 10px;
        }
        .footer-col h5::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.65rem;
        }
        .footer-links a {
            font-size: 0.88rem;
            color: var(--text-muted);
        }
        .footer-links a:hover {
            color: var(--cyan);
        }
        .node-status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(5, 217, 232, 0.08);
            border: 1px solid rgba(5, 217, 232, 0.25);
            border-radius: 20px;
            font-size: 0.78rem;
            color: var(--cyan);
        }
        .node-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
        }
        .footer-bottom {
            margin-top: 3.5rem;
            padding-top: 1.8rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.82rem;
            color: var(--text-dim);
        }
        .copyright-txt {
            margin: 0;
        }
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-end;
        }
        .footer-bottom-links a {
            color: var(--text-dim);
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* 响应式断点控制 */
        @media screen and (max-width: 1024px) {
            .anime-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.2rem;
            }
            .spotlight-inner {
                grid-template-columns: 1fr;
            }
            .spotlight-media {
                min-height: 260px;
            }
            .spotlight-media-overlay {
                background: linear-gradient(to top, #181d2a 0%, transparent 60%);
            }
            .guide-grid {
                grid-template-columns: 1fr;
            }
            .mega-menu-panel {
                width: 480px;
            }
        }
        @media screen and (max-width: 768px) {
            .nav-wrapper {
                height: 60px;
            }
            .main-nav, .nav-tools {
                display: none;
            }
            .category-h1 {
                font-size: 1.65rem;
                flex-wrap: wrap;
            }
            .anime-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.9rem;
            }
            .filter-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .spotlight-text {
                padding: 1.8rem 1.4rem;
            }
            .spotlight-title {
                font-size: 1.35rem;
            }
            .subscribe-banner-box {
                flex-direction: column;
                text-align: center;
                padding: 2rem 1.25rem;
            }
            .sub-actions {
                width: 100%;
                flex-direction: column;
            }
            .sub-actions .btn {
                width: 100%;
            }
            .footer-bottom-links {
                justify-content: flex-start;
                margin-top: 1rem;
            }
        }

/* roulang page: category1 */
:root {
      --bg-main: #0b0c10;
      --bg-card: #151821;
      --bg-card-hover: #1c212d;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.35);
      --cyan: #05d9e8;
      --cyan-glow: rgba(5, 217, 232, 0.3);
      --purple: #7928ca;
      --text-main: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #626778;
      --border: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 42, 109, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    /* Header & Mega Menu */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--purple));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .brand-logo span {
      background: linear-gradient(90deg, #fff, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
    }
    .nav-item {
      position: relative;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-item:hover, .nav-item.active {
      color: #fff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }
    .mega-parent:hover .mega-menu-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 580px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      z-index: 1010;
    }
    .mega-card {
      display: flex;
      gap: 12px;
      background: rgba(255,255,255,0.03);
      padding: 10px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      transition: var(--transition);
    }
    .mega-card:hover {
      background: rgba(255, 42, 109, 0.08);
      border-color: var(--border-hover);
    }
    .mega-card img {
      width: 64px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }
    .mega-card-info h5 {
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .mega-card-info p {
      font-size: 0.78rem;
      color: var(--text-dim);
      line-height: 1.3;
      margin-bottom: 0;
    }
    .nav-tools {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .speed-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 0.78rem;
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyan);
    }
    .speed-badge .dot {
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.75rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      outline: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #e61055);
      color: #fff;
      box-shadow: 0 4px 16px var(--primary-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(255, 42, 109, 0.5);
      color: #fff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-sm {
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
    }
    .badge-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
    }
    .badge-pink {
      background: rgba(255, 42, 109, 0.2);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.4);
    }
    .badge-cyan {
      background: rgba(5, 217, 232, 0.15);
      color: var(--cyan);
      border: 1px solid rgba(5, 217, 232, 0.4);
    }
    .badge-purple {
      background: rgba(121, 40, 202, 0.2);
      color: #c084fc;
      border: 1px solid rgba(121, 40, 202, 0.4);
    }

    /* Category Specific Components */
    .cat-hero {
      padding: 3rem 0 2rem;
      background: radial-gradient(circle at 80% 20%, rgba(255, 42, 109, 0.08), transparent 50%),
                  radial-gradient(circle at 10% 80%, rgba(5, 217, 232, 0.05), transparent 45%),
                  var(--bg-main);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 1.2rem;
    }
    .breadcrumb-nav a:hover {
      color: var(--primary);
    }
    .breadcrumb-nav span {
      color: var(--text-muted);
    }
    .cat-title-wrap h1 {
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.6rem;
      letter-spacing: -0.5px;
    }
    .cat-title-wrap p {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 820px;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Filter Panel */
    .filter-panel {
      padding: 1.8rem 0;
      background: #11141b;
      border-bottom: 1px solid var(--border);
    }
    .filter-group-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 0.5rem 0;
    }
    .filter-label {
      font-size: 0.85rem;
      color: var(--text-dim);
      min-width: 60px;
      font-weight: 600;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    .filter-btn {
      padding: 0.3rem 0.85rem;
      border-radius: 4px;
      font-size: 0.82rem;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover {
      border-color: var(--border-hover);
      color: #fff;
    }
    .filter-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 0 10px var(--primary-glow);
    }

    /* Anime Grid & Posters */
    .cat-grid-section {
      padding: 3.5rem 0;
    }
    .grid-header-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.8rem;
    }
    .grid-header-meta h2 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }
    .grid-counter {
      font-size: 0.85rem;
      color: var(--text-dim);
    }
    .grid-counter strong {
      color: var(--cyan);
    }
    .anime-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: var(--transition);
      margin-bottom: 1.8rem;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
      border-color: var(--border-hover);
    }
    .poster-wrap {
      position: relative;
      width: 100%;
      padding-top: 133%; /* 3:4 ratio */
      overflow: hidden;
      background: #060709;
    }
    .poster-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-card:hover .poster-wrap img {
      transform: scale(1.06);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.2) 60%, transparent 100%);
      pointer-events: none;
    }
    .corner-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
      padding: 2px 7px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #ffb703;
      border: 1px solid rgba(255, 183, 3, 0.3);
      z-index: 2;
    }
    .play-float-btn {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      opacity: 0;
      transform: scale(0.8);
      transition: var(--transition);
      z-index: 3;
      box-shadow: 0 0 14px var(--primary-glow);
    }
    .anime-card:hover .play-float-btn {
      opacity: 1;
      transform: scale(1);
    }
    .card-content {
      padding: 1.1rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.45rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-meta-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--text-dim);
      margin-bottom: 0.5rem;
    }
    .card-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0.8rem;
      flex: 1;
    }
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }
    .card-tags span {
      font-size: 0.7rem;
      padding: 2px 6px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border-radius: 3px;
    }
    .pagination-trigger {
      margin-top: 2rem;
      text-align: center;
    }

    /* Spotlight Section */
    .spotlight-section {
      padding: 3.5rem 0;
      background: linear-gradient(180deg, var(--bg-main), #13161f 50%, var(--bg-main));
    }
    .spotlight-banner {
      position: relative;
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .spotlight-bg-img {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      object-fit: cover;
      opacity: 0.28;
      filter: blur(1px);
      mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    }
    .spotlight-inner {
      position: relative;
      z-index: 2;
      padding: 3.5rem 3rem;
      max-width: 680px;
    }
    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 1rem;
    }
    .spotlight-inner h3 {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }
    .spotlight-inner p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .spotlight-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
    }
    .spec-item {
      display: flex;
      flex-direction: column;
    }
    .spec-item span:first-child {
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .spec-item span:last-child {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--cyan);
    }
    .spotlight-actions {
      display: flex;
      gap: 1rem;
    }

    /* Watch Guide Cards */
    .guide-section {
      padding: 3.5rem 0;
    }
    .section-title-wrap {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }
    .section-title-wrap h2 {
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .section-title-wrap p {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin: 0;
    }
    .guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem 1.6rem;
      height: 100%;
      transition: var(--transition);
      position: relative;
    }
    .guide-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-3px);
    }
    .guide-icon-box {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(255, 42, 109, 0.12);
      border: 1px solid rgba(255, 42, 109, 0.3);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
    }
    .guide-card:nth-child(2) .guide-icon-box {
      background: rgba(5, 217, 232, 0.12);
      border-color: rgba(5, 217, 232, 0.3);
      color: var(--cyan);
    }
    .guide-card:nth-child(3) .guide-icon-box {
      background: rgba(121, 40, 202, 0.15);
      border-color: rgba(121, 40, 202, 0.35);
      color: #c084fc;
    }
    .guide-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .guide-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    /* FAQ Accordion */
    .faq-section {
      padding: 3.5rem 0;
      background: #0e1017;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .faq-list {
      max-width: 840px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: rgba(255, 255, 255, 0.18);
    }
    .faq-q {
      padding: 1.2rem 1.5rem;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-q i {
      font-size: 0.85rem;
      color: var(--text-dim);
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-q i {
      transform: rotate(180deg);
      color: var(--primary);
    }
    .faq-a {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
      display: none;
    }
    .faq-item.open .faq-a {
      display: block;
    }

    /* Category Subscribe Banner */
    .subscribe-section {
      padding: 4rem 0;
    }
    .sub-banner {
      background: linear-gradient(135deg, rgba(255, 42, 109, 0.15), rgba(121, 40, 202, 0.15) 50%, rgba(5, 217, 232, 0.12));
      border: 1px solid rgba(255, 42, 109, 0.35);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .sub-banner h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .sub-banner p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto 1.8rem;
    }
    .sub-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      max-width: 480px;margin: 0 auto;
    }
    .sub-input {
      flex: 1;
      padding: 0.75rem 1.2rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: rgba(11, 12, 16, 0.8);
      color: #fff;
      font-size: 0.9rem;
      outline: none;
    }
    .sub-input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 10px var(--cyan-glow);
    }

    /* Footer */
    .site-footer {
      background: #08090c;
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
    }
    .footer-top {
      margin-bottom: 3rem;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1.2rem;
    }
    .footer-brand .logo-icon {
      color: var(--primary);
      font-size: 1.4rem;
    }
    .footer-intro {
      font-size: 0.85rem;
      color: var(--text-dim);
      line-height: 1.65;
      margin-bottom: 1.4rem;
    }
    .footer-tech-tag {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-tech-tag span {
      font-size: 0.7rem;
      padding: 3px 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--text-muted);
      border-radius: 3px;
    }
    .footer-col h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      font-size: 0.85rem;
      color: var(--text-dim);
      transition: var(--transition);
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 4px;
    }
    .node-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      background: rgba(5, 217, 232, 0.08);
      border: 1px solid rgba(5, 217, 232, 0.25);
      border-radius: 20px;
      font-size: 0.78rem;
      color: var(--cyan);
    }
    .node-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 6px var(--cyan);
    }
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .copyright-txt {
      font-size: 0.8rem;
      color: var(--text-dim);
      margin: 0;
    }
    .footer-extra-notes {
      font-size: 0.8rem;
      color: var(--text-dim);
      text-align: right;
      margin: 0;
    }

    /* Responsive */
    @media screen and (max-width: 1024px) {
      .mega-menu-panel {
        display: none;
      }
      .main-nav {
        gap: 1.2rem;
      }
    }
    @media screen and (max-width: 768px) {
      .nav-tools .speed-badge {
        display: none;
      }
      .main-nav {
        gap: 0.8rem;
      }
      .nav-item {
        font-size: 0.85rem;
      }
      .cat-title-wrap h1 {
        font-size: 1.65rem;
      }
      .filter-group-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
      }
      .spotlight-inner {
        padding: 2rem 1.5rem;
      }
      .spotlight-bg-img {
        width: 100%;
        opacity: 0.15;
      }
      .sub-form {
        flex-direction: column;
      }
      .footer-extra-notes {
        text-align: left;
        margin-top: 0.8rem;
      }
    }

/* roulang page: category3 */
:root {
      --bg-main: #0b0c10;
      --bg-card: #151821;
      --bg-card-hover: #1c212d;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.35);
      --cyan: #05d9e8;
      --cyan-glow: rgba(5, 217, 232, 0.3);
      --purple: #7928ca;
      --text-main: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #626778;
      --border: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 42, 109, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    
    /* Header & Mega Menu */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--purple));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .brand-logo span {
      background: linear-gradient(90deg, #fff, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
    }
    .nav-item {
      position: relative;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-item:hover, .nav-item.active {
      color: #fff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }
    .mega-parent:hover .mega-menu-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 580px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      z-index: 1010;
    }
    .mega-card {
      display: flex;
      gap: 12px;
      background: rgba(255,255,255,0.03);
      padding: 10px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      transition: var(--transition);
    }
    .mega-card:hover {
      background: rgba(255, 42, 109, 0.08);
      border-color: var(--border-hover);
    }
    .mega-card img {
      width: 64px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }
    .mega-card-info h5 {
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .mega-card-info p {
      font-size: 0.78rem;
      color: var(--text-dim);
      line-height: 1.3;
      margin-bottom: 0;
    }
    .nav-tools {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .speed-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 0.78rem;
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyan);
    }
    .speed-badge .dot {
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 6px var(--cyan);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.75rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      outline: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #e61055);
      color: #fff;
      box-shadow: 0 4px 16px var(--primary-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(255, 42, 109, 0.5);
      color: #fff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-sm {
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
    }
    .btn-outline-primary {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }
    .btn-outline-primary:hover {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 0 14px var(--primary-glow);
    }
    .badge-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .badge-pink {
      background: rgba(255, 42, 109, 0.15);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.35);
    }
    .badge-cyan {
      background: rgba(5, 217, 232, 0.15);
      color: var(--cyan);
      border: 1px solid rgba(5, 217, 232, 0.35);
    }
    .badge-purple {
      background: rgba(121, 40, 202, 0.25);
      color: #c48dfc;
      border: 1px solid rgba(121, 40, 202, 0.45);
    }

    /* Section 1: Category Header */
    .cat-header-section {
      position: relative;
      padding: 3rem 0 2.5rem 0;
      background: radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.18) 0%, rgba(11, 12, 16, 0.95) 70%),
                  url('/assets/images/d9901c0fb6349ed7.jpg') center/cover no-repeat;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .cat-header-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 12, 16, 0.75) 0%, #0b0c10 100%);
      pointer-events: none;
    }
    .cat-header-content {
      position: relative;
      z-index: 2;
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }
    .breadcrumb-nav a:hover {
      color: var(--cyan);
    }
    .cat-h1 {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .cat-desc-lead {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 820px;
      line-height: 1.68;
      margin-bottom: 1.4rem;
    }
    .cat-stat-strip {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .cat-stat-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(21, 24, 33, 0.85);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .cat-stat-pill strong {
      color: #fff;
    }

    /* Section 2: Filter Toolbar */
    .filter-section {
      padding: 1.6rem 0;
      background: #11141c;
      border-bottom: 1px solid var(--border);
    }
    .filter-row {
      display: flex;
      align-items: center;
      margin-bottom: 0.75rem;
      font-size: 0.88rem;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      width: 72px;
      flex-shrink: 0;
      color: var(--text-dim);
      font-weight: 600;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag {
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 0.82rem;
      cursor: pointer;
      transition: var(--transition);
      background: transparent;
      border: 1px solid transparent;
    }
    .filter-tag:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
    }
    .filter-tag.active {
      background: rgba(255, 42, 109, 0.15);
      border-color: rgba(255, 42, 109, 0.4);
      color: var(--primary);
      font-weight: 600;
    }

    /* Section 3: Catalog Grid */
    .catalog-section {
      padding: 3.5rem 0 4.5rem;
    }
    .catalog-title-bar {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2rem;
    }
    .catalog-title-bar h2 {
      font-size: 1.45rem;
      font-weight: 700;
      color: #fff;
    }
    .catalog-count-note {
      font-size: 0.85rem;
      color: var(--text-dim);
    }
    .anime-poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1.8rem;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: calc(100% - 1.8rem);
    }
    .anime-poster-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-hover);
      box-shadow: 0 12px 28px rgba(0,0,0,0.65), 0 0 16px rgba(255, 42, 109, 0.18);
    }
    .poster-img-box {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: #10121a;
    }
    .poster-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .poster-img-box img {
      transform: scale(1.05);
    }
    .poster-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 50%, rgba(11, 12, 16, 0.95) 100%);
    }
    .top-badge-group {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 2;
    }
    .duration-badge {
      position: absolute;
      bottom: 8px;
      right: 10px;
      font-size: 0.72rem;
      background: rgba(0,0,0,0.7);
      padding: 2px 6px;
      border-radius: 3px;
      color: #ddd;
      z-index: 2;
    }
    .card-meta-body {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-subinfo {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
color: var(--text-dim);
      margin-bottom: 8px;
    }
    .card-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: auto;
    }
    .card-tags-list span {
      font-size: 0.7rem;
      background: rgba(255,255,255,0.05);
      color: var(--text-muted);
      padding: 1px 6px;
      border-radius: 2px;
    }
    .load-more-wrap {
      text-align: center;
      margin-top: 1.5rem;
    }

    /* Section 4: Spotlight Feature */
    .spotlight-section {
      padding: 3rem 0;
      background: #11141d;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .spotlight-box {
      background: linear-gradient(135deg, rgba(21, 24, 33, 0.95), rgba(30, 20, 42, 0.95));
      border: 1px solid rgba(255, 42, 109, 0.25);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(0,0,0,0.5);
    }
    .spotlight-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
      pointer-events: none;
    }
    .spotlight-thumb {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.6);
      aspect-ratio: 16/9;
    }
    .spotlight-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .spotlight-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }
    .spotlight-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--cyan);
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .spotlight-title {
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .spotlight-desc {
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .spotlight-params {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
    }
    .param-item {
      display: flex;
      flex-direction: column;
    }
    .param-item span:first-child {
      font-size: 0.72rem;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .param-item span:last-child {
      font-size: 0.95rem;
      color: #fff;
      font-weight: 600;
    }

    /* Section 5: Audio-Visual Guide */
    .guide-section {
      padding: 4.5rem 0;
    }
    .guide-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 3rem;
    }
    .guide-head h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .guide-head p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      height: 100%;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .guide-card:hover {
      border-color: var(--cyan);
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(5, 217, 232, 0.12);
    }
    .guide-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.25);
      color: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }
    .guide-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .guide-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* Section 6: FAQ Accordion */
    .faq-section {
      padding: 4.5rem 0;
      background: #0f1218;
      border-top: 1px solid var(--border);
    }
    .faq-wrapper {
      max-width: 860px;
      margin: 0 auto;
    }
    .faq-head {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .faq-head h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: rgba(255, 255, 255, 0.16);
    }
    .faq-question {
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.02rem;
      font-weight: 600;
      color: #fff;
      user-select: none;
    }
    .faq-toggle-icon {
      color: var(--primary);
      transition: transform 0.3s ease;
      font-size: 0.9rem;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
      background: rgba(0,0,0,0.15);
    }
    .faq-answer-inner {
      padding: 0 1.5rem 1.4rem;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }
    .faq-item.active .faq-toggle-icon {
      transform: rotate(180deg);
    }
    .faq-item.active .faq-answer {
      max-height: 240px;
    }

    /* Section 7: Subscription Banner */
    .sub-cta-section {
      padding: 3.5rem 0 4.5rem;
      position: relative;
    }
    .sub-cta-card {
      background: linear-gradient(135deg, rgba(255, 42, 109, 0.12) 0%, rgba(121, 40, 202, 0.16) 100%), #141722;
      border: 1px solid rgba(255, 42, 109, 0.3);
      border-radius: var(--radius-lg);
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    }
    .sub-cta-card h2 {
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .sub-cta-card p {
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 1.8rem;
      font-size: 0.98rem;
    }
    .sub-action-group {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    /* Footer Shared */
    .site-footer {
      background: #08090d;
      border-top: 1px solid var(--border);
      padding: 4.5rem 0 2rem;
    }
    .footer-top {
      padding-bottom: 3.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-col h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
      letter-spacing: 0.5px;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.1rem;
    }
    .footer-brand .logo-icon {
      font-size: 1.8rem;
      color: var(--primary);
    }
    .footer-brand .logo-text {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-intro {
      font-size: 0.85rem;
      color: var(--text-dim);
      line-height: 1.68;
      margin-bottom: 1.4rem;
    }
    .footer-tech-tag {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .footer-tech-tag span {
      font-size: 0.68rem;
      color: var(--cyan);
      background: rgba(5, 217, 232, 0.08);
      border: 1px solid rgba(5, 217, 232, 0.2);
      padding: 2px 8px;
      border-radius: 3px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 4px;
    }
    .node-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.04);
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 0.78rem;
      color: var(--text-dim);
      border: 1px solid var(--border);
    }
    .node-dot {
      width: 7px;
      height: 7px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 6px #00ff88;
    }
    .footer-bottom {
      padding-top: 2rem;
    }
    .copyright-txt {
      font-size: 0.82rem;
      color: var(--text-dim);
      margin: 0;
    }
    .footer-legal-bar {
      display: flex;
      justify-content: flex-end;
      gap: 1.5rem;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .footer-legal-bar a:hover {
      color: #fff;
    }

    @media screen and (max-width: 991px) {
      .main-nav {
        display: none;
      }
      .cat-h1 {
        font-size: 1.8rem;
      }
      .spotlight-info {
        margin-top: 1.5rem;
      }
      .footer-legal-bar {
        justify-content: flex-start;
        margin-top: 1rem;
      }
    }
    @media screen and (max-width: 639px) {
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
      .filter-label {
        width: 100%;
      }
      .spotlight-title {
        font-size: 1.4rem;
      }
      .sub-cta-card {
        padding: 2rem 1.2rem;
      }
      .sub-cta-card h2 {
        font-size: 1.4rem;
      }
      .cat-stat-strip {
        gap: 0.6rem;
      }
    }

/* roulang page: category4 */
:root {
      --bg-main: #0b0c10;
      --bg-card: #151821;
      --bg-card-hover: #1c212d;
      --primary: #ff2a6d;
      --primary-glow: rgba(255, 42, 109, 0.35);
      --cyan: #05d9e8;
      --cyan-glow: rgba(5, 217, 232, 0.3);
      --purple: #7928ca;
      --text-main: #ffffff;
      --text-muted: #a0a5b5;
      --text-dim: #626778;
      --border: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 42, 109, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    /* Header & Mega Menu */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--purple));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 0 15px var(--primary-glow);
    }
    .brand-logo span {
      background: linear-gradient(90deg, #fff, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
    }
    .nav-item {
      position: relative;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-item:hover, .nav-item.active {
      color: #fff;
    }
    .nav-item.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 8px var(--primary);
    }
    .mega-parent:hover .mega-menu-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-menu-panel {
      position: absolute;
      top: 100%;
      right: 0;
      width: 580px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: 0 16px 36px rgba(0,0,0,0.6);
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      z-index: 1010;
    }
    .mega-card {
      display: flex;
      gap: 12px;
      background: rgba(255,255,255,0.03);
      padding: 10px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      transition: var(--transition);
    }
    .mega-card:hover {
      background: rgba(255, 42, 109, 0.08);
      border-color: var(--border-hover);
    }
    .mega-card img {
      width: 64px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }
    .mega-card-info h5 {
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .mega-card-info p {
      font-size: 0.78rem;
      color: var(--text-dim);
      line-height: 1.3;
      margin-bottom: 0;
    }
    .nav-tools {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .speed-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 0.78rem;
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.3);
      color: var(--cyan);
    }
    .speed-badge .dot {
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.75rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      outline: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #e61055);
      color: #fff;
      box-shadow: 0 4px 16px var(--primary-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(255, 42, 109, 0.5);
      color: #fff;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-sm {
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
    }
    .badge-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
    }
    .badge-pink {
      background: rgba(255, 42, 109, 0.2);
      color: var(--primary);
      border: 1px solid rgba(255, 42, 109, 0.4);
    }
    .badge-cyan {
      background: rgba(5, 217, 232, 0.15);
      color: var(--cyan);
      border: 1px solid rgba(5, 217, 232, 0.4);
    }
    .badge-purple {
      background: rgba(121, 40, 202, 0.2);
      color: #b37feb;
      border: 1px solid rgba(121, 40, 202, 0.4);
    }

    /* Category Section 1: Hero & Search Bar Header */
    .cat-hero-panel {
      position: relative;
      background: radial-gradient(circle at 50% 20%, rgba(121, 40, 202, 0.2), transparent 70%), linear-gradient(180deg, #151821 0%, #0b0c10 100%);
      padding: 3.5rem 0 2.5rem;
      border-bottom: 1px solid var(--border);
    }
    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 1.2rem;
    }
    .cat-breadcrumb a {
      color: var(--text-muted);
    }
    .cat-breadcrumb a:hover {
      color: var(--cyan);
    }
    .cat-hero-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }
    .cat-hero-title span {
      color: var(--cyan);
    }
    .cat-hero-desc {
      font-size: 0.96rem;
      color: var(--text-muted);
      max-width: 820px;
      margin-bottom: 1.8rem;
    }
    .hero-search-box {
      max-width: 680px;
      display: flex;
      background: rgba(21, 24, 33, 0.9);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
      margin-bottom: 1.2rem;
    }
    .hero-search-box input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 0.9rem 1.2rem;
      color: #fff;
      font-size: 0.92rem;
      outline: none;
      margin: 0;
    }
    .hero-search-box input::placeholder {
      color: var(--text-dim);
    }
    .hero-search-box button {
      background: linear-gradient(135deg, var(--cyan), #0099cc);
      color: #0b0c10;
      font-weight: 700;
      padding: 0 1.6rem;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }
    .hero-search-box button:hover {
      background: #fff;
    }
    .search-chips {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .chip-item {
      padding: 3px 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 20px;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .chip-item:hover {
      border-color: var(--cyan);
      color: #fff;
    }

    /* Category Section 2: Multi Filters */
    .filter-hub {
      background: #11131a;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 0;
    }
    .filter-group {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .filter-group:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dim);
      min-width: 72px;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      font-size: 0.82rem;
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover {
      color: #fff;
      background: rgba(255,255,255,0.04);
    }
    .filter-btn.active {
      background: rgba(5, 217, 232, 0.15);
      color: var(--cyan);
      border-color: rgba(5, 217, 232, 0.4);
      font-weight: 600;
    }

    /* Category Section 3: Anime Media Grid */
    .catalog-section {
      padding: 3.5rem 0;
    }
    .catalog-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .catalog-count {
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    .catalog-count strong {
      color: var(--cyan);
    }
    .media-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      overflow: hidden;
      margin-bottom: 1.8rem;
      transition: var(--transition);
      position: relative;
    }
    .media-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
      border-color: var(--border-hover);
    }
    .media-poster-wrap {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .media-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .media-card:hover .media-poster-wrap img {
      transform: scale(1.05);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.3) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
    }
    .overlay-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    .overlay-score {
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #ffb800;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .play-hover-btn {
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 0 16px var(--primary-glow);
      opacity: 0;
      transform: scale(0.7);
      transition: var(--transition);
      align-self: center;
    }
    .media-card:hover .play-hover-btn {
      opacity: 1;
      transform: scale(1);
    }
    .overlay-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .media-content {
      padding: 14px 14px 16px;
    }
    .media-title {
      font-size: 0.96rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .media-meta-tags {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.76rem;
      color: var(--text-dim);
      margin-bottom: 8px;
    }
    .media-desc-brief {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      height: 2.9rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .loadmore-wrap {
      text-align: center;
      margin-top: 1.5rem;
    }

    /* Category Section 4: Spotlight Feature */
    .spotlight-section {
      padding: 3rem 0;
      background: linear-gradient(180deg, var(--bg-main) 0%, #151821 50%, var(--bg-main) 100%);
    }
    .spotlight-card {
      background: radial-gradient(circle at 80% 50%, rgba(255, 42, 109, 0.15), transparent 60%), #151821;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    }
    .spotlight-thumb {
      flex: 0 0 380px;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    }
    .spotlight-thumb img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .spotlight-info {
      flex: 1;
    }
    .spotlight-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: rgba(255, 42, 109, 0.15);
      border: 1px solid rgba(255, 42, 109, 0.35);
      color: var(--primary);
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .spotlight-title {
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .spotlight-summary {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 2rem;
    }
    .spec-box {
      background: rgba(255,255,255,0.03);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
    }
    .spec-box span {
      display: block;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .spec-box strong {
      font-size: 0.92rem;
      color: var(--cyan);
    }

    /* Category Section 5: Highlights / Watch Guide */
    .guide-section {
      padding: 3.5rem 0;
    }
    .section-headline {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-headline h2 {
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .section-headline p {
      font-size: 0.95rem;
      color: var(--text-dim);
    }
    .guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem 1.8rem;
      height: 100%;
      transition: var(--transition);
      position: relative;
    }
    .guide-card:hover {
      border-color: rgba(5, 217, 232, 0.4);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .guide-icon-box {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-sm);
      background: rgba(5, 217, 232, 0.1);
      border: 1px solid rgba(5, 217, 232, 0.25);
      color: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 1.2rem;
    }
    .guide-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .guide-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Category Section 6: FAQ Accordion */
    .faq-section {
      padding: 3.5rem 0;
      background: #11131a;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .faq-wrapper {
      max-width: 860px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: var(--border-hover);
    }
    .faq-question {
      padding: 1.2rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: #fff;
      font-size: 1rem;
    }
    .faq-question i {
      color: var(--cyan);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      color: var(--primary);
    }
    .faq-answer {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
      display: none;
      border-top: 1px solid rgba(255,255,255,0.04);
      padding-top: 1rem;
    }
    .faq-item.active .faq-answer {
      display: block;
    }

    /* Category Section 7: Subscription Banner */
    .subscribe-banner {
      padding: 4rem 0;
      background: radial-gradient(circle at center, rgba(121, 40, 202, 0.25) 0%, rgba(11, 12, 16, 1) 80%);
      position: relative;
    }
    .sub-box {
      border: 1px solid rgba(255, 42, 109, 0.35);
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(21, 24, 33, 0.95), rgba(11, 12, 16, 0.95));
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      box-shadow: 0 0 30px rgba(255, 42, 109, 0.15);
    }
    .sub-box h2 {
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .sub-box p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto 1.8rem;
    }
    .sub-form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      gap: 10px;
    }
    .sub-form input {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: #fff;
      padding: 0.8rem 1.2rem;
      border-radius: var(--radius-sm);
      outline: none;
      font-size: 0.92rem;
      margin: 0;
    }
    .sub-form input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 10px var(--cyan-glow);
    }

    /* Footer Styles */
    .site-footer {
      background: #08090c;
      border-top: 1px solid var(--border);
      padding: 4.5rem 0 2rem;
    }
    .footer-top {
      margin-bottom: 3.5rem;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 1.2rem;
    }
    .footer-brand .logo-icon {
      color: var(--primary);
      font-size: 1.6rem;
    }
    .footer-brand .logo-text {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-intro {
      font-size: 0.86rem;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }
    .footer-tech-tag {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .footer-tech-tag span {
      font-size: 0.7rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      padding: 2px 6px;
      border-radius: 3px;
      color: var(--text-dim);
    }
    .footer-col h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 8px;
    }
    .footer-col h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--cyan);
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 0.86rem;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 4px;
    }
    .node-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 4px;
      background: rgba(5, 217, 232, 0.08);
      border: 1px solid rgba(5, 217, 232, 0.25);
      font-size: 0.78rem;
      color: var(--cyan);
    }
    .node-dot {
      width: 8px;
      height: 8px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 8px #00ff88;
    }
    .footer-bottom {
      padding-top: 1.8rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .copyright-txt {
      font-size: 0.82rem;
      color: var(--text-dim);
      margin: 0;
    }
    .footer-bottom-links {
      display: flex;
      justify-content: flex-end;
      gap: 1.5rem;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .footer-bottom-links a:hover {
      color: #fff;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .spotlight-card {
        flex-direction: column;
        gap: 1.5rem;
      }
      .spotlight-thumb {
        flex: 0 0 auto;
        width: 100%;
      }
    }
    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }
      .nav-tools .speed-badge {
        display: none;
      }
      .cat-hero-title {
        font-size: 1.6rem;
      }
      .sub-form {
        flex-direction: column;
      }
      .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
      }
    }
