/* roulang page: index */
:root {
      --cinema-primary: #ff2d55;
      --cinema-primary-hover: #e02447;
      --cinema-secondary: #6366f1;
      --cinema-bg: #0c0d12;
      --cinema-panel: #161822;
      --cinema-panel-hover: #1f2232;
      --cinema-border: #2b2f42;
      --cinema-text-main: #f8fafc;
      --cinema-text-muted: #cbd5e1;
      --cinema-text-sub: #64748b;
      --cinema-radius: 8px;
      --cinema-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      --cinema-shadow-hover: 0 16px 40px rgba(255, 45, 85, 0.2);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--cinema-bg);
      color: var(--cinema-text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--cinema-primary);
    }
    h1, h2, h3, h4, h5, h6 {
      color: var(--cinema-text-main);
      font-weight: 700;
    }
    .cinema-masthead {
      background-color: #090a0e;
      border-bottom: 1px solid var(--cinema-border);
      padding: 18px 0 12px;
    }
    .masthead-title {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--cinema-text-main);
      text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
    }
    .masthead-tagline {
      font-size: 0.85rem;
      color: var(--cinema-text-sub);
    }
    .nav-dual-bar {
      border-top: 1px solid var(--cinema-border);
      border-bottom: 1px solid var(--cinema-border);
      background: rgba(22, 24, 34, 0.85);
      backdrop-filter: blur(12px);
    }
    .nav-dual-bar .nav-link {
      color: var(--cinema-text-muted);
      font-weight: 500;
      padding: 12px 20px;
      position: relative;
      font-size: 0.95rem;
      transition: color 0.25s ease;
    }
    .nav-dual-bar .nav-link:hover,
    .nav-dual-bar .nav-link.active {
      color: #fff;
    }
    .nav-dual-bar .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 20px;
      right: 20px;
      height: 3px;
      background: var(--cinema-primary);
      border-radius: 3px 3px 0 0;
    }
    .btn-cinema {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-primary-hover));
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: var(--cinema-radius);
      padding: 10px 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.25s ease;
      box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
    }
    .btn-cinema:hover {
      background: linear-gradient(135deg, #ff446b, #ea1d42);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5);
    }
    .btn-cinema-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-main);
      font-weight: 600;
      border-radius: var(--cinema-radius);
      padding: 10px 22px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
    }
    .btn-cinema-outline:hover {
      background: rgba(255, 45, 85, 0.1);
      border-color: var(--cinema-primary);
      color: #fff;
      transform: translateY(-2px);
    }
    .cinema-card {
      background-color: var(--cinema-panel);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      transition: all 0.3s ease;
      box-shadow: var(--cinema-shadow);
      height: 100%;
    }
    .cinema-card:hover {
      background-color: var(--cinema-panel-hover);
      border-color: rgba(255, 45, 85, 0.4);
      transform: translateY(-4px);
      box-shadow: var(--cinema-shadow-hover);
    }
    .cinema-badge {
      background: rgba(255, 45, 85, 0.15);
      border: 1px solid var(--cinema-primary);
      color: var(--cinema-primary);
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600;
      display: inline-block;
    }
    .cinema-badge-blue {
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid var(--cinema-secondary);
      color: #818cf8;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600;
      display: inline-block;
    }
    .section-py {
      padding: 70px 0;
      border-bottom: 1px solid rgba(43, 47, 66, 0.4);
    }
    .section-header {
      margin-bottom: 45px;
    }
    .section-header .sub-badge {
      display: inline-block;
      margin-bottom: 12px;
    }
    .section-header h2 {
      font-size: 1.85rem;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-header p {
      max-width: 780px;
      margin: 0 auto;
      color: var(--cinema-text-sub);
      font-size: 0.95rem;
    }
    .hero-container {
      position: relative;
      background-image: linear-gradient(180deg, rgba(12, 13, 18, 0.75) 0%, rgba(12, 13, 18, 0.95) 100%), url('/assets/images/eebd943b4f9c9eb8.jpg');
      background-size: cover;
      background-position: center;
      padding: 85px 0 70px;
      border-bottom: 1px solid var(--cinema-border);
    }
    .hero-title {
      font-size: 2.5rem;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(120deg, #ffffff 40%, #ff758c 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--cinema-text-muted);
      margin-bottom: 30px;
      line-height: 1.85;
    }
    .poster-box {
      position: relative;
      border-radius: var(--cinema-radius);
      overflow: hidden;
      aspect-ratio: 3 / 4;
      background-color: #10121a;
      border: 1px solid var(--cinema-border);
      transition: all 0.35s ease;
    }
    .poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-box:hover img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .poster-rating {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      padding: 2px 7px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fbbf24;
      border: 1px solid rgba(251, 191, 36, 0.3);
      z-index: 2;
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(12, 13, 18, 0.95) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 14px;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }
    .poster-card-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-card-meta {
      font-size: 0.75rem;
      color: var(--cinema-text-sub);
    }
    .stat-number {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--cinema-primary);
      font-family: monospace;
      line-height: 1.1;
    }
    .stat-label {
      font-size: 0.85rem;
      color: var(--cinema-text-sub);
      margin-top: 6px;
    }
    .flow-step {
      position: relative;
      background: var(--cinema-panel);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 26px 20px;
      text-align: center;
      height: 100%;
    }
    .flow-index {
      width: 44px;
      height: 44px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 45, 85, 0.12);
      border: 1px solid var(--cinema-primary);
      color: var(--cinema-primary);
      font-weight: 800;
      font-size: 1.1rem;
    }
    .cinema-accordion .accordion-item {
      background-color: var(--cinema-panel);
      border: 1px solid var(--cinema-border);
      margin-bottom: 12px;
      border-radius: var(--cinema-radius) !important;
      overflow: hidden;
    }
    .cinema-accordion .accordion-button {
      background-color: var(--cinema-panel);
      color: var(--cinema-text-main);
      font-weight: 600;
      box-shadow: none;
      padding: 18px 22px;
    }
    .cinema-accordion .accordion-button:not(.collapsed) {
      background-color: #1a1e2d;
      color: var(--cinema-primary);
      border-bottom: 1px solid var(--cinema-border);
    }
    .cinema-accordion .accordion-button::after {
      filter: invert(1);
    }
    .cinema-accordion .accordion-body {
      background-color: var(--cinema-panel);
      color: var(--cinema-text-muted);
      font-size: 0.92rem;
      padding: 20px 22px;
      line-height: 1.8;
    }
    .footer-masthead {
      background-color: #08090d;
      border-top: 1px solid var(--cinema-border);
      padding: 55px 0 25px;
      color: var(--cinema-text-sub);
    }
    .footer-title {
      font-size: 1.1rem;
      color: var(--cinema-text-main);
      margin-bottom: 18px;
      font-weight: 700;
    }
    .footer-link-item {
      margin-bottom: 9px;
      font-size: 0.88rem;
    }
    .footer-bottom {
      border-top: 1px solid #1a1d29;
      margin-top: 40px;
      padding-top: 22px;
      font-size: 0.82rem;
    }
    @media (max-width: 991px) {
      .hero-title {
        font-size: 1.95rem;
      }
      .masthead-title {
        font-size: 1.6rem;
      }
      .section-py {
        padding: 50px 0;
      }
    }
    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.6rem;
      }
      .stat-number {
        font-size: 1.9rem;
      }
    }

