/* roulang page: index */
:root {
      --canvas-bg: #0a0c10;
      --canvas-alt: #0e1117;
      --surface-card: #12161f;
      --surface-hover: #1a202c;
      --primary-accent: #ff5e1f;
      --primary-hover: #ff7843;
      --secondary-accent: #ffb800;
      --text-white: #ffffff;
      --text-muted: #9ca3af;
      --text-dim: #64748b;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 94, 31, 0.45);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-pill: 9999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      background-color: var(--canvas-bg);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      color: var(--text-white);
      font-weight: 700;
      line-height: 1.25;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-accent);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Bootstrap Overrides */
    .container {
      max-width: 1240px;
    }
    .btn-primary {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.6rem;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
      transform: translateY(-2px);
      color: #fff;
    }
    .btn-outline-primary {
      color: var(--primary-accent);
      border-color: var(--primary-accent);
      border-radius: var(--radius-sm);
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
      background: var(--primary-accent);
      color: #fff;
      border-color: var(--primary-accent);
    }

    /* Navigation Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-accent);
      font-size: 1.65rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
      position: relative;
      width: 320px;
    }
    .nav-search-slot input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.45rem 1rem 0.45rem 2.4rem;
      color: var(--text-white);
      font-size: 0.875rem;
      width: 100%;
      outline: none;
      transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .drawer-trigger-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.5rem 0.85rem;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }

    /* Offcanvas Redesign */
    .offcanvas-custom {
      background: #0d1117;
      color: var(--text-muted);
      border-left: 1px solid var(--border-subtle);
      width: 400px !important;
    }
    .offcanvas-custom .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-white);
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
      background: rgba(255, 94, 31, 0.12);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
      padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
      font-size: 0.9rem;
      color: var(--text-dim);
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
      color: var(--primary-accent);
      transform: translateX(3px);
    }

    /* General Section Styling */
    .section-wrap {
      padding: 5.5rem 0;
      position: relative;
    }
    .bg-alt {
      background-color: var(--canvas-alt);
    }
    .section-head {
      margin-bottom: 3.5rem;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.35rem 0.95rem;
      background: rgba(255, 94, 31, 0.12);
      border: 1px solid rgba(255, 94, 31, 0.3);
      border-radius: var(--radius-pill);
      color: var(--primary-accent);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: 2.2rem;
      letter-spacing: -0.5px;
      margin-bottom: 0.85rem;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 780px;
      line-height: 1.7;
    }

    /* Hero Section - Product Focused */
    .hero-section {
      padding: 4.5rem 0 6rem 0;
      background: radial-gradient(circle at 80% 20%, rgba(255, 94, 31, 0.15) 0%, transparent 60%),
                  linear-gradient(180deg, rgba(10, 12, 16, 0.4) 0%, #0a0c10 100%),
                  url('/assets/images/92e910fc8ef26d27.webp') center center / cover no-repeat;
      position: relative;
    }
    .hero-h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }
    .hero-lead {
      color: #cbd5e1;
      font-size: 1.15rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 620px;
    }
    .hero-metric-pill {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      background: rgba(18, 22, 31, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.8rem;
      margin-top: 1rem;
    }
    .metric-item {
      display: flex;
      flex-direction: column;
    }
    .metric-val {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--secondary-accent);
      line-height: 1;
    }
    .metric-lbl {
      font-size: 0.8rem;
      color: var(--text-dim);
      margin-top: 5px;
    }
    .hero-play-stage {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: var(--shadow-base);
    }
    .hero-play-stage img {
      width: 100%;
      height: 380px;
      object-fit: cover;
    }
    .hero-stage-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.8rem;
    }
    .hero-stage-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(255, 94, 31, 0.9);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
    }
    .hero-stream-bar {
      width: 100%;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      margin-top: 10px;
      overflow: hidden;
    }
    .hero-stream-progress {
      width: 68%;
      height: 100%;
      background: var(--primary-accent);
    }

    /* Section 2: Engine Grid */
    .engine-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem 1.75rem;
      height: 100%;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }
    .engine-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: transparent;
      transition: var(--transition-smooth);
    }
    .engine-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 94, 31, 0.4);
      background: var(--surface-hover);
      box-shadow: var(--shadow-glow);
    }
    .engine-card:hover::before {
      background: var(--primary-accent);
    }
    .engine-icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: var(--radius-sm);
      background: rgba(255, 94, 31, 0.1);
      color: var(--primary-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.35rem;
      border: 1px solid rgba(255, 94, 31, 0.2);
    }
    .engine-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    .engine-card p {
      font-size: 0.925rem;
      margin-bottom: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Section 3: Scenario Split */
    .scenario-row {
      align-items: center;
      margin-bottom: 4rem;
    }
    .scenario-row:last-child {
      margin-bottom: 0;
    }
    .scenario-img-box {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-base);
    }
    .scenario-img-box img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .scenario-img-box:hover img {
      transform: scale(1.04);
    }
    .scenario-text h3 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    .scenario-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 1.25rem;
    }
    .scenario-tag {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-pill);
      font-size: 0.825rem;
      color: #e2e8f0;
    }

    /* Section 4: Player Interactive Mockup */
    .player-window {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
      position: relative;
    }
    .player-header-bar {
      background: rgba(20, 24, 33, 0.95);
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border-subtle);
    }
    .player-dots {
      display: flex;
      gap: 6px;
    }
    .player-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #334155;
    }
    .player-dot.red { background: #ef4444; }
    .player-dot.yellow { background: #f59e0b; }
    .player-dot.green { background: #10b981; }
    .player-screen-area {
      position: relative;
      height: 480px;
      background: url('/assets/images/485a93a06b1276b4.jpg') center center / cover no-repeat;
      display: flex;
      align-items: flex-end;
    }
    .player-center-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(255, 94, 31, 0.85);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      cursor: pointer;
      box-shadow: 0 0 25px rgba(255, 94, 31, 0.6);
      transition: var(--transition-smooth);
    }
    .player-center-icon:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: var(--primary-accent);
    }
    .player-bottom-controls {
      width: 100%;
      padding: 1.5rem 1.8rem 1.2rem;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 100%);
    }
    .slider-track {
      height: 5px;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 3px;
      position: relative;
      cursor: pointer;
      margin-bottom: 12px;
    }
    .slider-fill {
      width: 44%;
      height: 100%;
      background: var(--primary-accent);
      border-radius: 3px;
    }
    .slider-handle {
      position: absolute;
      top: 50%;
      left: 44%;
      transform: translate(-50%, -50%);
      width: 13px;
      height: 13px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0,0,0,0.5);
    }
    .controls-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      font-size: 0.9rem;
    }
    .ctrl-btns {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .ctrl-badge {
      background: rgba(255, 255, 255, 0.15);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* Section 5: Movie Card Grid */
    .movie-poster-card {
      background: var(--surface-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: var(--transition-smooth);
      position: relative;
    }
    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-glow);
      box-shadow: var(--shadow-glow);
    }
    .poster-img-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #1e2430;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-img-wrap img {
      transform: scale(1.08);
    }
    .poster-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(10, 12, 16, 0.85);
      border: 1px solid var(--border-subtle);
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      color: #f1f5f9;
      font-weight: 600;
    }
    .poster-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 184, 0, 0.95);
      color: #000;
      padding: 2px 7px;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .poster-hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .movie-poster-card:hover .poster-hover-overlay {
      opacity: 1;
    }
    .play-btn-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary-accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 0 15px rgba(255, 94, 31, 0.5);
    }
    .poster-info {
      padding: 1rem 1.15rem;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta {
      display: flex;
      justify-content: space-between;
      color: var(--text-dim);
      font-size: 0.825rem;
    }

    /* Section 6: Pricing Tier Cards */
    .tier-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.8rem 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition-smooth);
    }
    .tier-card.featured {
      background: linear-gradient(180deg, #161c28 0%, #11151f 100%);
      border-color: rgba(255, 94, 31, 0.5);
      box-shadow: 0 15px 40px -10px rgba(255, 94, 31, 0.25);
      transform: translateY(-8px);
    }
    .tier-ribbon {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-accent);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      letter-spacing: 0.5px;
      box-shadow: 0 4px 10px rgba(255, 94, 31, 0.4);
    }
    .tier-title {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }
    .tier-price-box {
      margin: 1.5rem 0 2rem;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .tier-symbol {
      font-size: 1.4rem;
      color: var(--text-white);
      font-weight: 700;
    }
    .tier-num {
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--text-white);
      line-height: 1;
    }
    .tier-cycle {
      color: var(--text-dim);
      font-size: 0.9rem;
    }
    .tier-benefits {
      list-style: none;
      padding: 0;
      margin: 0 0 2.2rem 0;
      flex-grow: 1;
    }
    .tier-benefits li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.95rem;
      font-size: 0.925rem;
      color: #cbd5e1;
    }
    .tier-benefits li i {
      color: var(--primary-accent);
      font-size: 0.9rem;
    }

    /* Section 7: Reviews Waterfall Wall */
    .review-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      margin-bottom: 1.5rem;
      transition: var(--transition-smooth);
    }
    .review-card:hover {
      border-color: rgba(255, 94, 31, 0.3);
      transform: translateY(-3px);
      box-shadow: var(--shadow-base);
    }
    .review-user-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.1rem;
    }
    .user-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #1e2433;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-accent);
      font-weight: 700;
      border: 1px solid var(--border-subtle);
    }
    .user-info h4 {
      font-size: 0.98rem;
      margin-bottom: 2px;
    }
    .user-device {
      font-size: 0.775rem;
      color: var(--text-dim);
    }
    .star-rating {
      color: var(--secondary-accent);
      font-size: 0.8rem;
      margin-bottom: 0.85rem;
    }
    .review-text {
      font-size: 0.925rem;
      color: #cbd5e1;
      line-height: 1.65;
      margin-bottom: 0;
    }

    /* Section 8: Critic Quote Hero */
    .critic-quote-box {
      background: radial-gradient(circle at 50% 0%, rgba(255, 94, 31, 0.08) 0%, transparent 70%),
                  var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 3.5rem 2.5rem;
      position: relative;
      text-align: center;
    }
    .critic-mark {
      font-size: 2.8rem;
      color: var(--primary-accent);
      opacity: 0.35;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .critic-body {
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--text-white);
      max-width: 820px;
      margin: 0 auto 1.8rem auto;
      line-height: 1.7;
    }
    .critic-author {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .critic-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid var(--primary-accent);
      object-fit: cover;
    }
    .critic-meta {
      text-align: left;
    }
    .critic-name {
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
    }
    .critic-title {
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    /* Section 9: News / Insights Grid */
    .news-primary-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .news-primary-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .news-primary-content {
      padding: 1.8rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-tag {
      color: var(--primary-accent);
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .news-mini-item {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.4rem;
      margin-bottom: 1.25rem;
      display: flex;
      gap: 1.25rem;
      align-items: center;
      transition: var(--transition-smooth);
    }
    .news-mini-item:last-child {
      margin-bottom: 0;
    }
    .news-mini-item:hover {
      border-color: rgba(255, 94, 31, 0.4);
      background: var(--surface-hover);
    }
    .news-mini-thumb {
      width: 110px;
      height: 75px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }
    .news-mini-info h4 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
      line-height: 1.4;
    }
    .news-mini-meta {
      font-size: 0.775rem;
      color: var(--text-dim);
    }

    /* Section 10: Exclusive Category Matrix */
    .cat-tile-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem 1.8rem;
      display: block;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }
    .cat-tile-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary-accent);
      box-shadow: var(--shadow-glow);
    }
    .cat-tile-icon {
      font-size: 2.2rem;
      color: var(--primary-accent);
      margin-bottom: 1.25rem;
    }
    .cat-tile-card h3 {
      font-size: 1.35rem;
      margin-bottom: 0.5rem;
    }
    .cat-tile-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }
    .cat-tile-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-accent);
      font-weight: 600;
      font-size: 0.85rem;
    }

    /* Section 11: FAQ Accordion Redesign */
    .custom-faq-accordion .accordion-item {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md) !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .custom-faq-accordion .accordion-button {
      background: var(--surface-card);
      color: var(--text-white);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1.35rem 1.75rem;
      box-shadow: none;
    }
    .custom-faq-accordion .accordion-button:not(.collapsed) {
      color: var(--primary-accent);
      background: rgba(255, 94, 31, 0.05);
      border-left: 3px solid var(--primary-accent);
    }
    .custom-faq-accordion .accordion-button::after {
      filter: invert(1) brightness(120%);
    }
    .custom-faq-accordion .accordion-body {
      padding: 1.25rem 1.75rem 1.6rem;
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.75;
      border-top: 1px solid var(--border-subtle);
    }

    /* Section 12: Conversion CTA Banner */
    .cta-banner-wrap {
      background: radial-gradient(circle at center, rgba(255, 94, 31, 0.22) 0%, rgba(18, 22, 31, 0.95) 75%),
                  linear-gradient(135deg, #161a24 0%, #0d1117 100%);
      border: 1px solid rgba(255, 94, 31, 0.35);
      border-radius: var(--radius-md);
      padding: 4.5rem 2.5rem;
      text-align: center;
      box-shadow: var(--shadow-glow);
    }
    .cta-banner-wrap h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }
    .cta-banner-wrap p {
      font-size: 1.1rem;
      color: #cbd5e1;
      max-width: 680px;
      margin: 0 auto 2.2rem;
    }
    .cta-guarantee-tags {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .cta-tag-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .cta-tag-item i {
      color: var(--secondary-accent);
    }

    /* Section 13: Compliance & Protocol */
    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .compliance-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .compliance-card i {
      font-size: 1.75rem;
      color: var(--primary-accent);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .compliance-card h4 {
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }
    .compliance-card p {
      font-size: 0.825rem;
      color: var(--text-dim);
      margin-bottom: 0;
      line-height: 1.5;
    }

    /* Footer */
    .site-footer {
      background: #07080c;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
      font-size: 0.9rem;
    }
    .footer-col h5 {
      font-size: 1.05rem;
      margin-bottom: 1.25rem;
      color: #fff;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      color: var(--text-dim);
    }
    .footer-links a:hover {
      color: var(--primary-accent);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      color: var(--text-dim);
      font-size: 0.825rem;
    }

    /* Responsive Queries */
    @media (max-width: 991.98px) {
      .hero-h1 { font-size: 2.35rem; }
      .section-title { font-size: 1.85rem; }
      .nav-search-slot { display: none; }
      .offcanvas-custom { width: 320px !important; }
      .tier-card.featured { transform: none; }
    }
    @media (max-width: 767.98px) {
      .section-wrap { padding: 3.5rem 0; }
      .hero-section { padding: 3rem 0 4.5rem 0; }
      .hero-h1 { font-size: 1.95rem; }
      .player-screen-area { height: 280px; }
      .cta-banner-wrap { padding: 3rem 1.5rem; }
      .cta-banner-wrap h2 { font-size: 1.85rem; }
      .offcanvas-custom { width: 100vw !important; }
    }

/* roulang page: category1 */
:root {
      --canvas-bg: #0a0c10;
      --canvas-alt: #0e1117;
      --surface-card: #12161f;
      --surface-hover: #1a202c;
      --primary-accent: #ff5e1f;
      --primary-hover: #ff7843;
      --secondary-accent: #ffb800;
      --text-white: #ffffff;
      --text-muted: #9ca3af;
      --text-dim: #64748b;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 94, 31, 0.45);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-pill: 9999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--canvas-bg);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-accent);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: 1240px;
    }

    /* Bootstrap Overrides */
    .btn-primary {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.6rem;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
      transform: translateY(-2px);
      color: #fff;
    }

    .btn-outline-primary {
      color: var(--primary-accent);
      border-color: var(--primary-accent);
      border-radius: var(--radius-sm);
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
      background: var(--primary-accent);
      color: #fff;
      border-color: var(--primary-accent);
    }

    /* Navigation Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-accent);
      font-size: 1.65rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
      position: relative;
      width: 320px;
    }
    .nav-search-slot input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.45rem 1rem 0.45rem 2.4rem;
      color: var(--text-white);
      font-size: 0.875rem;
      width: 100%;
      outline: none;
      transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .drawer-trigger-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.5rem 0.85rem;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }

    /* Offcanvas Redesign */
    .offcanvas-custom {
      background: #0d1117;
      color: var(--text-muted);
      border-left: 1px solid var(--border-subtle);
      width: 400px !important;
    }
    .offcanvas-custom .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-white);
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
      background: rgba(255, 94, 31, 0.12);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
      padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
      font-size: 0.9rem;
      color: var(--text-dim);
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
      color: var(--primary-accent);
      transform: translateX(3px);
    }

    /* Section Base */
    .section-wrap {
      padding: 4.5rem 0;
      position: relative;
    }
    .section-alt {
      background-color: var(--canvas-alt);
    }
    .section-head {
      margin-bottom: 2.5rem;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.35rem 0.95rem;
      background: rgba(255, 94, 31, 0.12);
      border: 1px solid rgba(255, 94, 31, 0.3);
      border-radius: var(--radius-pill);
      color: var(--primary-accent);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: 2rem;
      letter-spacing: -0.5px;
      color: var(--text-white);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 680px;
    }

    /* Section 1: Compact Category Header */
    .category-header-banner {
      position: relative;
      padding: 3.5rem 0 3rem;
      background: linear-gradient(180deg, rgba(14, 17, 23, 0.96) 0%, rgba(10, 12, 16, 0.98) 100%), url('/assets/images/92e910fc8ef26d27.webp') center/cover no-repeat;
      border-bottom: 1px solid var(--border-subtle);
    }
    .breadcrumb-custom {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      margin-bottom: 1.2rem;
      color: var(--text-dim);
    }
    .breadcrumb-custom a {
      color: var(--text-muted);
    }
    .breadcrumb-custom a:hover {
      color: var(--primary-accent);
    }
    .category-h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }
    .category-h1 span {
      color: var(--primary-accent);
    }
    .category-intro {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 780px;
      margin-bottom: 1.5rem;
    }
    .stats-ribbon {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: center;
    }
    .stat-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.4rem 1rem;
      font-size: 0.85rem;
      color: var(--text-white);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .stat-pill i {
      color: var(--secondary-accent);
    }

    /* Section 2: Multi-row Filter Box */
    .filter-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.75rem;
      box-shadow: var(--shadow-base);
    }
    .filter-row {
      display: flex;
      align-items: baseline;
      padding: 0.65rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 70px;
      flex-shrink: 0;
      color: var(--text-dim);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 0.85rem;
      padding: 0.25rem 0.8rem;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.06);
    }
    .filter-btn.active {
      background: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 94, 31, 0.4);
    }
    .filter-action-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border-subtle);
      font-size: 0.85rem;
    }

    /* Section 3: Movie Poster Grid */
    .movie-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .movie-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: var(--transition-smooth);
    }
    .movie-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-glow);
      box-shadow: var(--shadow-glow);
    }
    .movie-poster-box {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #080a0e;
    }
    .movie-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .movie-card:hover .movie-poster-box img {
      transform: scale(1.06);
    }
    .movie-tag-quality {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--text-white);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.2rem 0.55rem;
      border-radius: 4px;
      z-index: 2;
    }
    .movie-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 94, 31, 0.9);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.2rem 0.55rem;
      border-radius: 4px;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    .movie-hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.6);
      backdrop-filter: blur(2px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition-smooth);
      z-index: 3;
    }
    .movie-card:hover .movie-hover-overlay {
      opacity: 1;
    }
    .play-btn-circle {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--primary-accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 0 20px rgba(255, 94, 31, 0.7);
      transform: scale(0.8);
      transition: var(--transition-smooth);
    }
    .movie-card:hover .play-btn-circle {
      transform: scale(1);
    }
    .movie-info {
      padding: 1rem 1.15rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .movie-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta-line {
      font-size: 0.8rem;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.6rem;
    }
    .movie-desc-brief {
      font-size: 0.825rem;
      color: var(--text-muted);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: auto;
    }

    /* Section 4: Hot Ranking Top 10 */
    .ranking-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.25rem;
    }
    .ranking-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem 1rem;
      position: relative;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
    }
    .ranking-card:hover {
      border-color: rgba(255, 184, 0, 0.4);
      transform: translateY(-4px);
    }
    .rank-num {
      position: absolute;
      top: 10px;
      left: 12px;
      font-size: 2rem;
      font-weight: 900;
      font-style: italic;
      color: rgba(255, 255, 255, 0.08);
      line-height: 1;
    }
    .ranking-card.rank-top-1 .rank-num { color: rgba(255, 184, 0, 0.3); }
    .ranking-card.rank-top-2 .rank-num { color: rgba(220, 225, 235, 0.25); }
    .ranking-card.rank-top-3 .rank-num { color: rgba(205, 127, 50, 0.25); }
    .rank-content {
      position: relative;
      z-index: 2;
      padding-top: 1.25rem;
    }
    .rank-badge-icon {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .rank-badge-icon.gold { color: #ffb800; }
    .rank-badge-icon.silver { color: #d1d5db; }
    .rank-badge-icon.copper { color: #cd7f32; }
    .rank-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-tag-row {
      font-size: 0.75rem;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
    }

    /* Section 5: In-depth Reviews */
    .review-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .review-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }
    .review-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .review-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .review-card:hover .review-img-wrap img {
      transform: scale(1.05);
    }
    .review-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .review-tag {
      font-size: 0.75rem;
      color: var(--primary-accent);
      background: rgba(255, 94, 31, 0.1);
      border-radius: 4px;
      padding: 0.2rem 0.6rem;
      display: inline-block;
      align-self: flex-start;
      margin-bottom: 0.75rem;
    }
    .review-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.65rem;
      line-height: 1.4;
    }
    .review-excerpt {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    .review-meta {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: var(--text-dim);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.85rem;
    }

    /* Section 6: Category FAQ Accordion */
    .accordion-custom .accordion-item {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm) !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .accordion-custom .accordion-button {
      background: var(--surface-card);
      color: var(--text-white);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1.25rem 1.5rem;
      box-shadow: none;
    }
    .accordion-custom .accordion-button:not(.collapsed) {
      color: var(--primary-accent);
      background: var(--surface-hover);
      border-left: 3px solid var(--primary-accent);
    }
    .accordion-custom .accordion-button::after {
      filter: invert(1);
    }
    .accordion-custom .accordion-body {
      background: var(--surface-hover);
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Section 7: Subscription Bar */
    .sub-bar-box {
      background: radial-gradient(circle at 10% 50%, rgba(255, 94, 31, 0.15) 0%, rgba(18, 22, 31, 0.95) 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 2.75rem 2.5rem;
      box-shadow: var(--shadow-glow);
    }
    .sub-input-group {
      display: flex;
      max-width: 520px;
      margin: 0 auto;
      gap: 8px;
    }
    .sub-input-group input {
      flex: 1;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.75rem 1.25rem;
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition-smooth);
    }
    .sub-input-group input:focus {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--primary-accent);
    }

    /* Footer */
    .site-footer {
      background-color: #07080b;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
      font-size: 0.9rem;
    }
    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem;
    }
    .footer-brand-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--primary-accent);
      color: #fff;
      font-size: 1.2rem;
    }
    .footer-brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-white);
    }
    .footer-desc {
      color: var(--text-dim);
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }
    .footer-badges-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-badge-tag {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-badge-tag i {
      color: var(--primary-accent);
      margin-right: 4px;
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.2rem;
      letter-spacing: 0.3px;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.6rem;
    }
    .footer-links-list a {
      color: var(--text-dim);
      font-size: 0.85rem;
      transition: var(--transition-smooth);
    }
    .footer-links-list a:hover {
      color: var(--primary-accent);
      padding-left: 4px;
    }
    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      color: var(--text-dim);
      font-size: 0.8rem;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .movie-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .ranking-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-search-slot {
        display: none;
      }
      .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .ranking-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .filter-row {
        flex-direction: column;
        gap: 8px;
      }
      .filter-label {
        width: 100%;
      }
      .sub-input-group {
        flex-direction: column;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .category-h1 {
        font-size: 1.75rem;
      }
    }
    @media (max-width: 520px) {
      .movie-grid {
        grid-template-columns: 1fr;
      }
      .ranking-grid {
        grid-template-columns: 1fr;
      }
      .offcanvas-custom {
        width: 100vw !important;
      }
    }

/* roulang page: category2 */
:root {
        --canvas-bg: #0a0c10;
        --canvas-alt: #0e1117;
        --surface-card: #12161f;
        --surface-hover: #1a202c;
        --primary-accent: #ff5e1f;
        --primary-hover: #ff7843;
        --secondary-accent: #ffb800;
        --text-white: #ffffff;
        --text-muted: #9ca3af;
        --text-dim: #64748b;
        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-glow: rgba(255, 94, 31, 0.45);
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-pill: 9999px;
        --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
        --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
        --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
        margin: 0;
        padding: 0;
        background-color: var(--canvas-bg);
        color: var(--text-muted);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.65;
        overflow-x: hidden;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-smooth);
    }
    a:hover {
        color: var(--primary-accent);
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .container {
        max-width: 1240px;
    }
    .btn-primary {
        background: var(--primary-accent);
        border-color: var(--primary-accent);
        color: #fff;
        font-weight: 600;
        border-radius: var(--radius-sm);
        padding: 0.75rem 1.6rem;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
        transform: translateY(-2px);
        color: #fff;
    }
    .btn-outline-primary {
        color: var(--primary-accent);
        border-color: var(--primary-accent);
        border-radius: var(--radius-sm);
        font-weight: 600;
        padding: 0.65rem 1.4rem;
        transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
        background: var(--primary-accent);
        color: #fff;
        border-color: var(--primary-accent);
    }
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: rgba(10, 12, 16, 0.88);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1rem 0;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--text-white);
        letter-spacing: 0.5px;
    }
    .brand-logo i {
        color: var(--primary-accent);
        font-size: 1.65rem;
    }
    .brand-logo span {
        background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
        position: relative;
        width: 320px;
    }
    .nav-search-slot input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-pill);
        padding: 0.45rem 1rem 0.45rem 2.4rem;
        color: var(--text-white);
        font-size: 0.875rem;
        width: 100%;
        outline: none;
        transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
        background: rgba(255, 255, 255, 0.09);
        border-color: var(--primary-accent);
        box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-dim);
        font-size: 0.85rem;
    }
    .drawer-trigger-btn {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-sm);
        color: var(--text-white);
        padding: 0.5rem 0.85rem;
        font-size: 1.15rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
        background: var(--surface-hover);
        border-color: var(--primary-accent);
        color: var(--primary-accent);
    }
    .offcanvas-custom {
        background: #0d1117;
        color: var(--text-muted);
        border-left: 1px solid var(--border-subtle);
        width: 400px !important;
    }
    .offcanvas-custom .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
        margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem 1.25rem;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-white);
        font-weight: 500;
        border: 1px solid transparent;
        transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
        background: rgba(255, 94, 31, 0.12);
        border-color: var(--primary-accent);
        color: var(--primary-accent);
        padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
        font-size: 0.9rem;
        color: var(--text-dim);
        transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
        color: var(--primary-accent);
        transform: translateX(3px);
    }
    .category-hero-skew {
        position: relative;
        background: linear-gradient(135deg, #121722 0%, #0a0c10 100%);
        padding: 4.5rem 0 3.5rem;
        border-bottom: 1px solid var(--border-subtle);
        overflow: hidden;
    }
    .category-hero-skew::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -10%;
        width: 60%;
        height: 140%;
        background: linear-gradient(45deg, rgba(255, 94, 31, 0.15), rgba(255, 184, 0, 0.04));
        transform: skewX(-20deg);
        pointer-events: none;
        z-index: 1;
    }
    .category-hero-content {
        position: relative;
        z-index: 2;
    }
    .breadcrumb-custom {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--text-dim);
        margin-bottom: 1.2rem;
    }
    .breadcrumb-custom a:hover {
        color: var(--primary-accent);
    }
    .category-hero-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-white);
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
    }
    .category-hero-summary {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 820px;
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }
    .hero-stat-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    .stat-badge-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-pill);
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        color: var(--text-white);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .stat-badge-item span {
        color: var(--primary-accent);
        font-weight: 700;
    }
    .filter-matrix-wrap {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 1.8rem 2rem;
        margin-top: -1.5rem;
        position: relative;
        z-index: 10;
        box-shadow: var(--shadow-base);
    }
    .filter-group-row {
        display: flex;
        align-items: baseline;
        padding: 0.65rem 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-group-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .filter-label {
        width: 80px;
        flex-shrink: 0;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-dim);
    }
    .filter-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        flex-grow: 1;
    }
    .filter-tag {
        font-size: 0.85rem;
        color: var(--text-muted);
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: var(--transition-smooth);
        background: transparent;
        border: 1px solid transparent;
    }
    .filter-tag:hover {
        color: var(--text-white);
        background: rgba(255, 255, 255, 0.05);
    }
    .filter-tag.active {
        background: var(--primary-accent);
        color: #ffffff;
        font-weight: 600;
    }
    .filter-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        margin-top: 0.8rem;
        border-top: 1px solid var(--border-subtle);
    }
    .filter-reset-btn {
        background: transparent;
        border: 1px solid var(--border-subtle);
        color: var(--text-dim);
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
        border-radius: var(--radius-sm);
        transition: var(--transition-smooth);
    }
    .filter-reset-btn:hover {
        color: var(--text-white);
        border-color: rgba(255, 255, 255, 0.3);
    }
    .section-spacing {
        padding: 4.5rem 0;
    }
    .section-header-block {
        margin-bottom: 2.5rem;
    }
    .section-title-sub {
        font-size: 0.85rem;
        color: var(--primary-accent);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 0.5rem;
    }
    .section-title-main {
        font-size: 1.85rem;
        font-weight: 700;
        color: var(--text-white);
        letter-spacing: -0.5px;
    }
    .drama-card {
        background: var(--surface-card);
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid var(--border-subtle);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .drama-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-glow);
        box-shadow: var(--shadow-glow);
    }
    .drama-cover-box {
        position: relative;
        aspect-ratio: 2 / 3;
        overflow: hidden;
        background: #171c26;
    }
    .drama-cover-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .drama-card:hover .drama-cover-box img {
        transform: scale(1.05);
    }
    .drama-badge-score {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(18, 22, 31, 0.85);
        backdrop-filter: blur(6px);
        color: var(--secondary-accent);
        font-weight: 700;
        font-size: 0.8rem;
        padding: 0.2rem 0.55rem;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 184, 0, 0.3);
        display: flex;
        align-items: center;
        gap: 4px;
        z-index: 2;
    }
    .drama-badge-status {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(255, 94, 31, 0.88);
        backdrop-filter: blur(6px);
        color: #fff;
        font-size: 0.725rem;
        font-weight: 600;
        padding: 0.2rem 0.5rem;
        border-radius: var(--radius-sm);
        z-index: 2;
    }
    .drama-play-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 12, 16, 0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition-smooth);
        z-index: 3;
    }
    .drama-card:hover .drama-play-overlay {
        opacity: 1;
    }
    .play-btn-circle {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--primary-accent);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        box-shadow: 0 0 20px rgba(255, 94, 31, 0.8);
        transform: scale(0.85);
        transition: transform 0.3s ease;
    }
    .drama-card:hover .play-btn-circle {
        transform: scale(1);
    }
    .drama-info-body {
        padding: 1rem 1.15rem 1.25rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .drama-title {
        color: var(--text-white);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .drama-meta {
        font-size: 0.8rem;
        color: var(--text-dim);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 0.6rem;
    }
    .drama-synopsis {
        font-size: 0.825rem;
        color: var(--text-muted);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .pagination-toolbar {
        margin-top: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-subtle);
    }
    .pager-num-list {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pager-num-list button {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        color: var(--text-muted);
        font-size: 0.875rem;
        min-width: 38px;
        height: 38px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        cursor: pointer;
    }
    .pager-num-list button:hover {
        color: var(--text-white);
        border-color: rgba(255, 255, 255, 0.3);
    }
    .pager-num-list button.active {
        background: var(--primary-accent);
        border-color: var(--primary-accent);
        color: #fff;
        font-weight: 700;
    }
    .top-rank-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    .top-rank-card {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 1.15rem;
        display: flex;
        gap: 1rem;
        align-items: center;
        position: relative;
        transition: var(--transition-smooth);
    }
    .top-rank-card:hover {
        background: var(--surface-hover);
        border-color: rgba(255, 94, 31, 0.35);
        transform: translateY(-3px);
    }
    .rank-num-box {
        font-size: 1.75rem;
        font-weight: 900;
        font-style: italic;
        line-height: 1;
        width: 32px;
        text-align: center;
        flex-shrink: 0;
    }
    .rank-num-1 {
        color: #ff4d4f;
        text-shadow: 0 0 12px rgba(255, 77, 79, 0.6);
    }
    .rank-num-2 {
        color: #ff9900;
        text-shadow: 0 0 12px rgba(255, 153, 0, 0.6);
    }
    .rank-num-3 {
        color: var(--secondary-accent);
        text-shadow: 0 0 12px rgba(255, 184, 0, 0.6);
    }
    .rank-num-other {
        color: var(--text-dim);
    }
    .rank-info-content {
        flex-grow: 1;
        overflow: hidden;
    }
    .rank-drama-name {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rank-drama-heat {
        font-size: 0.775rem;
        color: var(--text-dim);
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .rank-drama-heat span {
        color: var(--primary-accent);
        font-weight: 600;
    }
    .article-digest-card {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: var(--transition-smooth);
    }
    .article-digest-card:hover {
        border-color: var(--border-glow);
        transform: translateY(-4px);
    }
    .article-cover-wrap {
        height: 210px;
        position: relative;
        overflow: hidden;
    }
    .article-cover-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .article-digest-card:hover .article-cover-wrap img {
        transform: scale(1.05);
    }
    .article-content-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .article-meta-tags {
        display: flex;
        gap: 8px;
        margin-bottom: 0.75rem;
    }
    .article-tag {
        font-size: 0.75rem;
        background: rgba(255, 94, 31, 0.12);
        color: var(--primary-accent);
        padding: 0.2rem 0.6rem;
        border-radius: var(--radius-pill);
        font-weight: 600;
    }
    .article-headline {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    .article-summary-text {
        font-size: 0.875rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1.25rem;
        flex-grow: 1;
    }
    .article-link-action {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-accent);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .article-digest-card:hover .article-link-action {
        color: var(--primary-hover);
        gap: 10px;
    }
    .faq-accordion-custom .accordion-item {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md) !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .faq-accordion-custom .accordion-button {
        background: var(--surface-card);
        color: var(--text-white);
        font-weight: 600;
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
        box-shadow: none;
        border: none;
    }
    .faq-accordion-custom .accordion-button:not(.collapsed) {
        background: #161c28;
        color: var(--primary-accent);
        box-shadow: inset 4px 0 0 var(--primary-accent);
    }
    .faq-accordion-custom .accordion-button::after {
        filter: invert(1) grayscale(100%);
    }
    .faq-accordion-custom .accordion-button:not(.collapsed)::after {
        filter: invert(56%) sepia(87%) saturate(2280%) hue-rotate(345deg) brightness(101%) contrast(101%);
    }
    .faq-accordion-custom .accordion-body {
        background: #161c28;
        color: var(--text-muted);
        font-size: 0.925rem;
        line-height: 1.7;
        padding: 0 1.5rem 1.5rem;
    }
    .subscribe-touch-bar {
        background: linear-gradient(135deg, #18202d 0%, #10151f 100%);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 3rem 2.5rem;
        position: relative;
        overflow: hidden;
    }
    .subscribe-touch-bar::after {
        content: "";
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 94, 31, 0.25) 0%, rgba(255, 94, 31, 0) 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .subscribe-input-group {
        display: flex;
        gap: 10px;
        max-width: 520px;
        margin: 0 auto;
    }
    .subscribe-input-group input {
        background: rgba(10, 12, 16, 0.8);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-sm);
        padding: 0.75rem 1.25rem;
        color: #fff;
        font-size: 0.95rem;
        flex-grow: 1;
        outline: none;
    }
    .subscribe-input-group input:focus {
        border-color: var(--primary-accent);
        box-shadow: 0 0 12px rgba(255, 94, 31, 0.3);
    }
    .site-footer {
        background: #080a0d;
        border-top: 1px solid var(--border-subtle);
        padding: 4.5rem 0 2rem;
        font-size: 0.9rem;
    }
    .footer-brand-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 1.2rem;
    }
    .footer-brand-logo {
        color: var(--primary-accent);
        font-size: 1.5rem;
    }
    .footer-desc {
        color: var(--text-dim);
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    .footer-badges-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .footer-badge-tag {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-subtle);
        padding: 0.3rem 0.7rem;
        border-radius: var(--radius-pill);
        font-size: 0.75rem;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .footer-badge-tag i {
        color: var(--primary-accent);
    }
    .footer-nav-title {
        color: var(--text-white);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
    }
    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links-list li {
        margin-bottom: 0.65rem;
    }
    .footer-links-list a {
        color: var(--text-muted);
        font-size: 0.875rem;
        display: inline-flex;
        align-items: center;
    }
    .footer-links-list a:hover {
        color: var(--primary-accent);
        transform: translateX(4px);
    }
    .footer-bottom-bar {
        margin-top: 3.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-dim);
        font-size: 0.8rem;
    }
    @media (max-width: 991px) {
        .category-hero-skew {
            padding: 3.5rem 0 2.5rem;
        }
        .category-hero-title {
            font-size: 2rem;
        }
        .filter-matrix-wrap {
            padding: 1.25rem 1rem;
        }
        .section-spacing {
            padding: 3.5rem 0;
        }
    }
    @media (max-width: 576px) {
        .category-hero-title {
            font-size: 1.65rem;
        }
        .filter-group-row {
            flex-direction: column;
            gap: 6px;
        }
        .filter-label {
            width: auto;
        }
        .subscribe-touch-bar {
            padding: 2rem 1.25rem;
        }
        .subscribe-input-group {
            flex-direction: column;
        }
        .subscribe-input-group .btn-primary {
            width: 100%;
        }
    }

/* roulang page: category3 */
:root {
      --canvas-bg: #0a0c10;
      --canvas-alt: #0e1117;
      --surface-card: #12161f;
      --surface-hover: #1a202c;
      --primary-accent: #ff5e1f;
      --primary-hover: #ff7843;
      --secondary-accent: #ffb800;
      --text-white: #ffffff;
      --text-muted: #9ca3af;
      --text-dim: #64748b;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 94, 31, 0.45);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-pill: 9999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      margin: 0;
      padding: 0;
      background-color: var(--canvas-bg);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-accent);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: 1240px;
    }
    .btn-primary {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.6rem;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
      transform: translateY(-2px);
      color: #fff;
    }
    .btn-outline-primary {
      color: var(--primary-accent);
      border-color: var(--primary-accent);
      border-radius: var(--radius-sm);
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
      background: var(--primary-accent);
      color: #fff;
      border-color: var(--primary-accent);
    }
    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-accent);
      font-size: 1.65rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
      position: relative;
      width: 320px;
    }
    .nav-search-slot input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.45rem 1rem 0.45rem 2.4rem;
      color: var(--text-white);
      font-size: 0.875rem;
      width: 100%;
      outline: none;
      transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .drawer-trigger-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.5rem 0.85rem;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }
    /* Offcanvas */
    .offcanvas-custom {
      background: #0d1117;
      color: var(--text-muted);
      border-left: 1px solid var(--border-subtle);
      width: 400px !important;
    }
    .offcanvas-custom .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-white);
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
      background: rgba(255, 94, 31, 0.12);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
      padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
      font-size: 0.9rem;
      color: var(--text-dim);
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
      color: var(--primary-accent);
      transform: translateX(3px);
    }
    /* Section Shared */
    .section-wrap {
      padding: 4.5rem 0;
      position: relative;
    }
    .section-alt {
      background-color: var(--canvas-alt);
    }
    .section-head {
      margin-bottom: 2.5rem;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.35rem 0.95rem;
      background: rgba(255, 94, 31, 0.12);
      border: 1px solid rgba(255, 94, 31, 0.3);
      border-radius: var(--radius-pill);
      color: var(--primary-accent);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }
    .section-title {
      font-size: 2rem;
      color: var(--text-white);
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 0.5rem;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0;
    }
    /* Plate 1: Compact Category Hero Banner */
    .cat-compact-header {
      background: radial-gradient(circle at 80% 30%, rgba(255, 94, 31, 0.12) 0%, transparent 60%),
                  linear-gradient(180deg, #10141d 0%, var(--canvas-bg) 100%);
      border-bottom: 1px solid var(--border-subtle);
      padding: 3rem 0 2.5rem 0;
    }
    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      color: var(--text-dim);
      margin-bottom: 1.25rem;
    }
    .cat-breadcrumb a {
      color: var(--text-muted);
    }
    .cat-breadcrumb a:hover {
      color: var(--primary-accent);
    }
    .cat-stat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-pill);
      color: var(--secondary-accent);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .cat-tag-pill {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-right: 6px;
      margin-bottom: 6px;
      transition: var(--transition-smooth);
    }
    .cat-tag-pill:hover, .cat-tag-pill.active {
      background: rgba(255, 94, 31, 0.15);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }
    /* Plate 2: Filter Controls */
    .filter-ctrl-panel {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      box-shadow: var(--shadow-base);
    }
    .filter-group-row {
      display: flex;
      align-items: center;
      padding: 0.65rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-group-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 75px;
      font-size: 0.875rem;
      color: var(--text-dim);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-items-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 0.875rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-btn.active {
      background: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(255, 94, 31, 0.35);
    }
    .filter-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border-subtle);
    }
    /* Plate 3: Poster Cards Grid */
    .movie-poster-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: var(--transition-smooth);
    }
    .movie-poster-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-glow);
      box-shadow: var(--shadow-glow);
    }
    .poster-img-box {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #171b26;
    }
    .poster-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-img-box img {
      transform: scale(1.06);
    }
    .poster-badge-quality {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-sm);
      text-transform: uppercase;
      z-index: 2;
    }
    .poster-badge-rating {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 184, 0, 0.95);
      color: #000;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-sm);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .poster-hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition-smooth);
      z-index: 3;
    }
    .movie-poster-card:hover .poster-hover-overlay {
      opacity: 1;
    }
    .play-circle-icon {
      width: 52px;
      height: 52px;
      background: var(--primary-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.35rem;
      box-shadow: 0 0 20px rgba(255, 94, 31, 0.6);
      transform: scale(0.85);
      transition: var(--transition-smooth);
    }
    .movie-poster-card:hover .play-circle-icon {
      transform: scale(1);
    }
    .poster-info-wrap {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta-text {
      font-size: 0.8rem;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* Plate 4: TOP Leaderboard */
    .top-rank-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
      transition: var(--transition-smooth);
      height: 100%;
    }
    .top-rank-card:hover {
      background: var(--surface-hover);
      border-color: var(--border-glow);
      transform: translateY(-3px);
    }
    .rank-number-box {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1;
      width: 38px;
      text-align: center;
      flex-shrink: 0;
      color: var(--text-dim);
    }
    .rank-gold { color: #ffd700; text-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
    .rank-silver { color: #e0e0e0; text-shadow: 0 0 12px rgba(224, 224, 224, 0.4); }
    .rank-bronze { color: #cd7f32; text-shadow: 0 0 12px rgba(205, 127, 50, 0.4); }
    .top-rank-thumb {
      width: 55px;
      height: 75px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
      background: #171b26;
    }
    .top-rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .top-rank-content {
      overflow: hidden;
      flex-grow: 1;
    }
    .top-rank-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .top-rank-detail {
      font-size: 0.78rem;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    /* Plate 5: Editorial Insights */
    .editorial-art-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .editorial-art-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-glow);
    }
    .editorial-cover-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .editorial-cover-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .editorial-art-card:hover .editorial-cover-wrap img {
      transform: scale(1.05);
    }
    .editorial-category-tag {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(10, 12, 16, 0.85);
      backdrop-filter: blur(6px);
      border: 1px solid var(--border-subtle);
      color: var(--primary-accent);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.2rem 0.65rem;
      border-radius: var(--radius-pill);
    }
    .editorial-body {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .editorial-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-white);
      line-height: 1.4;
      margin-bottom: 0.75rem;
    }
    .editorial-summary {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    .editorial-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.85rem;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    /* Plate 6: Accordion FAQ */
    .faq-accordion-custom .accordion-item {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md) !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-accordion-custom .accordion-button {
      background: var(--surface-card);
      color: var(--text-white);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1.2rem 1.5rem;
      box-shadow: none !important;
      border: none;
    }
    .faq-accordion-custom .accordion-button:not(.collapsed) {
      background: rgba(255, 94, 31, 0.08);
      color: var(--primary-accent);
      border-left: 4px solid var(--primary-accent);
    }
    .faq-accordion-custom .accordion-button::after {
      filter: invert(1) brightness(1.5);
      transition: transform 0.3s ease;
    }
    .faq-accordion-custom .accordion-button:not(.collapsed)::after {
      filter: invert(47%) sepia(93%) saturate(1915%) hue-rotate(345deg) brightness(101%) contrast(101%);
    }
    .faq-accordion-custom .accordion-body {
      background: var(--surface-card);
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      padding: 0 1.5rem 1.4rem 1.5rem;
    }
    /* Plate 7: Subscription Strip */
    .subscribe-alert-card {
      background: radial-gradient(circle at 90% 50%, rgba(255, 94, 31, 0.15) 0%, transparent 70%),
                  linear-gradient(135deg, #161b24 0%, #0d1117 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 2.5rem;
      box-shadow: var(--shadow-glow);
    }
    .sub-input-group {
      display: flex;
      gap: 10px;
      max-width: 520px;
      margin-left: auto;
    }
    .sub-input-group input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.25rem;
      color: var(--text-white);
      font-size: 0.9rem;
      flex-grow: 1;
      outline: none;
      transition: var(--transition-smooth);
    }
    .sub-input-group input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 12px rgba(255, 94, 31, 0.3);
    }
    /* Footer */
    .site-footer {
      background-color: #07090c;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem 0;
      color: var(--text-dim);
    }
    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.2rem;
    }
    .footer-brand-logo {
      width: 36px;
      height: 36px;
      background: var(--primary-accent);
      border-radius: 8px;      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
    }
    .footer-brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: var(--text-muted);
    }
    .footer-badges-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-badge-tag {
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.3rem 0.75rem;
      color: var(--text-muted);
    }
    .footer-badge-tag i {
      color: var(--primary-accent);
      margin-right: 4px;
    }
    .footer-nav-title {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
    }
    .footer-links-list a {
      color: var(--text-muted);
      font-size: 0.88rem;
      display: inline-flex;
      align-items: center;
    }
    .footer-links-list a:hover {
      color: var(--primary-accent);
      padding-left: 3px;
    }
    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
    }
    @media (max-width: 991px) {
      .sub-input-group {
        max-width: 100%;
        margin-top: 1.25rem;
      }
      .nav-search-slot {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .section-wrap {
        padding: 3rem 0;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .top-rank-card {
        padding: 0.75rem;
      }
      .subscribe-alert-card {
        padding: 1.5rem;
      }
      .sub-input-group {
        flex-direction: column;
      }
      .sub-input-group button {
        width: 100%;
      }
    }

/* roulang page: category4 */
:root {
      --canvas-bg: #0a0c10;
      --canvas-alt: #0e1117;
      --surface-card: #12161f;
      --surface-hover: #1a202c;
      --primary-accent: #ff5e1f;
      --primary-hover: #ff7843;
      --secondary-accent: #ffb800;
      --text-white: #ffffff;
      --text-muted: #9ca3af;
      --text-dim: #64748b;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 94, 31, 0.45);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-pill: 9999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      margin: 0;
      padding: 0;
      background-color: var(--canvas-bg);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-accent);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: 1240px;
    }
    .btn-primary {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.6rem;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
      transform: translateY(-2px);
      color: #fff;
    }
    .btn-outline-primary {
      color: var(--primary-accent);
      border-color: var(--primary-accent);
      border-radius: var(--radius-sm);
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
      background: var(--primary-accent);
      color: #fff;
      border-color: var(--primary-accent);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-accent);
      font-size: 1.65rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
      position: relative;
      width: 320px;
    }
    .nav-search-slot input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.45rem 1rem 0.45rem 2.4rem;
      color: var(--text-white);
      font-size: 0.875rem;
      width: 100%;
      outline: none;
      transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .drawer-trigger-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.5rem 0.85rem;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }
    .offcanvas-custom {
      background: #0d1117;
      color: var(--text-muted);
      border-left: 1px solid var(--border-subtle);
      width: 380px !important;
    }
    .offcanvas-custom .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-white);
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
      background: rgba(255, 94, 31, 0.12);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
      padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
      font-size: 0.9rem;
      color: var(--text-dim);
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
      color: var(--primary-accent);
      transform: translateX(3px);
    }
    .section-wrap {
      padding: 5rem 0;
      position: relative;
    }
    .category-header-wrap {
      padding: 3.5rem 0 2.5rem;
      background: linear-gradient(180deg, rgba(255, 94, 31, 0.08) 0%, rgba(10, 12, 16, 0) 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }
    .breadcrumb-nav a:hover {
      color: var(--primary-accent);
    }
    .category-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: -0.5px;
      margin-bottom: 0.75rem;
    }
    .category-stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.3rem 0.85rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      color: var(--text-white);
    }
    .category-stat-pill strong {
      color: var(--primary-accent);
    }
    .quick-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 1.25rem;
    }
    .quick-tag-link {
      font-size: 0.825rem;
      padding: 0.25rem 0.75rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      cursor: pointer;
    }
    .quick-tag-link:hover, .quick-tag-link.active {
      background: rgba(255, 94, 31, 0.15);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }
    .filter-ctrl-panel {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.75rem;
      box-shadow: var(--shadow-base);
    }
    .filter-group-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .filter-group-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .filter-group-label {
      width: 70px;
      font-size: 0.875rem;
      color: var(--text-dim);
      font-weight: 600;
      padding-top: 0.25rem;
      flex-shrink: 0;
    }
    .filter-options-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      flex-grow: 1;
    }
    .filter-opt-btn {
      font-size: 0.85rem;
      padding: 0.25rem 0.8rem;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      background: transparent;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .filter-opt-btn:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-opt-btn.active {
      background: var(--primary-accent);
      color: #fff;
      font-weight: 600;
    }
    .movie-grid-card {
      background: var(--surface-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: var(--transition-smooth);
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .movie-grid-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-glow);
      box-shadow: var(--shadow-glow);
    }
    .movie-poster-box {
      aspect-ratio: 2 / 3;
      position: relative;
      overflow: hidden;
      background: #181d27;
    }
    .movie-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .movie-grid-card:hover .movie-poster-box img {
      transform: scale(1.06);
    }
    .movie-score-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(10, 12, 16, 0.82);
      backdrop-filter: blur(4px);
      color: var(--secondary-accent);
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.2rem 0.55rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 184, 0, 0.4);
      z-index: 2;
    }
    .movie-status-badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(255, 94, 31, 0.9);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-sm);
      z-index: 2;
    }
    .movie-hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.6);
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
      z-index: 3;
    }
    .movie-grid-card:hover .movie-hover-overlay {
      opacity: 1;
    }
    .play-circle-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 0 20px rgba(255, 94, 31, 0.6);
      transform: scale(0.85);
      transition: var(--transition-smooth);
    }
    .movie-grid-card:hover .play-circle-btn {
      transform: scale(1);
    }
    .movie-info-body {
      padding: 1rem 1rem 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .movie-title-text {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-sub-info {
      font-size: 0.8rem;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .rank-card-compact {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: var(--transition-smooth);
      position: relative;
    }
    .rank-card-compact:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      transform: translateX(4px);
    }
    .rank-num-badge {
      font-size: 1.5rem;
      font-weight: 900;
      width: 36px;
      text-align: center;
      flex-shrink: 0;
      color: var(--text-dim);
    }
    .rank-top-1 { color: #ffb800 !important; }
    .rank-top-2 { color: #e2e8f0 !important; }
    .rank-top-3 { color: #d97706 !important; }
    .rank-thumb-img {
      width: 48px;
      height: 64px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-meta-info {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-title-text {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-score-text {
      font-size: 0.8rem;
      color: var(--secondary-accent);
      font-weight: 600;
    }
    .article-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .article-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }
    .article-thumb-col {
      width: 40%;
      position: relative;
    }
    .article-thumb-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-body-col {
      width: 60%;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .article-tag {
      font-size: 0.75rem;
      color: var(--primary-accent);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .article-h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.6rem;
      line-height: 1.4;
    }
    .article-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0.85rem;
    }
    .faq-card-item {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-header-btn {
      width: 100%;
      padding: 1.25rem 1.5rem;
      background: transparent;
      border: none;
      color: var(--text-white);
      font-size: 1.05rem;
      font-weight: 600;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-header-btn:not(.collapsed) {
      color: var(--primary-accent);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .faq-header-btn i {
      transition: transform 0.3s ease;
      font-size: 0.9rem;
    }
    .faq-header-btn:not(.collapsed) i {
      transform: rotate(180deg);
      color: var(--primary-accent);
    }
    .faq-body-content {
      padding: 1.25rem 1.5rem;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .subscribe-banner-box {
      background: linear-gradient(135deg, #181f2b 0%, #10151f 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 3rem 2rem;
      box-shadow: var(--shadow-glow);
    }
    .site-footer {
      background: #080a0d;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
      color: var(--text-muted);
    }
    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem;
    }
    .footer-brand-logo {
      width: 36px;
      height: 36px;
      background: var(--primary-accent);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
    }
    .footer-brand-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-white);
    }
    .footer-desc {
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .footer-badges-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.5rem;
    }
    .footer-badge-tag {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      border: 1px solid var(--border-subtle);
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
    }
    .footer-links-list a {
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    .footer-links-list a:hover {
      color: var(--primary-accent);
      padding-left: 4px;
    }
    .footer-bottom-bar {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.825rem;
      color: var(--text-dim);
    }
    @media (max-width: 991px) {
      .article-card {
        flex-direction: column;
      }
      .article-thumb-col, .article-body-col {
        width: 100%;
      }
      .article-thumb-col {
        height: 180px;
      }
    }
    @media (max-width: 767px) {
      .nav-search-slot {
        display: none;
      }
      .category-title {
        font-size: 1.75rem;
      }
      .subscribe-banner-box {
        padding: 2rem 1.25rem;
      }
    }

/* roulang page: category5 */
:root {
      --canvas-bg: #0a0c10;
      --canvas-alt: #0e1117;
      --surface-card: #12161f;
      --surface-hover: #1a202c;
      --primary-accent: #ff5e1f;
      --primary-hover: #ff7843;
      --secondary-accent: #ffb800;
      --text-white: #ffffff;
      --text-muted: #9ca3af;
      --text-dim: #64748b;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 94, 31, 0.45);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-pill: 9999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 12px 35px -5px rgba(255, 94, 31, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      margin: 0;
      padding: 0;
      background-color: var(--canvas-bg);
      color: var(--text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--primary-accent);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: 1240px;
    }
    .btn-primary {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.6rem;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 18px rgba(255, 94, 31, 0.35);
    }
    .btn-primary:hover, .btn-primary:focus {
      background: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: 0 6px 24px rgba(255, 94, 31, 0.55);
      transform: translateY(-2px);
      color: #fff;
    }
    .btn-outline-primary {
      color: var(--primary-accent);
      border-color: var(--primary-accent);
      border-radius: var(--radius-sm);
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .btn-outline-primary:hover {
      background: var(--primary-accent);
      color: #fff;
      border-color: var(--primary-accent);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-accent);
      font-size: 1.65rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-search-slot {
      position: relative;
      width: 320px;
    }
    .nav-search-slot input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.45rem 1rem 0.45rem 2.4rem;
      color: var(--text-white);
      font-size: 0.875rem;
      width: 100%;
      outline: none;
      transition: var(--transition-smooth);
    }
    .nav-search-slot input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--primary-accent);
      box-shadow: 0 0 10px rgba(255, 94, 31, 0.25);
    }
    .nav-search-slot i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.85rem;
    }
    .drawer-trigger-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--text-white);
      padding: 0.5rem 0.85rem;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .drawer-trigger-btn:hover {
      background: var(--surface-hover);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }
    .offcanvas-custom {
      background: #0d1117;
      color: var(--text-muted);
      border-left: 1px solid var(--border-subtle);
      width: 400px !important;
    }
    .offcanvas-custom .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }
    .drawer-nav-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .drawer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .drawer-nav-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-white);
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a.active, .drawer-nav-list a:hover {
      background: rgba(255, 94, 31, 0.12);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
      padding-left: 1.5rem;
    }
    .drawer-nav-list a i.fa-angle-right {
      font-size: 0.9rem;
      color: var(--text-dim);
      transition: var(--transition-smooth);
    }
    .drawer-nav-list a:hover i.fa-angle-right {
      color: var(--primary-accent);
      transform: translateX(3px);
    }

    /* Category Specific Styling */
    .cat-header-section {
      background: linear-gradient(180deg, rgba(14, 17, 23, 0.95) 0%, rgba(10, 12, 16, 1) 100%), url('/assets/images/f5efdefdc89b2908.webp') center/cover no-repeat;
      padding: 3.5rem 0 2.5rem;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }
    .cat-breadcrumb a {
      color: var(--text-muted);
    }
    .cat-breadcrumb a:hover {
      color: var(--primary-accent);
    }
    .cat-title-wrap h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 0.8rem;
      letter-spacing: -0.5px;
    }
    .cat-stats-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      color: var(--text-dim);
      font-size: 0.92rem;
      margin-bottom: 1.25rem;
    }
    .cat-stats-bar strong {
      color: var(--primary-accent);
    }
    .cat-quick-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .cat-tag-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      padding: 0.25rem 0.85rem;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .cat-tag-pill:hover, .cat-tag-pill.active {
      background: rgba(255, 94, 31, 0.15);
      border-color: var(--primary-accent);
      color: var(--primary-accent);
    }

    /* Filter Matrix */
    .cat-filter-section {
      padding: 2.2rem 0;
      background: var(--canvas-alt);
      border-bottom: 1px solid var(--border-subtle);
    }
    .filter-panel {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.75rem;
      box-shadow: var(--shadow-base);
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .filter-label {
      width: 76px;
      flex-shrink: 0;
      color: var(--text-dim);
      font-size: 0.875rem;
      font-weight: 600;
      padding-top: 0.25rem;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      flex-grow: 1;
    }
    .filter-opt {
      color: var(--text-muted);
      background: transparent;
      border: none;
      font-size: 0.875rem;
      padding: 0.28rem 0.75rem;
      border-radius: 4px;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-opt:hover {
      color: var(--text-white);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-opt.active {
      background: var(--primary-accent);
      color: #fff;
      font-weight: 600;
    }
    .filter-action-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border-subtle);
    }

    /* Movie Grid Cards */
    .cat-grid-section {
      padding: 4.5rem 0;
      background: var(--canvas-bg);
    }
    .movie-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .movie-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-glow);
      box-shadow: var(--shadow-glow);
    }
    .movie-poster-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #000;
    }
    .movie-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-card:hover .movie-poster-wrap img {
      transform: scale(1.05);
    }
    .movie-badge-score {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 184, 0, 0.4);
      color: var(--secondary-accent);
      font-weight: 700;
      font-size: 0.78rem;
      padding: 0.15rem 0.55rem;
      border-radius: var(--radius-pill);
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .movie-badge-spec {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 94, 31, 0.85);
      color: #fff;
      font-weight: 700;
      font-size: 0.72rem;
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }
    .movie-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition-smooth);
    }
    .movie-card:hover .movie-play-overlay {
      opacity: 1;
    }
    .play-icon-glow {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--primary-accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 0 20px rgba(255, 94, 31, 0.6);
      transform: scale(0.9);
      transition: var(--transition-smooth);
    }
    .movie-card:hover .play-icon-glow {
      transform: scale(1);
    }
    .movie-info {
      padding: 1rem 1.15rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .movie-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta-sub {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text-dim);
      font-size: 0.8rem;
    }
    .custom-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 3.5rem;
    }
    .custom-pagination .page-btn {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      min-width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.875rem;
      transition: var(--transition-smooth);
    }
    .custom-pagination .page-btn:hover, .custom-pagination .page-btn.active {
      background: var(--primary-accent);
      border-color: var(--primary-accent);
      color: #fff;
    }

    /* Section 4: Top Rank */
    .cat-rank-section {
      padding: 4.5rem 0;
      background: var(--canvas-alt);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .rank-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    .rank-card:hover {
      background: var(--surface-hover);
      border-color: rgba(255, 94, 31, 0.35);
      transform: translateY(-3px);
    }
    .rank-number {
      font-size: 2.2rem;
      font-weight: 900;
      font-style: italic;
      line-height: 1;
      width: 40px;
      flex-shrink: 0;
      text-align: center;
      color: var(--text-dim);
    }
    .rank-number.top-1 { color: #ffb800; text-shadow: 0 0 15px rgba(255, 184, 0, 0.4); }
    .rank-number.top-2 { color: #e2e8f0; text-shadow: 0 0 15px rgba(226, 232, 240, 0.3); }
    .rank-number.top-3 { color: #d97706; text-shadow: 0 0 15px rgba(217, 119, 6, 0.3); }
    .rank-thumb {
      width: 60px;
      height: 85px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-info {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.3rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-score {
      color: var(--secondary-accent);
      font-size: 0.85rem;
      font-weight: 700;
    }

    /* Section 5: Deep Reading */
    .cat-insights-section {
      padding: 5rem 0;
      background: var(--canvas-bg);
    }
    .insight-card {
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .insight-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }
    .insight-img-wrap {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .insight-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .insight-card:hover .insight-img-wrap img {
      transform: scale(1.05);
    }
    .insight-body {
      padding: 1.75rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .insight-tag {
      color: var(--primary-accent);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .insight-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }
    .insight-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 1.25rem;
      flex-grow: 1;
    }

    /* Section 6: FAQ */
    .cat-faq-section {
      padding: 5rem 0;
      background: var(--canvas-alt);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .accordion-item {
      background-color: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm) !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .accordion-button {
      background-color: var(--surface-card);
      color: var(--text-white);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1.2rem 1.5rem;
      box-shadow: none !important;
      border: none;
    }
    .accordion-button:not(.collapsed) {
      color: var(--primary-accent);
      background-color: var(--surface-hover);
      border-left: 3px solid var(--primary-accent);
    }
    .accordion-button::after {
      filter: invert(1);
      transition: transform 0.3s ease;
    }
    .accordion-button:not(.collapsed)::after {
      filter: invert(48%) sepia(89%) saturate(1750%) hue-rotate(345deg) brightness(101%) contrast(101%);
    }
    .accordion-body {
      background-color: var(--surface-card);
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border-subtle);
    }

    /* Section 7: Subscription Strip */
    .cat-subscribe-section {
      padding: 4.5rem 0;
      background: radial-gradient(circle at center, rgba(255, 94, 31, 0.12) 0%, rgba(10, 12, 16, 0.95) 75%), var(--canvas-bg);
      text-align: center;
    }
    .subscribe-box {
      max-width: 680px;
      margin: 0 auto;
    }
    .sub-form-wrap {
      display: flex;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 0.35rem 0.4rem 0.35rem 1.4rem;
      transition: var(--transition-smooth);
    }
    .sub-form-wrap:focus-within {
      border-color: var(--primary-accent);
      box-shadow: 0 0 15px rgba(255, 94, 31, 0.3);
      background: rgba(255, 255, 255, 0.08);
    }
    .sub-input {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      flex-grow: 1;
      font-size: 0.95rem;
    }
    .sub-btn {
      background: var(--primary-accent);
      color: #fff;
      border: none;
      border-radius: var(--radius-pill);
      padding: 0.65rem 1.6rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-smooth);
      white-space: nowrap;
    }
    .sub-btn:hover {
      background: var(--primary-hover);
      transform: scale(1.02);
    }

    /* Site Footer Alignment */
    .site-footer {
      background: #07080b;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
      color: var(--text-dim);
    }
    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.2rem;
    }
    .footer-brand-logo {
      width: 38px;
      height: 38px;
      background: var(--primary-accent);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      font-size: 1.1rem;
    }
    .footer-brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: var(--text-muted);
    }
    .footer-badges-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    .footer-badge-tag {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      padding: 0.25rem 0.65rem;
      border-radius: var(--radius-sm);
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      letter-spacing: 0.5px;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
      font-size: 0.88rem;
    }
    .footer-links-list a {
      color: var(--text-muted);
    }
    .footer-links-list a:hover {
      color: var(--primary-accent);
      padding-left: 4px;
    }
    .footer-bottom-bar {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.82rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    @media (max-width: 991px) {
      .nav-search-slot { display: none; }
      .cat-title-wrap h1 { font-size: 1.85rem; }
    }
    @media (max-width: 767px) {
      .filter-row { flex-direction: column; gap: 0.5rem; }
      .filter-label { width: 100%; }
      .rank-card { padding: 0.85rem; gap: 0.8rem; }
      .rank-thumb { width: 50px; height: 70px; }
      .rank-number { font-size: 1.8rem; width: 30px; }
    }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
