/* roulang page: index */
:root {
      --bg-base: #0b0f19;
      --bg-surface: #111827;
      --bg-card: rgba(22, 31, 48, 0.72);
      --bg-card-hover: rgba(30, 42, 65, 0.85);
      --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
      --brand-glow: rgba(168, 85, 247, 0.35);
      --accent-green: #10b981;
      --accent-gold: #f59e0b;
      --accent-cyan: #06b6d4;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(168, 85, 247, 0.4);
      --radius-lg: 22px;
      --radius-sm: 10px;
    }

    /* Base Reset */
    * { box-sizing: border-box; }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
    a:hover { color: #ec4899; }
    img { max-width: 100%; height: auto; object-fit: cover; }

    /* Custom Navbar */
    .navbar-cinema {
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.85rem 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }
    .navbar-cinema .navbar-brand {
      font-weight: 800;
      font-size: 1.45rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .brand-icon-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.15rem;
      box-shadow: 0 4px 12px var(--brand-glow);
    }
    .navbar-cinema .nav-link {
      color: var(--text-muted);
      font-size: 0.98rem;
      font-weight: 500;
      padding: 0.5rem 1.1rem;
      border-radius: 8px;
      transition: all 0.2s ease;
    }
    .navbar-cinema .nav-link:hover,
    .navbar-cinema .nav-link.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    /* Bilingual Switch Pill */
    .lang-switcher {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.25rem 0.5rem;
      display: inline-flex;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .lang-switcher .dropdown-toggle {
      color: var(--text-main);
      text-decoration: none;
      padding: 0.2rem 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .dropdown-menu-dark {
      background-color: var(--bg-surface);
      border: 1px solid var(--border-light);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    /* Buttons */
    .btn-gradient {
      background: var(--brand-gradient);
      color: #fff;
      border: none;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.65rem 1.6rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 20px var(--brand-glow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(168, 85, 247, 0.5);
      color: #fff;
    }
    .btn-outline-cinema {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      color: var(--text-main);
      font-weight: 500;
      border-radius: 50px;
      padding: 0.65rem 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s;
    }
    .btn-outline-cinema:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    /* Badges */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 0.3rem 0.65rem;
      border-radius: 50px;
      text-transform: uppercase;
    }
    .badge-gradient {
      background: var(--brand-gradient);
      color: #fff;
    }
    .badge-green {
      background: rgba(16, 185, 129, 0.15);
      color: var(--accent-green);
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .badge-gold {
      background: rgba(245, 158, 11, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .badge-cyan {
      background: rgba(6, 182, 212, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .pulse-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--accent-green);
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
      animation: pulse-green 1.8s infinite;
    }
    @keyframes pulse-green {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    /* Cards */
    .cinema-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(14px);
      padding: 1.75rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      height: 100%;
    }
    .cinema-card:hover {
      transform: translateY(-6px);
      background: var(--bg-card-hover);
      border-color: var(--border-highlight);
      box-shadow: 0 20px 35px -10px var(--brand-glow);
    }

    /* Section Styles */
    .section-padding {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 680px;
      margin-bottom: 2.8rem;
    }

    /* Hero Section (Promotion variant) */
    .hero-container {
      position: relative;
      padding: 6.5rem 0 5.5rem;
      background: radial-gradient(circle at 85% 20%, rgba(168, 85, 247, 0.22) 0%, transparent 55%),
                  radial-gradient(circle at 15% 75%, rgba(99, 102, 241, 0.18) 0%, transparent 45%),
                  url('/assets/images/1430078cbe7bebe2.jpg') center/cover no-repeat;
      background-blend-mode: overlay;
      border-bottom: 1px solid var(--border-light);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 15, 25, 0.75) 0%, rgba(11, 15, 25, 0.95) 100%);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .promo-blast-tag {
      background: linear-gradient(90deg, #ec4899 0%, #f43f5e 100%);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 800;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    /* Media Poster Card */
    .poster-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      position: relative;
      transition: all 0.3s ease;
    }
    .poster-img-wrap {
      aspect-ratio: 2/3;
      position: relative;
      overflow: hidden;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-img-wrap img {
      transform: scale(1.06);
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-highlight);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    }
    .poster-overlay-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
    }
    .poster-score-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      z-index: 3;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      padding: 0.2rem 0.5rem;
      border-radius: 6px;
      color: var(--accent-gold);
      font-size: 0.82rem;
      font-weight: 700;
    }
    .poster-info {
      padding: 1rem 1.15rem;
    }

    /* Player Sandbox */
    .player-sandbox {
      background: #030712;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-lg);
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .player-sandbox img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
    }
    .player-controls {
      position: relative;
      z-index: 3;
      background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.95) 100%);
      padding: 1.5rem;
    }
    .progress-bar-custom {
      height: 5px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 5px;
      margin-bottom: 1rem;
      position: relative;
      cursor: pointer;
    }
    .progress-fill {
      width: 68%;
      height: 100%;
      background: var(--brand-gradient);
      border-radius: 5px;
      position: relative;
    }
    .progress-thumb {
      width: 13px;
      height: 13px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      right: -6px;
      top: -4px;
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
    }

    /* Ticket Card / Coupons */
    .ticket-card {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
      border: 1px dashed rgba(168, 85, 247, 0.45);
      border-radius: 18px;
      padding: 1.5rem;
      position: relative;
      transition: all 0.3s ease;
    }
    .ticket-card:hover {
      border-color: #ec4899;
      transform: translateY(-4px);
    }
    .ticket-card::before, .ticket-card::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 18px;
      height: 18px;
      background: var(--bg-base);
      border-radius: 50%;
      transform: translateY(-50%);
    }
    .ticket-card::before { left: -9px; }
    .ticket-card::after { right: -9px; }

    /* Performance Bar */
    .stat-track {
      height: 10px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 6px;
      overflow: hidden;
      margin: 0.6rem 0;
    }
    .stat-fill-vip {
      background: var(--brand-gradient);
      height: 100%;
      border-radius: 6px;
    }
    .stat-fill-normal {
      background: #4b5563;
      height: 100%;
      border-radius: 6px;
    }

    /* Footer */
    .footer-cinema {
      background: #060911;
      border-top: 1px solid var(--border-light);
      padding: 4.5rem 0 2.5rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .footer-cinema h6 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .footer-link {
      display: block;
      color: var(--text-muted);
      margin-bottom: 0.65rem;
transition: color 0.2s ease;
    }
    .footer-link:hover {
      color: #fff;
      padding-left: 4px;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
      .section-padding { padding: 3.5rem 0; }
      .hero-container { padding: 4rem 0 3rem; }
      .section-title { font-size: 1.75rem; }
    }
    @media (max-width: 575.92px) {
      .section-title { font-size: 1.45rem; }
      .cinema-card { padding: 1.25rem; }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0b0f19;
      --bg-surface: #111827;
      --bg-card: rgba(22, 31, 48, 0.72);
      --bg-card-hover: rgba(30, 42, 65, 0.85);
      --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
      --brand-glow: rgba(168, 85, 247, 0.35);
      --accent-green: #10b981;
      --accent-gold: #f59e0b;
      --accent-cyan: #06b6d4;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(168, 85, 247, 0.4);
      --radius-lg: 22px;
      --radius-sm: 10px;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
    a:hover { color: #ec4899; }
    img { max-width: 100%; height: auto; object-fit: cover; }

    /* Custom Navbar */
    .navbar-cinema {
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.85rem 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }
    .navbar-cinema .navbar-brand {
      font-weight: 800;
      font-size: 1.45rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .brand-icon-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.15rem;
      box-shadow: 0 4px 12px var(--brand-glow);
    }
    .navbar-cinema .nav-link {
      color: var(--text-muted);
      font-size: 0.98rem;
      font-weight: 500;
      padding: 0.5rem 1.1rem;
      border-radius: 8px;
      transition: all 0.2s ease;
    }
    .navbar-cinema .nav-link:hover,
    .navbar-cinema .nav-link.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .lang-switcher {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.35rem 0.85rem;
      display: inline-flex;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      gap: 0.4rem;
    }
    .btn-gradient {
      background: var(--brand-gradient);
      color: #fff;
      border: none;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.65rem 1.6rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 20px var(--brand-glow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(168, 85, 247, 0.5);
      color: #fff;
    }
    .btn-outline-cinema {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      color: var(--text-main);
      font-weight: 500;
      border-radius: 50px;
      padding: 0.65rem 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s;
    }
    .btn-outline-cinema:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    /* Data Badges */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 0.3rem 0.65rem;
      border-radius: 50px;
      text-transform: uppercase;
    }
    .badge-gradient { background: var(--brand-gradient); color: #fff; }
    .badge-green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }
    .badge-gold { background: rgba(245, 158, 11, 0.15); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.3); }
    .badge-cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }

    /* Category Specific Styles: Creator/Curator Blueprint Hero */
    .curator-hero {
      position: relative;
      background: linear-gradient(180deg, rgba(17, 24, 39, 0.88) 0%, rgba(11, 15, 25, 0.98) 100%), url('/assets/images/cf3524c0e4fa1061.jpg') center/cover no-repeat;
      padding: 4.5rem 0 3.5rem;
      border-bottom: 1px solid var(--border-light);
    }
    .curator-badge-bar {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.25rem;
    }
    .curator-avatar-box {
      width: 76px;
      height: 76px;
      border-radius: 20px;
      border: 2px solid rgba(168, 85, 247, 0.6);
      background: var(--bg-surface);
      overflow: hidden;
      box-shadow: 0 10px 25px var(--brand-glow);
    }
    .filter-pills-wrap {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 18px;
      padding: 1.2rem 1.5rem;
      backdrop-filter: blur(12px);
      margin-top: 2rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 0.85rem;
    }
    .filter-row:last-child { margin-bottom: 0; }
    .filter-title-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-muted);
      width: 55px;
      flex-shrink: 0;
    }
    .filter-chip {
      font-size: 0.85rem;
      padding: 0.28rem 0.85rem;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-chip:hover, .filter-chip.active {
      color: #fff;
      background: rgba(168, 85, 247, 0.2);
      border-color: rgba(168, 85, 247, 0.5);
    }

    /* Movie Poster Cards */
    .poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-highlight);
      box-shadow: 0 18px 30px -10px var(--brand-glow);
    }
    .poster-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #1e293b;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-img-wrap img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .poster-rate-top {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
    }
    .poster-body {
      padding: 1.1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Top Rank Cards */
    .rank-bar-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      transition: all 0.25s ease;
    }
    .rank-bar-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-highlight);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.8rem;
      font-weight: 900;
      font-style: italic;
      color: rgba(255, 255, 255, 0.2);
      width: 32px;
      text-align: center;
    }
    .rank-num.top-three {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    /* Wide Carousel Topic Card */
    .topic-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
    }
    .topic-card:hover {
      border-color: var(--border-highlight);
      transform: translateY(-5px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
    }
    .topic-thumb {
      aspect-ratio: 16 / 9;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .topic-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .topic-card:hover .topic-thumb img {
      transform: scale(1.05);
    }

    /* Accordion FAQ */
    .accordion-cinema .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 14px !important;
      margin-bottom: 0.85rem;
      overflow: hidden;
    }
    .accordion-cinema .accordion-button {
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 1.2rem 1.4rem;
      box-shadow: none;
    }
    .accordion-cinema .accordion-button:not(.collapsed) {
      color: #c084fc;
      background: rgba(168, 85, 247, 0.08);
    }
    .accordion-cinema .accordion-button::after {
      filter: invert(1);
    }
    .accordion-cinema .accordion-body {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      padding: 1.2rem 1.4rem;
      background: rgba(11, 15, 25, 0.4);
    }

    /* Pagination */
    .cinema-pagination .page-link {
      background: var(--bg-card);
      border-color: var(--border-light);
      color: var(--text-muted);
      border-radius: 8px;
      margin: 0 0.25rem;
      padding: 0.55rem 1rem;
    }
    .cinema-pagination .page-item.active .page-link {
      background: var(--brand-gradient);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 12px var(--brand-glow);
    }
    .cinema-pagination .page-link:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    /* Footer */
    .footer-area {
      background: #080c14;
      border-top: 1px solid var(--border-light);
      padding: 4.5rem 0 2rem;
    }
    .footer-brand {
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .footer-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.2rem;
    }
    .footer-link {
      color: var(--text-muted);
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: #fff;
      padding-left: 3px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      margin-top: 3rem;
    }

/* roulang page: category1 */
:root {
      --bg-base: #0b0f19;
      --bg-surface: #111827;
      --bg-card: rgba(22, 31, 48, 0.72);
      --bg-card-hover: rgba(30, 42, 65, 0.85);
      --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
      --brand-glow: rgba(168, 85, 247, 0.35);
      --accent-green: #10b981;
      --accent-gold: #f59e0b;
      --accent-cyan: #06b6d4;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-light: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(168, 85, 247, 0.4);
      --radius-lg: 22px;
      --radius-sm: 10px;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
    a:hover { color: #ec4899; }
    img { max-width: 100%; height: auto; object-fit: cover; }

    /* Custom Navbar */
    .navbar-cinema {
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.85rem 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }
    .navbar-cinema .navbar-brand {
      font-weight: 800;
      font-size: 1.45rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .brand-icon-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.15rem;
      box-shadow: 0 4px 12px var(--brand-glow);
    }
    .navbar-cinema .nav-link {
      color: var(--text-muted);
      font-size: 0.98rem;
      font-weight: 500;
      padding: 0.5rem 1.1rem;
      border-radius: 8px;
      transition: all 0.2s ease;
    }
    .navbar-cinema .nav-link:hover,
    .navbar-cinema .nav-link.active {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    /* Bilingual Switch Pill */
    .lang-switcher {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.25rem 0.65rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* Buttons */
    .btn-gradient {
      background: var(--brand-gradient);
      color: #fff;
      border: none;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.65rem 1.6rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 20px var(--brand-glow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(168, 85, 247, 0.5);
      color: #fff;
    }
    .btn-outline-cinema {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      color: var(--text-main);
      font-weight: 500;
      border-radius: 50px;
      padding: 0.65rem 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s;
    }
    .btn-outline-cinema:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
    }

    /* Badges */
    .data-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 0.3rem 0.65rem;
      border-radius: 50px;
      text-transform: uppercase;
    }
    .badge-gradient { background: var(--brand-gradient); color: #fff; }
    .badge-green {
      background: rgba(16, 185, 129, 0.15);
      color: var(--accent-green);
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .badge-gold {
      background: rgba(245, 158, 11, 0.15);
      color: var(--accent-gold);
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .badge-cyan {
      background: rgba(6, 182, 212, 0.15);
      color: var(--accent-cyan);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }

    /* Cards */
    .cinema-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(14px);
      padding: 1.75rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      height: 100%;
    }
    .cinema-card:hover {
      transform: translateY(-6px);
      background: var(--bg-card-hover);
      border-color: var(--border-highlight);
      box-shadow: 0 20px 35px -10px var(--brand-glow);
    }

    /* Section Styles */
    .section-padding {
      padding: 4.8rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.02rem;
      margin-bottom: 2.5rem;
    }

    /* Category Hero & Filter Banner */
    .category-hero {
      position: relative;
      padding: 4.5rem 0 3.5rem;
      background: radial-gradient(circle at 90% 15%, rgba(168, 85, 247, 0.25) 0%, transparent 60%),
                  radial-gradient(circle at 10% 85%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                  url('/assets/images/cf3524c0e4fa1061.jpg') center/cover no-repeat;
      border-bottom: 1px solid var(--border-light);
    }
    .category-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 15, 25, 0.85) 0%, rgba(11, 15, 25, 0.96) 100%);
      z-index: 1;
    }
    .category-hero-content {
      position: relative;
      z-index: 2;
    }
    .filter-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1rem;
    }
    .filter-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-width: 46px;
      font-weight: 600;
    }
    .filter-btn {
      font-size: 0.82rem;
      padding: 0.32rem 0.85rem;
      border-radius: 50px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-light);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn:hover, .filter-btn.active {
      color: #fff;
      background: rgba(168, 85, 247, 0.25);
      border-color: rgba(168, 85, 247, 0.6);
    }

    /* Series Poster Card (Aspect Ratio 2:3) */
    .poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-column: column;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-8px);
      border-color: var(--border-highlight);
      box-shadow: 0 16px 30px -8px var(--brand-glow);
    }
    .poster-media {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #111827;
    }
    .poster-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .poster-card:hover .poster-media img {
      transform: scale(1.07);
    }
    .poster-badges {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 40%, rgba(11, 15, 25, 0.95) 100%);
      z-index: 1;
    }
    .poster-info {
      padding: 1.15rem 1rem;
      background: rgba(17, 24, 39, 0.6);
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Ranking Item Card */
    .rank-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: all 0.25s ease;
    }
    .rank-item-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(168, 85, 247, 0.4);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.75rem;
      font-weight: 900;
      font-style: italic;
      color: rgba(255, 255, 255, 0.25);
      min-width: 40px;
    }
    .rank-top1 .rank-num { color: #ec4899; }
    .rank-top2 .rank-num { color: #a855f7; }
    .rank-top3 .rank-num { color: #06b6d4; }
    .rank-progress-bar {
      height: 6px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
      margin-top: 0.5rem;
    }
    .rank-progress-fill {
      height: 100%;
      border-radius: 10px;
      background: var(--brand-gradient);
    }

    /* Collection Showcase */
    .collection-banner {
      border-radius: var(--radius-lg);
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      overflow: hidden;
      position: relative;
      transition: all 0.3s ease;
    }
    .collection-banner:hover {
      border-color: var(--border-highlight);
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(99, 102, 241, 0.2);
    }

    /* Accordion FAQ */
    .cinema-accordion .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 14px !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .cinema-accordion .accordion-button {
      background: transparent;
      color: #fff;
      font-weight: 600;
      box-shadow: none;
      padding: 1.25rem 1.5rem;
    }
    .cinema-accordion .accordion-button:not(.collapsed) {
      color: #ec4899;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border-light);
    }
    .cinema-accordion .accordion-button::after {
      filter: invert(1);
    }
    .cinema-accordion .accordion-body {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      padding: 1.25rem 1.5rem;
    }

    /* Pagination */
    .cinema-pagination .page-link {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      color: var(--text-main);
      padding: 0.65rem 1.2rem;
      border-radius: 12px;
      margin: 0 0.3rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }
    .cinema-pagination .page-link:hover,
    .cinema-pagination .page-item.active .page-link {
      background: var(--brand-gradient);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 12px var(--brand-glow);
    }

    /* Footer */
    .footer-area {
      background-color: #080c14;
      border-top: 1px solid var(--border-light);
      padding: 4.5rem 0 2.5rem;
    }
    .footer-brand {
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
      margin-bottom: 1.2rem;
    }
    .footer-link {
      color: var(--text-muted);
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: #ec4899;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;}

/* roulang page: category3 */
:root {
            --bg-base: #0b0f19;
            --bg-surface: #111827;
            --bg-card: rgba(22, 31, 48, 0.72);
            --bg-card-hover: rgba(30, 42, 65, 0.85);
            --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
            --brand-glow: rgba(168, 85, 247, 0.35);
            --accent-green: #10b981;
            --accent-gold: #f59e0b;
            --accent-cyan: #06b6d4;
            --text-main: #f9fafb;
            --text-muted: #9ca3af;
            --border-light: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(168, 85, 247, 0.4);
            --radius-lg: 22px;
            --radius-sm: 10px;
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
        a:hover { color: #ec4899; }
        img { max-width: 100%; height: auto; object-fit: cover; }

        /* Custom Navbar */
        .navbar-cinema {
            background: rgba(11, 15, 25, 0.88);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            padding: 0.85rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .navbar-cinema .navbar-brand {
            font-weight: 800;
            font-size: 1.45rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .brand-icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--brand-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.15rem;
            box-shadow: 0 4px 12px var(--brand-glow);
        }
        .navbar-cinema .nav-link {
            color: var(--text-muted);
            font-size: 0.98rem;
            font-weight: 500;
            padding: 0.5rem 1.1rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .navbar-cinema .nav-link:hover,
        .navbar-cinema .nav-link.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* Bilingual Switch Pill */
        .lang-switcher {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            padding: 0.25rem 0.5rem;
            display: inline-flex;
            align-items: center;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* Buttons */
        .btn-gradient {
            background: var(--brand-gradient);
            color: #fff;
            border: none;
            font-weight: 600;
            border-radius: 50px;
            padding: 0.65rem 1.6rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 20px var(--brand-glow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(168, 85, 247, 0.5);
            color: #fff;
        }
        .btn-outline-cinema {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-light);
            color: var(--text-main);
            font-weight: 500;
            border-radius: 50px;
            padding: 0.65rem 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.25s;
        }
        .btn-outline-cinema:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        /* Badges */
        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 0.3rem 0.65rem;
            border-radius: 50px;
            text-transform: uppercase;
        }
        .badge-gradient {
            background: var(--brand-gradient);
            color: #fff;
        }
        .badge-green {
            background: rgba(16, 185, 129, 0.15);
            color: var(--accent-green);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .badge-gold {
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent-gold);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .badge-cyan {
            background: rgba(6, 182, 212, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        /* Cards */
        .cinema-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(14px);
            padding: 1.75rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            height: 100%;
        }
        .cinema-card:hover {
            transform: translateY(-6px);
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
            box-shadow: 0 20px 35px -10px var(--brand-glow);
        }

        /* Section Styles */
        .section-padding {
            padding: 4.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }
        .section-title {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 680px;
            margin-bottom: 2.5rem;
        }

        /* Category Hero / Filter */
        .category-hero {
            position: relative;
            padding: 4.5rem 0 3.5rem;
            background: radial-gradient(circle at 75% 15%, rgba(168, 85, 247, 0.2) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                        url('/assets/images/5c1916021a4ef760.jpg') center/cover no-repeat;
            background-blend-mode: overlay;
            border-bottom: 1px solid var(--border-light);
        }
        .category-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 15, 25, 0.78) 0%, rgba(11, 15, 25, 0.96) 100%);
            z-index: 1;
        }
        .category-hero-inner {
            position: relative;
            z-index: 2;
        }

        /* Filter Pills */
        .filter-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .filter-label {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-muted);
            min-width: 50px;
        }
        .filter-chip {
            font-size: 0.85rem;
            padding: 0.35rem 0.95rem;
            border-radius: 50px;
            color: #d1d5db;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .filter-chip:hover, .filter-chip.active {
            background: var(--brand-gradient);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px var(--brand-glow);
        }

        /* Poster Card */
        .poster-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .poster-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-highlight);
            box-shadow: 0 16px 30px -8px var(--brand-glow);
        }
        .poster-thumb-wrap {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: #000;
        }
        .poster-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .poster-card:hover .poster-thumb-wrap img {
            transform: scale(1.06);
        }
        .poster-overlay-top {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            z-index: 2;
        }
        .poster-overlay-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem 0.85rem 0.65rem;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.95) 100%);
            z-index: 2;
        }
        .poster-body {
            padding: 1.1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .poster-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.3rem;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .poster-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }

        /* Weekly Rank List */
        .rank-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: all 0.25s ease;
        }
        .rank-card:hover {
            transform: translateX(6px);
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
        }
        .rank-num {
            font-size: 2.2rem;
            font-weight: 900;
            font-style: italic;
            width: 48px;
            text-align: center;
            color: #4b5563;
        }
        .rank-card:nth-child(1) .rank-num {
            color: #ec4899;
            text-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
        }
        .rank-card:nth-child(2) .rank-num {
            color: #a855f7;
            text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
        }
        .rank-card:nth-child(3) .rank-num {
            color: #06b6d4;
            text-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
        }

        /* Showcase Carousel/Packs */
        .showcase-banner {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            background: var(--bg-card);
            position: relative;
            transition: all 0.3s ease;
        }
        .showcase-banner:hover {
            transform: translateY(-5px);
            border-color: var(--border-highlight);
            box-shadow: 0 20px 40px -10px var(--brand-glow);
        }
        .showcase-img-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }
        .showcase-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .showcase-banner:hover .showcase-img-wrap img {
            transform: scale(1.05);
        }
        .showcase-info {
            padding: 1.5rem;
        }

        /* Accordion Custom */
        .accordion-cinema .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 16px !important;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .accordion-cinema .accordion-button {
            background: transparent;
            color: var(--text-main);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 1.25rem 1.5rem;
            box-shadow: none;
        }
        .accordion-cinema .accordion-button:not(.collapsed) {
            background: rgba(168, 85, 247, 0.12);
            color: #ec4899;
        }
        .accordion-cinema .accordion-button::after {
            filter: invert(1);
        }
        .accordion-cinema .accordion-body {
            color: var(--text-muted);
            padding: 0 1.5rem 1.5rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Pagination & Footer */
        .pagination-cinema .page-link {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-light);
            color: var(--text-main);
            margin: 0 0.25rem;
            border-radius: 10px;
            padding: 0.6rem 1.1rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        .pagination-cinema .page-link:hover,
        .pagination-cinema .page-item.active .page-link {
            background: var(--brand-gradient);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 15px var(--brand-glow);
        }

        /* Footer Area */
        .footer-area {
            background: #070a12;
            border-top: 1px solid var(--border-light);
            padding: 4.5rem 0 2rem;
        }
        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-title {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
        }
        .footer-link {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .footer-link:hover {
            color: #ec4899;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 991.98px) {
            .section-title { font-size: 1.75rem; }
            .category-hero { padding: 3rem 0 2.5rem; }
            .rank-card { padding: 1rem; }
        }

/* 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}