/* roulang page: category1 */
:root {
      --cinema-primary: #ff2d55;
      --cinema-primary-hover: #e02447;
      --cinema-secondary: #6366f1;
      --cinema-bg: #0c0d12;
      --cinema-panel: #161822;
      --cinema-panel-hover: #1f2232;
      --cinema-border: #2b2f42;
      --cinema-text-main: #f8fafc;
      --cinema-text-muted: #cbd5e1;
      --cinema-text-sub: #64748b;
      --cinema-radius: 8px;
      --cinema-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      --cinema-shadow-hover: 0 16px 40px rgba(255, 45, 85, 0.2);
    }
    body {
      background-color: var(--cinema-bg);
      color: var(--cinema-text-muted);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--cinema-primary);
    }
    .cinema-masthead {
      background-color: #090a0e;
      border-bottom: 1px solid var(--cinema-border);
      padding: 18px 0 12px;
    }
    .masthead-title {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--cinema-text-main);
      text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
    }
    .masthead-tagline {
      font-size: 0.85rem;
      color: var(--cinema-text-sub);
    }
    .nav-dual-bar {
      border-top: 1px solid var(--cinema-border);
      border-bottom: 1px solid var(--cinema-border);
      background: rgba(22, 24, 34, 0.85);
      backdrop-filter: blur(12px);
    }
    .nav-dual-bar .nav-link {
      color: var(--cinema-text-muted);
      font-weight: 500;
      padding: 12px 20px;
      position: relative;
      font-size: 0.95rem;
      transition: color 0.25s ease;
    }
    .nav-dual-bar .nav-link:hover,
    .nav-dual-bar .nav-link.active {
      color: #fff;
    }
    .nav-dual-bar .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 20px;
      right: 20px;
      height: 3px;
      background: var(--cinema-primary);
      border-radius: 3px 3px 0 0;
    }
    .btn-cinema {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-primary-hover));
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: var(--cinema-radius);
      padding: 10px 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.25s ease;
      box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
    }
    .btn-cinema:hover {
      background: linear-gradient(135deg, #ff446b, #ea1d42);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5);
    }
    .btn-cinema-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-main);
      font-weight: 600;
      border-radius: var(--cinema-radius);
      padding: 8px 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
      font-size: 0.88rem;
    }
    .btn-cinema-outline:hover {
      background: rgba(255, 45, 85, 0.12);
      border-color: var(--cinema-primary);
      color: #fff;
      transform: translateY(-2px);
    }
    .cinema-card {
      background-color: var(--cinema-panel);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      transition: all 0.3s ease;
      box-shadow: var(--cinema-shadow);
      height: 100%;
    }
    .cinema-card:hover {
      background-color: var(--cinema-panel-hover);
      border-color: rgba(255, 45, 85, 0.4);
      transform: translateY(-4px);
      box-shadow: var(--cinema-shadow-hover);
    }
    .cinema-badge {
      background: rgba(255, 45, 85, 0.15);
      border: 1px solid var(--cinema-primary);
      color: var(--cinema-primary);
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600;
      display: inline-block;
    }
    .cinema-badge-blue {
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid var(--cinema-secondary);
      color: #818cf8;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600;
      display: inline-block;
    }
    .section-py {
      padding: 60px 0;
      border-bottom: 1px solid rgba(43, 47, 66, 0.4);
    }
    .section-header {
      margin-bottom: 35px;
    }
    .section-header h2 {
      font-size: 1.75rem;
      margin-bottom: 10px;
      color: var(--cinema-text-main);
      font-weight: 700;
    }
    .section-header p {
      color: var(--cinema-text-sub);
      font-size: 0.95rem;
    }
    .cat-masthead-banner {
      background: linear-gradient(180deg, #10121a 0%, #0c0d12 100%);
      border-bottom: 1px solid var(--cinema-border);
      padding: 36px 0 28px;
    }
    .cat-masthead-banner h1 {
      font-size: 2.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .filter-chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }
    .filter-chip {
      font-size: 0.8rem;
      padding: 5px 14px;
      border-radius: 20px;
      background: #181b26;
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-chip:hover, .filter-chip.active {
      background: var(--cinema-primary);
      border-color: var(--cinema-primary);
      color: #fff;
    }
    .poster-item-card {
      background: var(--cinema-panel);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
    }
    .poster-item-card:hover {
      border-color: var(--cinema-primary);
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(255, 45, 85, 0.2);
    }
    .poster-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 133.33%;
      overflow: hidden;
      background-color: #12141d;
    }
    .poster-thumb-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-item-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }
    .poster-badge-float {
      position: absolute;
      top: 8px;
      left: 8px;
      z-index: 3;
    }
    .poster-rate-float {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(12, 13, 18, 0.88);
      border: 1px solid rgba(255, 45, 85, 0.5);
      color: #ff3b68;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      z-index: 3;
    }
    .poster-info-box {
      padding: 14px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-info-title {
      font-size: 0.96rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-info-desc {
      font-size: 0.8rem;
      color: var(--cinema-text-sub);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 12px;
    }
    .trend-rank-badge {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: #232738;
      color: #cbd5e1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
    }
    .trend-rank-badge.top-1 {
      background: #ff2d55;
      color: #fff;
      box-shadow: 0 2px 10px rgba(255, 45, 85, 0.4);
    }
    .trend-rank-badge.top-2 {
      background: #ff6b4a;
      color: #fff;
    }
    .trend-rank-badge.top-3 {
      background: #6366f1;
      color: #fff;
    }
    .tag-bubble-btn {
      background: #1a1d29;
      border: 1px solid var(--cinema-border);
      color: #cbd5e1;
      border-radius: 6px;
      padding: 8px 16px;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.25s ease;
    }
    .tag-bubble-btn:hover {
      background: rgba(255, 45, 85, 0.15);
      border-color: var(--cinema-primary);
      color: #fff;
    }
    .custom-form-input {
      background-color: #12141c;
      border: 1px solid var(--cinema-border);
      color: #f8fafc;
      border-radius: var(--cinema-radius);
      padding: 10px 14px;
      font-size: 0.9rem;
    }
    .custom-form-input:focus {
      background-color: #12141c;
      border-color: var(--cinema-primary);
      color: #fff;
      box-shadow: 0 0 0 0.25rem rgba(255, 45, 85, 0.25);
    }
    .footer-masthead {
      background-color: #08090d;
      border-top: 1px solid var(--cinema-border);
      padding: 55px 0 25px;
    }
    .footer-title {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 18px;
      position: relative;
    }
    .footer-link-item {
      margin-bottom: 9px;
      font-size: 0.86rem;
      display: inline-block;
    }
    .footer-link-item:hover {
      color: var(--cinema-primary) !important;
      transform: translateX(4px);
    }

/* roulang page: category2 */
:root {
        --cinema-primary: #ff2d55;
        --cinema-primary-hover: #e02447;
        --cinema-secondary: #6366f1;
        --cinema-bg: #0c0d12;
        --cinema-panel: #161822;
        --cinema-panel-hover: #1f2232;
        --cinema-border: #2b2f42;
        --cinema-text-main: #f8fafc;
        --cinema-text-muted: #cbd5e1;
        --cinema-text-sub: #64748b;
        --cinema-radius: 8px;
        --cinema-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        --cinema-shadow-hover: 0 16px 40px rgba(255, 45, 85, 0.2);
    }
    body {
        background-color: var(--cinema-bg);
        color: var(--cinema-text-muted);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.75;
        font-size: 15px;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    a:hover {
        color: var(--cinema-primary);
    }
    .cinema-masthead {
        background-color: #090a0e;
        border-bottom: 1px solid var(--cinema-border);
        padding: 18px 0 12px;
    }
    .masthead-title {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: var(--cinema-text-main);
        text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
    }
    .masthead-tagline {
        font-size: 0.85rem;
        color: var(--cinema-text-sub);
    }
    .nav-dual-bar {
        border-top: 1px solid var(--cinema-border);
        border-bottom: 1px solid var(--cinema-border);
        background: rgba(22, 24, 34, 0.85);
        backdrop-filter: blur(12px);
    }
    .nav-dual-bar .nav-link {
        color: var(--cinema-text-muted);
        font-weight: 500;
        padding: 12px 20px;
        position: relative;
        font-size: 0.95rem;
        transition: color 0.25s ease;
    }
    .nav-dual-bar .nav-link:hover,
    .nav-dual-bar .nav-link.active {
        color: #fff;
    }
    .nav-dual-bar .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 3px;
        background: var(--cinema-primary);
        border-radius: 3px 3px 0 0;
    }
    .btn-cinema {
        background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-primary-hover));
        color: #fff;
        font-weight: 600;
        border: none;
        border-radius: var(--cinema-radius);
        padding: 10px 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.25s ease;
        box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
    }
    .btn-cinema:hover {
        background: linear-gradient(135deg, #ff446b, #ea1d42);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5);
    }
    .btn-cinema-outline {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--cinema-border);
        color: var(--cinema-text-main);
        font-weight: 600;
        border-radius: var(--cinema-radius);
        padding: 10px 22px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.25s ease;
    }
    .btn-cinema-outline:hover {
        background: rgba(255, 45, 85, 0.1);
        border-color: var(--cinema-primary);
        color: #fff;
        transform: translateY(-2px);
    }
    .cinema-card {
        background-color: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 24px;
        transition: all 0.3s ease;
        box-shadow: var(--cinema-shadow);
        height: 100%;
    }
    .cinema-card:hover {
        background-color: var(--cinema-panel-hover);
        border-color: rgba(255, 45, 85, 0.4);
        transform: translateY(-4px);
        box-shadow: var(--cinema-shadow-hover);
    }
    .cinema-badge {
        background: rgba(255, 45, 85, 0.15);
        border: 1px solid var(--cinema-primary);
        color: var(--cinema-primary);
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
    }
    .cinema-badge-blue {
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid var(--cinema-secondary);
        color: #818cf8;
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
    }
    .section-py {
        padding: 65px 0;
        border-bottom: 1px solid rgba(43, 47, 66, 0.4);
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-header h2 {
        font-size: 1.85rem;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        color: var(--cinema-text-main);
    }
    .section-header p {
        max-width: 780px;
        margin: 0 auto;
        color: var(--cinema-text-sub);
        font-size: 0.95rem;
    }

    /* Category Top Header Specific */
    .category-masthead-banner {
        position: relative;
        background: linear-gradient(180deg, rgba(12, 13, 18, 0.85) 0%, rgba(12, 13, 18, 0.98) 100%), url('/assets/images/30adb058258d1847.jpg');
        background-size: cover;
        background-position: center;
        padding: 50px 0 35px;
        border-bottom: 1px solid var(--cinema-border);
    }
    .category-h1 {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--cinema-text-main);
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .filter-group-wrap {
        background: rgba(22, 24, 34, 0.8);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 16px 20px;
    }
    .filter-label {
        font-size: 0.85rem;
        color: var(--cinema-text-sub);
        font-weight: 600;
        min-width: 70px;
    }
    .filter-item {
        font-size: 0.85rem;
        color: var(--cinema-text-muted);
        padding: 4px 12px;
        border-radius: 4px;
        display: inline-block;
        transition: all 0.2s ease;
    }
    .filter-item:hover, .filter-item.active {
        background: var(--cinema-primary);
        color: #fff;
    }

    /* Poster Card Grid */
    .poster-box {
        position: relative;
        border-radius: var(--cinema-radius);
        overflow: hidden;
        background: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        aspect-ratio: 3 / 4;
        margin-bottom: 12px;
    }
    .poster-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .poster-box:hover img {
        transform: scale(1.06);
    }
    .poster-badge-top {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }
    .poster-score-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffb800;
        font-weight: 700;
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 4px;
        backdrop-filter: blur(4px);
    }
    .poster-overlay-play {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(12, 13, 18, 0.9) 0%, rgba(12, 13, 18, 0.2) 60%, transparent 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .poster-box:hover .poster-overlay-play {
        opacity: 1;
    }
    .play-icon-circle {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--cinema-primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        box-shadow: 0 0 20px rgba(255, 45, 85, 0.6);
        transform: scale(0.85);
        transition: transform 0.25s ease;
    }
    .poster-box:hover .play-icon-circle {
        transform: scale(1);
    }
    .poster-card-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-card-meta {
        font-size: 0.8rem;
        color: var(--cinema-text-sub);
    }

    /* Trend Ranking */
    .trend-card {
        background: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 0.25s ease;
    }
    .trend-card:hover {
        background: var(--cinema-panel-hover);
        border-color: rgba(255, 45, 85, 0.4);
        transform: translateX(4px);
    }
    .trend-rank-num {
        font-size: 1.6rem;
        font-weight: 900;
        font-style: italic;
        width: 32px;
        text-align: center;
        line-height: 1;
    }
    .trend-rank-1 { color: #ff2d55; }
    .trend-rank-2 { color: #f59e0b; }
    .trend-rank-3 { color: #10b981; }
    .trend-rank-sub { color: var(--cinema-text-sub); }
    .trend-thumb {
        width: 60px;
        height: 80px;
        border-radius: 4px;
        object-fit: cover;
        flex-shrink: 0;
    }

    /* Before/After Comparison Card Blueprint */
    .compare-box {
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        overflow: hidden;
        background: var(--cinema-panel);
    }
    .compare-header {
        padding: 12px 18px;
        font-weight: 700;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .compare-header-before {
        background: rgba(100, 116, 139, 0.15);
        color: var(--cinema-text-sub);
        border-bottom: 1px solid var(--cinema-border);
    }
    .compare-header-after {
        background: rgba(255, 45, 85, 0.15);
        color: var(--cinema-primary);
        border-bottom: 1px solid var(--cinema-border);
    }
    .compare-body {
        padding: 20px;
        font-size: 0.88rem;
    }

    /* Tag Cloud Matrix */
    .keyword-tag-pill {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--cinema-border);
        color: var(--cinema-text-muted);
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
    }
    .keyword-tag-pill:hover {
        background: rgba(255, 45, 85, 0.12);
        border-color: var(--cinema-primary);
        color: #fff;
    }

    /* Form Controls */
    .cinema-input {
        background-color: rgba(12, 13, 18, 0.85);
        border: 1px solid var(--cinema-border);
        color: var(--cinema-text-main);
        border-radius: var(--cinema-radius);
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .cinema-input:focus {
        background-color: #0c0d12;
        border-color: var(--cinema-primary);
        color: #fff;
        box-shadow: 0 0 10px rgba(255, 45, 85, 0.25);
        outline: none;
    }

    /* Footer */
    .footer-masthead {
        background-color: #07080b;
        border-top: 1px solid var(--cinema-border);
        padding: 60px 0 30px;
    }
    .footer-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
    }
    .footer-link-item {
        font-size: 0.85rem;
        margin-bottom: 8px;
        display: inline-block;
    }

/* roulang page: category4 */
:root {
  --cinema-primary: #ff2d55;
  --cinema-primary-hover: #e02447;
  --cinema-secondary: #6366f1;
  --cinema-bg: #0c0d12;
  --cinema-panel: #161822;
  --cinema-panel-hover: #1f2232;
  --cinema-border: #2b2f42;
  --cinema-text-main: #f8fafc;
  --cinema-text-muted: #cbd5e1;
  --cinema-text-sub: #64748b;
  --cinema-radius: 8px;
  --cinema-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --cinema-shadow-hover: 0 16px 40px rgba(255, 45, 85, 0.2);
}
body {
  background-color: var(--cinema-bg);
  color: var(--cinema-text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  font-size: 15px;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover {
  color: var(--cinema-primary);
}
.cinema-masthead {
  background-color: #090a0e;
  border-bottom: 1px solid var(--cinema-border);
  padding: 18px 0 12px;
}
.masthead-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cinema-text-main);
  text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
}
.masthead-tagline {
  font-size: 0.85rem;
  color: var(--cinema-text-sub);
}
.nav-dual-bar {
  border-top: 1px solid var(--cinema-border);
  border-bottom: 1px solid var(--cinema-border);
  background: rgba(22, 24, 34, 0.85);
  backdrop-filter: blur(12px);
}
.nav-dual-bar .nav-link {
  color: var(--cinema-text-muted);
  font-weight: 500;
  padding: 12px 20px;
  position: relative;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.nav-dual-bar .nav-link:hover,
.nav-dual-bar .nav-link.active {
  color: #fff;
}
.nav-dual-bar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--cinema-primary);
  border-radius: 3px 3px 0 0;
}
.btn-cinema {
  background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-primary-hover));
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: var(--cinema-radius);
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
}
.btn-cinema:hover {
  background: linear-gradient(135deg, #ff446b, #ea1d42);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5);
}
.btn-cinema-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cinema-border);
  color: var(--cinema-text-main);
  font-weight: 600;
  border-radius: var(--cinema-radius);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}
.btn-cinema-outline:hover {
  background: rgba(255, 45, 85, 0.1);
  border-color: var(--cinema-primary);
  color: #fff;
  transform: translateY(-2px);
}
.cinema-card {
  background-color: var(--cinema-panel);
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--cinema-shadow);
  height: 100%;
}
.cinema-card:hover {
  background-color: var(--cinema-panel-hover);
  border-color: rgba(255, 45, 85, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--cinema-shadow-hover);
}
.cinema-badge {
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid var(--cinema-primary);
  color: var(--cinema-primary);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}
.cinema-badge-blue {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--cinema-secondary);
  color: #818cf8;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}
.category-header-banner {
  background: linear-gradient(180deg, #11131c 0%, #0c0d12 100%);
  border-bottom: 1px solid var(--cinema-border);
  padding: 40px 0 30px;
}
.filter-group-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cinema-border);
  color: var(--cinema-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--cinema-primary);
  border-color: var(--cinema-primary);
  color: #fff;
}
.section-py {
  padding: 60px 0;
  border-bottom: 1px solid rgba(43, 47, 66, 0.4);
}
.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cinema-text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: "";
  width: 4px;
  height: 1.25rem;
  background: var(--cinema-primary);
  border-radius: 2px;
  display: inline-block;
}
.section-subtitle {
  color: var(--cinema-text-sub);
  font-size: 0.92rem;
  margin-bottom: 30px;
}
.poster-card {
  background: var(--cinema-panel);
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.poster-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 45, 85, 0.45);
  box-shadow: var(--cinema-shadow-hover);
}
.poster-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}
.poster-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.poster-card:hover .poster-thumb img {
  transform: scale(1.06);
}
.poster-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.poster-score {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffb703;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 183, 3, 0.3);
  backdrop-filter: blur(4px);
}
.poster-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.poster-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cinema-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.poster-meta {
  font-size: 0.8rem;
  color: var(--cinema-text-sub);
  margin-bottom: 12px;
}
.trend-card {
  background: var(--cinema-panel);
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}
.trend-card:hover {
  background: var(--cinema-panel-hover);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateX(4px);
}
.trend-rank {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trend-rank-1 { background: #ff2d55; color: #fff; }
.trend-rank-2 { background: #e02447; color: #fff; }
.trend-rank-3 { background: #6366f1; color: #fff; }
.trend-rank-normal { background: rgba(255, 255, 255, 0.08); color: var(--cinema-text-sub); }
.trend-img {
  width: 55px;
  height: 75px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.tag-box {
  background: var(--cinema-panel);
  border: 1px solid var(--cinema-border);
  border-radius: 6px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cinema-text-muted);
  transition: all 0.2s ease;
}
.tag-box:hover {
  border-color: var(--cinema-primary);
  color: #fff;
  background: rgba(255, 45, 85, 0.08);
}
.footer-masthead {
  background-color: #08090d;
  border-top: 1px solid var(--cinema-border);
  padding: 60px 0 25px;
}
.footer-title {
  color: var(--cinema-text-main);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-link-item {
  margin-bottom: 10px;
  font-size: 0.88rem;
  display: block;
}
.footer-link-item:hover {
  color: var(--cinema-primary) !important;
  transform: translateX(4px);
}
.spec-box {
  background: var(--cinema-panel);
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius);
  padding: 22px;
  height: 100%;
}
.spec-box i {
  font-size: 2rem;
  color: var(--cinema-primary);
  margin-bottom: 14px;
  display: inline-block;
}
.feedback-input {
  background: #0e1017;
  border: 1px solid var(--cinema-border);
  color: #fff;
  border-radius: 6px;
  padding: 10px 14px;
  width: 100%;
}
.feedback-input:focus {
  outline: none;
  border-color: var(--cinema-primary);
  box-shadow: 0 0 0 2px rgba(255, 45, 85, 0.2);
}

/* roulang page: category3 */
:root {
        --cinema-primary: #ff2d55;
        --cinema-primary-hover: #e02447;
        --cinema-secondary: #6366f1;
        --cinema-bg: #0c0d12;
        --cinema-panel: #161822;
        --cinema-panel-hover: #1f2232;
        --cinema-border: #2b2f42;
        --cinema-text-main: #f8fafc;
        --cinema-text-muted: #cbd5e1;
        --cinema-text-sub: #64748b;
        --cinema-radius: 8px;
        --cinema-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        --cinema-shadow-hover: 0 16px 40px rgba(255, 45, 85, 0.2);
    }
    body {
        background-color: var(--cinema-bg);
        color: var(--cinema-text-muted);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.75;
        font-size: 15px;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    a:hover {
        color: var(--cinema-primary);
    }
    .cinema-masthead {
        background-color: #090a0e;
        border-bottom: 1px solid var(--cinema-border);
        padding: 18px 0 14px;
    }
    .masthead-title {
        font-size: 1.9rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        color: var(--cinema-text-main);
        text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
    }
    .masthead-tagline {
        font-size: 0.85rem;
        color: var(--cinema-text-sub);
    }
    .nav-dual-bar {
        border-top: 1px solid var(--cinema-border);
        border-bottom: 1px solid var(--cinema-border);
        background: rgba(22, 24, 34, 0.92);
        backdrop-filter: blur(12px);
    }
    .nav-dual-bar .nav-link {
        color: var(--cinema-text-muted);
        font-weight: 500;
        padding: 12px 20px;
        position: relative;
        font-size: 0.95rem;
        transition: color 0.25s ease;
    }
    .nav-dual-bar .nav-link:hover,
    .nav-dual-bar .nav-link.active {
        color: #fff;
    }
    .nav-dual-bar .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 3px;
        background: var(--cinema-primary);
        border-radius: 3px 3px 0 0;
    }
    .btn-cinema {
        background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-primary-hover));
        color: #fff;
        font-weight: 600;
        border: none;
        border-radius: var(--cinema-radius);
        padding: 10px 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.25s ease;
        box-shadow: 0 4px 15px rgba(255, 45, 85, 0.35);
    }
    .btn-cinema:hover {
        background: linear-gradient(135deg, #ff446b, #ea1d42);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5);
    }
    .btn-cinema-outline {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--cinema-border);
        color: var(--cinema-text-main);
        font-weight: 600;
        border-radius: var(--cinema-radius);
        padding: 8px 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.25s ease;
    }
    .btn-cinema-outline:hover {
        background: rgba(255, 45, 85, 0.1);
        border-color: var(--cinema-primary);
        color: #fff;
        transform: translateY(-2px);
    }
    .cinema-card {
        background-color: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 24px;
        transition: all 0.3s ease;
        box-shadow: var(--cinema-shadow);
        height: 100%;
    }
    .cinema-card:hover {
        background-color: var(--cinema-panel-hover);
        border-color: rgba(255, 45, 85, 0.4);
        transform: translateY(-4px);
        box-shadow: var(--cinema-shadow-hover);
    }
    .cinema-badge {
        background: rgba(255, 45, 85, 0.15);
        border: 1px solid var(--cinema-primary);
        color: var(--cinema-primary);
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
    }
    .cinema-badge-blue {
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid var(--cinema-secondary);
        color: #818cf8;
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
    }
    .section-py {
        padding: 60px 0;
        border-bottom: 1px solid rgba(43, 47, 66, 0.45);
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-header h2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--cinema-text-main);
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    .section-header p {
        color: var(--cinema-text-sub);
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    
    /* 分类专区特有紧凑Banner */
    .category-banner {
        background: linear-gradient(180deg, rgba(22, 24, 34, 0.95) 0%, rgba(12, 13, 18, 0.98) 100%), url('/assets/images/30adb058258d1847.jpg') center/cover no-repeat;
        border-bottom: 1px solid var(--cinema-border);
        padding: 45px 0 35px;
    }
    .category-main-title {
        font-size: 2.1rem;
        font-weight: 800;
        color: var(--cinema-text-main);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .category-intro {
        font-size: 0.95rem;
        color: var(--cinema-text-muted);
        max-width: 680px;
        line-height: 1.8;
    }
    .filter-group {
        background: rgba(14, 16, 23, 0.8);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 16px 20px;
    }
    .filter-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.85rem;
    }
    .filter-label {
        color: var(--cinema-text-sub);
        min-width: 70px;
        font-weight: 600;
    }
    .filter-pill {
        padding: 4px 12px;
        border-radius: 4px;
        color: var(--cinema-text-muted);
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }
    .filter-pill:hover,
    .filter-pill.active {
        background: rgba(255, 45, 85, 0.15);
        color: #ff5277;
        border-color: rgba(255, 45, 85, 0.35);
    }

    /* 海报卡片 */
    .poster-item {
        background: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .poster-item:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 45, 85, 0.5);
        box-shadow: 0 12px 30px rgba(255, 45, 85, 0.18);
    }
    .poster-thumb {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        background-color: #10121a;
    }
    .poster-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .poster-item:hover .poster-thumb img {
        transform: scale(1.05);
    }
    .poster-badge-wrap {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 2;
    }
    .poster-score {
        position: absolute;
        bottom: 8px;
        right: 8px;
        background: rgba(12, 13, 18, 0.85);
        color: #ffb703;
        font-weight: 700;
        font-size: 0.8rem;
        padding: 2px 7px;
        border-radius: 4px;
        border: 1px solid rgba(255, 183, 3, 0.3);
        backdrop-filter: blur(4px);
    }
    .poster-body {
        padding: 14px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }
    .poster-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--cinema-text-main);
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .poster-meta {
        font-size: 0.8rem;
        color: var(--cinema-text-sub);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    /* 榜单组件 */
    .rank-row {
        background: var(--cinema-panel);
        border: 1px solid var(--cinema-border);
        border-radius: var(--cinema-radius);
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 0.25s ease;
    }
    .rank-row:hover {
        background: var(--cinema-panel-hover);
        border-color: rgba(255, 45, 85, 0.4);
        transform: translateX(4px);
    }
    .rank-num {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        border-radius: 6px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    .rank-1 { background: #ff2d55; color: #fff; }
    .rank-2 { background: #ea580c; color: #fff; }
    .rank-3 { background: #d97706; color: #fff; }
    .rank-other { background: rgba(255, 255, 255, 0.08); color: var(--cinema-text-muted); }

    .tag-cloud-item {
        display: inline-block;
        background: rgba(22, 24, 34, 0.9);
        border: 1px solid var(--cinema-border);
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 0.88rem;
        color: var(--cinema-text-muted);
        transition: all 0.2s ease;
    }
    .tag-cloud-item:hover {
        background: rgba(99, 102, 241, 0.15);
        border-color: var(--cinema-secondary);
        color: #fff;
    }

    .footer-masthead {
        background-color: #07080b;
        border-top: 1px solid var(--cinema-border);
        padding: 55px 0 25px;
    }
    .footer-title {
        color: var(--cinema-text-main);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 18px;
        position: relative;
    }
    .footer-title::after {
        content: "";
        display: block;
        width: 24px;
        height: 2px;
        background: var(--cinema-primary);
        margin-top: 6px;
    }
    .footer-link-item {
        font-size: 0.88rem;
        margin-bottom: 10px;
        display: inline-block;
    }
    .footer-link-item:hover {
        color: #fff !important;
        transform: translateX(4px);
    }
    .form-dark {
        background: #11131c;
        border: 1px solid var(--cinema-border);
        color: var(--cinema-text-main);
        border-radius: var(--cinema-radius);
        padding: 10px 14px;
    }
    .form-dark:focus {
        background: #131622;
        border-color: var(--cinema-primary);
        color: #fff;
        box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.2);
    }

/* 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}
