/* roulang page: index */
:root {
      --cinema-bg: #0b0f19;
      --cinema-deep: #111827;
      --cinema-card: rgba(22, 30, 49, 0.78);
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-indigo: #1e1b4b;
      --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
      --accent-orange: #f43f5e;
      --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.35);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--cinema-bg);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; transition: var(--transition); }
    a:hover { color: #818cf8; }
    img { max-width: 100%; height: auto; display: block; }

    /* Header & Navigation */
    .cinema-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--cinema-border);
      padding: 14px 0;
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--primary-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      gap: 28px;
    }
    .nav-menu li a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 4px;
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #fff;
    }
    .nav-menu li a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary-gradient);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-ghost-pill {
      padding: 9px 20px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-main);
      font-size: 0.88rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost-pill:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }
    .btn-gradient-pill {
      padding: 10px 24px;
      border-radius: 999px;
      background: var(--primary-gradient);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }
    .btn-gradient-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
      color: #fff;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Common Section Styles */
    section {
      padding: 85px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 48px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 999px;
      color: #a5b4fc;
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 780px;
      line-height: 1.7;
    }

    /* Custom Card Style */
    .cinema-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .cinema-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.4);
      box-shadow: var(--shadow-glow);
    }
    .badge-pill {
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
    .badge-orange { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }
    .badge-green { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

    /* 1. Hero Section - Group Sync Watching */
    .hero-section {
      padding: 100px 0 80px;
      background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
                  radial-gradient(circle at 10% 60%, rgba(244, 63, 94, 0.12) 0%, transparent 50%),
                  var(--cinema-bg);
      border-bottom: 1px solid var(--cinema-border);
    }
    .hero-h1 {
      font-size: 3.1rem;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff 30%, #cbd5e1 70%, #94a3b8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-p {
      font-size: 1.15rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .group-pass-box {
      background: rgba(30, 27, 75, 0.6);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .group-avatars {
      display: flex;
      align-items: center;
    }
    .group-avatars .avatar-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #1e1b4b;
      background: #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #cbd5e1;
      margin-left: -10px;
    }
    .group-avatars .avatar-icon:first-child { margin-left: 0; }
    .group-avatars .avatar-icon.highlight {
      background: var(--accent-gradient);
      color: #fff;
      font-weight: 700;
      font-size: 0.75rem;
    }
    .group-info-text {
      font-size: 0.92rem;
      color: #e2e8f0;
    }
    .group-info-text strong {
      color: #f43f5e;
      font-size: 1.1rem;
    }
    .hero-btn-group {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-poster-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--cinema-border);
      box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
    }
    .hero-poster-wrapper img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      filter: brightness(0.85);
      transition: transform 0.6s ease;
    }
    .hero-poster-wrapper:hover img {
      transform: scale(1.03);
    }
    .hero-poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
    }
    .hero-kpi-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 18px;
      border-radius: var(--radius-md);
      text-align: right;
    }
    .hero-kpi-badge .val {
      font-size: 1.4rem;
      font-weight: 800;
      color: #38bdf8;
      line-height: 1;
    }
    .hero-kpi-badge .lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* 2. Core Dashboard KPI */
    .dashboard-section {
      background: #0d1322;
      border-bottom: 1px solid var(--cinema-border);
      padding: 60px 0;
    }
    .kpi-card {
      padding: 26px;
      background: rgba(22, 30, 49, 0.6);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    .kpi-card:hover {
      border-color: rgba(99, 102, 241, 0.5);
      background: rgba(30, 41, 59, 0.8);
      transform: translateY(-4px);
    }
    .kpi-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .kpi-head i {
      font-size: 1.5rem;
      color: #818cf8;
    }
    .kpi-value {
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .kpi-label {
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    /* 3. Service Matrix */
    .matrix-card {
      padding: 30px;
      border-radius: var(--radius-md);
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .matrix-card .matrix-img {
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 20px;
      height: 180px;
    }
    .matrix-card .matrix-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .matrix-card:hover .matrix-img img {
      transform: scale(1.05);
    }
    .matrix-title {
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .matrix-desc {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* 4. Channel Access Matrix */
    .channel-box {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 260px;
      border: 1px solid var(--cinema-border);
      display: block;
    }
    .channel-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.65);
      transition: all 0.5s ease;
    }
    .channel-box:hover img {
      filter: brightness(0.8);
      transform: scale(1.06);
    }
    .channel-content {
      position: absolute;
      inset: 0;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 65%, transparent 100%);
    }
    .channel-content h3 {
      font-size: 1.45rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .channel-content p {
      font-size: 0.88rem;
      color: #cbd5e1;
      margin-bottom: 14px;
    }
    .channel-btn {
      align-self: flex-start;
      font-size: 0.84rem;
      color: #a5b4fc;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }

    /* 5. Speed & Quality Compare */
    .compare-table-wrapper {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .compare-table th, .compare-table td {
      padding: 20px 24px;
      border-bottom: 1px solid var(--cinema-border);
    }
    .compare-table th {
      background: rgba(30, 27, 75, 0.5);
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
    }
    .compare-table tr:last-child td {
      border-bottom: none;
    }
    .compare-table td.brand-col {
      background: rgba(99, 102, 241, 0.08);
      color: #a5b4fc;
      font-weight: 600;
    }

    /* 6. Timeline Milestones */
    .timeline-container {
      position: relative;
      padding: 20px 0;
    }
    .timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: linear-gradient(180deg, rgba(99, 102, 241, 0.8) 0%, rgba(244, 63, 94, 0.6) 100%);
      transform: translateX(-50%);
    }
    .timeline-item {
      position: relative;
      margin-bottom: 40px;
    }
    .timeline-content {
      width: 45%;
      padding: 24px;
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
    }
    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: auto;
    }
    .timeline-dot {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #6366f1;
      border: 4px solid #0f172a;
      box-shadow: 0 0 12px #6366f1;
    }
    .timeline-date {
      font-size: 0.85rem;
      font-weight: 700;
      color: #38bdf8;
      margin-bottom: 6px;
    }
    .timeline-title {
      font-size: 1.18rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .timeline-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 7. Multi-device Viewing */
    .device-card {
      padding: 32px 24px;
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      text-align: center;
      transition: var(--transition);
      height: 100%;
    }
    .device-card:hover {
      border-color: rgba(139, 92, 246, 0.5);
      transform: translateY(-5px);
    }
    .device-icon-box {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: rgba(99, 102, 241, 0.12);
      color: #818cf8;
      font-size: 1.8rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .device-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .device-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 8. Articles & Reviews */
    .article-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(99, 102, 241, 0.4);
    }
    .article-thumb {
      height: 190px;
      overflow: hidden;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-card:hover .article-thumb img {
      transform: scale(1.06);
    }
    .article-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      font-size: 0.8rem;
      color: var(--text-dim);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .article-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .article-snippet {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 14px;
    }
    .article-link {
      font-size: 0.85rem;
      color: #818cf8;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* 9. Box Office & Trends */
    .ranking-box {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .rank-row {
      display: flex;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid var(--cinema-border);
      transition: var(--transition);
    }
    .rank-row:last-child { border-bottom: none; }
    .rank-row:hover {
      background: rgba(255, 255, 255, 0.02);
      padding-left: 8px;
      padding-right: 8px;
      border-radius: var(--radius-sm);
    }
    .rank-num {
      font-size: 1.4rem;
      font-weight: 800;
      width: 44px;
      color: var(--text-dim);
    }
    .rank-num.top-1 { color: #f43f5e; }
    .rank-num.top-2 { color: #fb923c; }
    .rank-num.top-3 { color: #facc15; }
    .rank-info {
      flex-grow: 1;
    }
    .rank-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .rank-meta {
      font-size: 0.82rem;
      color: var(--text-muted);
      display: flex;
      gap: 14px;
    }
    .rank-score {
      font-size: 1.25rem;
      font-weight: 800;
      color: #fb923c;
      margin-left: 16px;
    }

    /* 10. Platform Security & CDN Tech */
    .security-card {
      padding: 28px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      transition: var(--transition);
      height: 100%;
    }
    .security-card:hover {
      border-color: rgba(56, 189, 248, 0.4);
      box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.2);
    }
    .sec-icon {
      font-size: 2rem;
      color: #38bdf8;
      margin-bottom: 16px;
    }
    .sec-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .sec-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 11. Quick 3-Step Guide */
    .step-card {
      position: relative;
      padding: 32px 24px;
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      height: 100%;
    }
    .step-num-bg {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.04);
      line-height: 1;
      user-select: none;
    }
    .step-badge {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--primary-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    .step-title {
      font-size: 1.22rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .step-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 12. Technical FAQ Accordion */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      margin-bottom: 16px;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: rgba(139, 92, 246, 0.4);
    }
    .faq-question {
      padding: 22px 26px;
      font-size: 1.12rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-question i {
      color: #818cf8;
      transition: transform 0.3s ease;
    }
    .faq-answer {
      padding: 0 26px 22px;
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    /* 13. Form & Feedback Section */
    .form-box {
      background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: var(--shadow-card);
    }
    .form-input {
      background: rgba(15, 23, 42, 0.8) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      color: #fff !important;
      border-radius: var(--radius-sm) !important;
      padding: 14px 16px !important;
      height: auto !important;
      font-size: 0.95rem !important;
      box-shadow: none !important;
      margin-bottom: 18px !important;
      transition: var(--transition);
    }
    .form-input:focus {
      border-color: #818cf8 !important;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.35) !important;
      background: rgba(15, 23, 42, 0.95) !important;
    }
    .form-input::placeholder {
      color: #64748b;
    }

    /* Footer */
    .cinema-footer {
      background: #080b13;
      border-top: 1px solid var(--cinema-border);
      padding: 60px 0 30px;
    }
    .footer-col-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .footer-links a:hover {
      color: #818cf8;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      font-size: 0.86rem;
      color: var(--text-dim);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .hero-h1 { font-size: 2.5rem; }
      .timeline-container::before { left: 24px; }
      .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; }
      .timeline-dot { left: 24px; }
    }
    @media (max-width: 768px) {
      .cinema-header { padding: 12px 0; }
      .nav-menu { display: none; }
      .nav-actions .btn-ghost-pill { display: none; }
      .mobile-menu-btn { display: block; }
      .hero-h1 { font-size: 2rem; }
      .section-title { font-size: 1.8rem; }
      .form-box { padding: 26px 18px; }
      .hero-poster-wrapper img { height: 320px; }
      .mobile-nav-panel {
        display: none;
        background: #0b0f19;
        border-bottom: 1px solid var(--cinema-border);
        padding: 16px 20px;
      }
      .mobile-nav-panel.open { display: block; }
      .mobile-nav-panel a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
        color: var(--text-muted);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
    }

/* roulang page: category2 */
:root {
      --cinema-bg: #0b0f19;
      --cinema-deep: #111827;
      --cinema-card: rgba(22, 30, 49, 0.78);
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-indigo: #1e1b4b;
      --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
      --accent-orange: #f43f5e;
      --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.35);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * {
      box-sizing: border-box;
    }
    body {
      background-color: var(--cinema-bg);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: #818cf8;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Navigation */
    .cinema-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--cinema-border);
      padding: 14px 0;
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--primary-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      gap: 28px;
    }
    .nav-menu li a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 4px;
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #fff;
    }
    .nav-menu li a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary-gradient);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-ghost-pill {
      padding: 9px 20px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-main);
      font-size: 0.88rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost-pill:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }
    .btn-gradient-pill {
      padding: 10px 24px;
      border-radius: 999px;
      background: var(--primary-gradient);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }
    .btn-gradient-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
      color: #fff;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Common Section Styles */
    section {
      padding: 85px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 48px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 999px;
      color: #a5b4fc;
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 780px;
      line-height: 1.7;
    }
    .cinema-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .cinema-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.4);
      box-shadow: var(--shadow-glow);
    }
    .badge-pill {
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
    .badge-orange { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }
    .badge-green { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
    .badge-purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

    /* Category-2 Specific Header Banner */
    .movie-category-header {
      padding: 70px 0 50px;
      background: linear-gradient(180deg, rgba(30, 27, 75, 0.7) 0%, var(--cinema-bg) 100%),
                  url('/assets/images/ef8eb38684e9cb67.jpg') center/cover no-repeat;
      position: relative;
      border-bottom: 1px solid var(--cinema-border);
    }
    .movie-category-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.28) 0%, rgba(11, 15, 25, 0.92) 80%);
      pointer-events: none;
    }
    .movie-header-content {
      position: relative;
      z-index: 2;
    }
    .breadcrumbs-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 18px;
    }
    .breadcrumbs-wrap a:hover {
      color: #fff;
    }
    .breadcrumbs-wrap i {
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .category-h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .category-lead {
      font-size: 1.12rem;
      color: #cbd5e1;
      max-width: 820px;
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .category-meta-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .meta-chip {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      color: #e2e8f0;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .meta-chip i {
      color: #818cf8;
    }

    /* Section 2: Box Office & Metrics Cards */
    .metric-hero-card {
      background: rgba(30, 41, 59, 0.7);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .metric-hero-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary-gradient);
    }
    .metric-value-box {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 14px 0 8px;
    }
    .metric-number {
      font-size: 2.6rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
    }
    .metric-unit {
      color: #f43f5e;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .metric-note {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Section 3: Movie Main Grid */
    .movie-poster-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .movie-poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.45);
      box-shadow: var(--shadow-glow);
    }
    .poster-media-box {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #1e293b;
    }
    .poster-media-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .movie-poster-card:hover .poster-media-box img {
      transform: scale(1.06);
    }
    .poster-media-box .corner-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
    }
    .poster-media-box .rating-tag {
      position: absolute;
      bottom: 12px;
      left: 12px;
      z-index: 3;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #fbbf24;
      display: flex;
      align-items: center;
      gap: 4px;
      border: 1px solid rgba(251, 191, 36, 0.3);
    }
    .movie-card-info {
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .movie-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-card-cast {
      font-size: 0.82rem;
      color: var(--text-dim);
      margin-bottom: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-card-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 12px;
    }
    .play-link-btn {
      color: #818cf8;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .play-link-btn:hover {
      color: #c084fc;
    }

    /* Section 4: Special Collection Banner */
    .feature-collection-box {
      background: linear-gradient(135deg, rgba(30, 27, 75, 0.85) 0%, rgba(17, 24, 39, 0.95) 100%),
                  url('/assets/images/30bc18b9fcce0d8b.jpg') center/cover no-repeat;
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: var(--radius-lg);
      padding: 48px;
      position: relative;
      overflow: hidden;
    }
    .feature-collection-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 90% 10%, rgba(244, 63, 94, 0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Section 5: Codec & Specs Comparison */
    .spec-table-wrap {
      background: rgba(30, 41, 59, 0.6);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow-x: auto;
      box-shadow: var(--shadow-card);
    }
    .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      font-size: 0.92rem;
      text-align: left;
    }
    .spec-table th {
      background: rgba(15, 23, 42, 0.85);
      color: #e2e8f0;
      font-weight: 700;
      padding: 16px 20px;
      border-bottom: 1px solid var(--cinema-border);
    }
    .spec-table td {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
    }
    .spec-table tr:hover td {
      background: rgba(99, 102, 241, 0.05);
      color: #fff;
    }
    .spec-table .highlight-col {
      color: #60a5fa;
      font-weight: 600;
    }

    /* Section 6: Home Theater Setup Guide */
    .gear-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      padding: 30px;
      height: 100%;
      transition: var(--transition);
    }
    .gear-card:hover {
      border-color: rgba(99, 102, 241, 0.35);
      transform: translateY(-4px);
    }
    .gear-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.25);
      color: #818cf8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    /* Section 7: Live Release Notification & Subscribe */
    .notify-banner-card {
      background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
      border: 1px solid rgba(99, 102, 241, 0.35);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.25);
    }
    .notify-input-group {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .notify-input {
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 12px 24px;
      color: #fff;
      font-size: 0.95rem;
      flex-grow: 1;
      outline: none;
      transition: var(--transition);
    }
    .notify-input:focus {
      border-color: #818cf8;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
    }

    /* Footer */
    .cinema-footer {
      background: var(--cinema-deep);
      border-top: 1px solid var(--cinema-border);
      padding: 70px 0 35px;
      color: var(--text-muted);
    }
    .footer-col-title {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: -0.3px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links li a {
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-links li a:hover {
      color: #fff;
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 50px;
      padding-top: 25px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-dim);
    }

    /* Responsive Queries */
    @media screen and (max-width: 1024px) {
      .category-h1 {
        font-size: 2.2rem;
      }
      .feature-collection-box {
        padding: 32px;
      }
    }
    @media screen and (max-width: 768px) {
      .nav-menu, .nav-actions .btn-ghost-pill, .nav-actions .btn-gradient-pill {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .category-h1 {
        font-size: 1.85rem;
      }
      .category-lead {
        font-size: 0.98rem;
      }
      .notify-input-group {
        flex-direction: column;
      }
      .notify-banner-card {
        padding: 24px;
      }
      section {
        padding: 55px 0;
      }
    }
    @media screen and (max-width: 520px) {
      .metric-hero-card {
        padding: 20px 16px;
      }
      .metric-number {
        font-size: 2.1rem;
      }
    }

/* roulang page: category1 */
:root {
        --cinema-bg: #0b0f19;
        --cinema-deep: #111827;
        --cinema-card: rgba(22, 30, 49, 0.78);
        --cinema-border: rgba(255, 255, 255, 0.08);
        --cinema-indigo: #1e1b4b;
        --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
        --accent-orange: #f43f5e;
        --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
        --text-main: #f8fafc;
        --text-muted: #94a3b8;
        --text-dim: #64748b;
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
        --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.35);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; }
    body {
        background-color: var(--cinema-bg);
        color: var(--text-main);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        margin: 0;
        padding: 0;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    a:hover { color: #818cf8; }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; margin: 0; padding: 0; }

    /* Header & Navigation */
    .cinema-header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: rgba(11, 15, 25, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--cinema-border);
        padding: 14px 0;
        transition: var(--transition);
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.45rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: #fff;
    }
    .brand-logo .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }
    .brand-logo span {
        background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        gap: 28px;
    }
    .nav-menu li a {
        font-size: 0.96rem;
        font-weight: 500;
        color: var(--text-muted);
        padding: 6px 4px;
        position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: #fff;
    }
    .nav-menu li a.active::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .btn-ghost-pill {
        padding: 9px 20px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-main);
        font-size: 0.88rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .btn-ghost-pill:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.35);
        color: #fff;
    }
    .btn-gradient-pill {
        padding: 10px 24px;
        border-radius: 999px;
        background: var(--primary-gradient);
        color: #fff;
        font-size: 0.88rem;
        font-weight: 600;
        box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
    }
    .btn-gradient-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
        color: #fff;
    }
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Common Section Styles */
    section {
        padding: 75px 0;
        position: relative;
    }
    .section-header {
        margin-bottom: 38px;
    }
    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 14px;
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 999px;
        color: #a5b4fc;
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    .section-title {
        font-size: 2.1rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    .section-desc {
        font-size: 1.02rem;
        color: var(--text-muted);
        max-width: 820px;
        line-height: 1.7;
    }
    .cinema-card {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-card);
        position: relative;
    }
    .cinema-card:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: var(--shadow-glow);
    }
    .badge-pill {
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
    .badge-orange { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }
    .badge-green { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
    .badge-purple { background: rgba(139, 92, 246, 0.2); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.3); }

    /* Breadcrumbs */
    .cinema-breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.88rem;
        color: var(--text-dim);
        margin-bottom: 20px;
    }
    .cinema-breadcrumbs a { color: var(--text-muted); }
    .cinema-breadcrumbs a:hover { color: #fff; }
    .cinema-breadcrumbs span.current { color: #a5b4fc; }

    /* 1. Category Header Section (Compliance & Trust Hero) */
    .cat-header-section {
        padding: 50px 0 60px;
        background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 65%),
                    linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, var(--cinema-bg) 100%);
        border-bottom: 1px solid var(--cinema-border);
    }
    .cat-hero-panel {
        background: rgba(30, 41, 59, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 40px;
        position: relative;
        overflow: hidden;
    }
    .cat-hero-panel::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; height: 3px;
        background: var(--primary-gradient);
    }
    .cat-title {
        font-size: 2.6rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .cat-lead {
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 28px;
        max-width: 900px;
    }
    .trust-checklist {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 28px;
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .check-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.92rem;
        color: #e2e8f0;
        font-weight: 500;
    }
    .check-item i {
        color: #10b981;
        font-size: 1rem;
    }
    .hero-actions-row {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    /* 2. Filter Matrix Panel */
    .filter-matrix-section {
        padding: 30px 0 20px;
    }
    .filter-box {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        padding: 24px 28px;
    }
    .filter-row {
        display: flex;
        align-items: flex-start;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child { border-bottom: none; }
    .filter-label {
        width: 80px;
        flex-shrink: 0;
        color: var(--text-dim);
        font-size: 0.88rem;
        font-weight: 600;
        padding-top: 4px;
    }
    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        flex-grow: 1;
    }
    .pill-opt {
        display: inline-block;
        padding: 5px 14px;
        border-radius: 6px;
        font-size: 0.84rem;
        color: var(--text-muted);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
        cursor: pointer;
        transition: var(--transition);
    }
    .pill-opt:hover {
        background: rgba(99, 102, 241, 0.15);
        color: #c7d2fe;
    }
    .pill-opt.active {
        background: var(--primary-gradient);
        color: #fff;
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
    }

    /* 3. Core Drama Grid Section */
    .drama-grid-section { padding-top: 50px; }
    .drama-card {
        background: var(--cinema-deep);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        overflow: hidden;
        margin-bottom: 28px;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .drama-card:hover {
        transform: translateY(-6px);
        border-color: rgba(99, 102, 241, 0.45);
        box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.7);
    }
    .drama-poster-wrap {
        position: relative;
        aspect-ratio: 2/3;
        overflow: hidden;
        background: #0f172a;
    }
    .drama-poster-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .drama-card:hover .drama-poster-wrap img {
        transform: scale(1.05);
    }
    .poster-tag-top {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }
    .poster-score {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(8px);
        color: #fb923c;
        padding: 3px 8px;
        border-radius: 6px;
        font-weight: 800;
        font-size: 0.82rem;
        border: 1px solid rgba(251, 146, 60, 0.3);
        z-index: 2;
    }
    .poster-overlay-bottom {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 30px 12px 10px;
        background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.95) 100%);
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        z-index: 2;
    }
    .drama-episode-text {
        font-size: 0.78rem;
        color: #e2e8f0;
        font-weight: 500;
    }
    .drama-card-body {
        padding: 16px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }
    .drama-card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .drama-card-cast {
        font-size: 0.82rem;
        color: var(--text-dim);
        margin-bottom: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .drama-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.78rem;
        color: var(--text-muted);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 10px;
    }
    .load-more-wrap {
        text-align: center;
        padding: 25px 0 10px;
    }
    .btn-outline-wide {
        padding: 12px 36px;
        border-radius: 999px;
        border: 1px solid rgba(99, 102, 241, 0.4);
        background: rgba(99, 102, 241, 0.08);
        color: #e0e7ff;
        font-size: 0.95rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .btn-outline-wide:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    }

    /* 4. Schedule Calendar Section */
    .schedule-section {
        background: var(--cinema-deep);
        border-top: 1px solid var(--cinema-border);
        border-bottom: 1px solid var(--cinema-border);
    }
    .schedule-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin-bottom: 30px;
    }
    .day-tab-card {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-sm);
        padding: 14px 12px;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
    }
    .day-tab-card:hover {
        border-color: rgba(99, 102, 241, 0.3);
    }
    .day-tab-card.active {
        background: rgba(99, 102, 241, 0.18);
        border-color: #6366f1;
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
    }
    .day-tab-week {
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }
    .day-tab-date {
        font-size: 0.78rem;
        color: var(--text-dim);
    }
    .schedule-list-card {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        padding: 24px;
    }
    .schedule-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .schedule-item-row:last-child { border-bottom: none; }
    .sch-time {
        font-size: 0.95rem;
        font-weight: 700;
        color: #818cf8;
        width: 90px;
        flex-shrink: 0;
    }
    .sch-info {
        flex-grow: 1;
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .sch-title {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
    }
    .sch-status {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* 5. Deep Drama Review Section */
    .review-grid-section { padding-top: 80px; }
    .review-card {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        overflow: hidden;
        margin-bottom: 24px;
        transition: var(--transition);
        height: calc(100% - 24px);
        display: flex;
        flex-direction: column;
    }
    .review-card:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: var(--shadow-card);
    }
    .review-img-wrap {
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .review-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .review-card:hover .review-img-wrap img {
        transform: scale(1.06);
    }
    .review-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .review-heading {
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .review-desc {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.65;
        margin-bottom: 16px;
    }
    .review-meta {
        font-size: 0.8rem;
        color: var(--text-dim);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* 6. Technology & Playback Guarantee */
    .tech-guarantee-section {
        background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
                    var(--cinema-deep);
        border-top: 1px solid var(--cinema-border);
        border-bottom: 1px solid var(--cinema-border);
    }
    .guarantee-box {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-md);
        padding: 30px 24px;
        height: 100%;
        transition: var(--transition);
    }
    .guarantee-box:hover {
        border-color: rgba(99, 102, 241, 0.4);
        transform: translateY(-4px);
    }
    .guarantee-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(99, 102, 241, 0.12);
        color: #818cf8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
        border: 1px solid rgba(99, 102, 241, 0.25);
    }
    .guarantee-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }
    .guarantee-text {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* 7. Category FAQ Accordion */
    .faq-section { padding-top: 80px; padding-bottom: 90px; }
    .faq-wrapper { max-width: 900px; margin: 0 auto; }
    .faq-item {
        background: var(--cinema-card);
        border: 1px solid var(--cinema-border);
        border-radius: var(--radius-sm);
        margin-bottom: 16px;
        overflow: hidden;
        transition: var(--transition);
    }
    .faq-question {
        padding: 20px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .faq-question i {
        color: #818cf8;
        transition: transform 0.3s ease;
    }
    .faq-answer {
        padding: 0 24px 22px;
        font-size: 0.94rem;
        color: var(--text-muted);
        line-height: 1.75;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        display: none;
    }
    .faq-item.active {
        border-color: rgba(99, 102, 241, 0.4);
    }
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    .faq-item.active .faq-answer {
        display: block;
    }

    /* Footer & System */
    .cinema-footer {
        background: #070a12;
        border-top: 1px solid var(--cinema-border);
        padding: 70px 0 35px;
    }
    .footer-col-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
    }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #818cf8;
        padding-left: 4px;
    }
    .footer-bottom {
        margin-top: 45px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        font-size: 0.84rem;
        color: var(--text-dim);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .section-title { font-size: 1.85rem; }
        .cat-title { font-size: 2.1rem; }
        .nav-menu { gap: 18px; }
    }
    @media (max-width: 768px) {
        .nav-menu { display: none; }
        .mobile-menu-btn { display: block; }
        .nav-actions .btn-ghost-pill { display: none; }
        .cat-hero-panel { padding: 24px; }
        .cat-title { font-size: 1.7rem; }
        .trust-checklist { flex-direction: column; gap: 12px; }
        .schedule-timeline { grid-template-columns: repeat(4, 1fr); }
        .schedule-item-row { flex-direction: column; align-items: flex-start; gap: 6px; }
        .sch-time { width: auto; }
        section { padding: 50px 0; }
    }
    @media (max-width: 520px) {
        .schedule-timeline { grid-template-columns: repeat(2, 1fr); }
        .filter-row { flex-direction: column; gap: 8px; }
        .filter-label { width: 100%; }
    }

/* roulang page: category3 */
:root {
      --cinema-bg: #0b0f19;
      --cinema-deep: #111827;
      --cinema-card: rgba(22, 30, 49, 0.78);
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-indigo: #1e1b4b;
      --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
      --accent-orange: #f43f5e;
      --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.35);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      background-color: var(--cinema-bg);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    a:hover { color: #818cf8; }
    img { max-width: 100%; height: auto; display: block; }

    /* Header & Navigation */
    .cinema-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(11, 15, 25, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--cinema-border);
      padding: 14px 0;
      transition: var(--transition);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .brand-logo .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--primary-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }
    .brand-logo span {
      background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      gap: 28px;
    }
    .nav-menu li a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 4px;
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: #fff;
    }
    .nav-menu li a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary-gradient);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-ghost-pill {
      padding: 9px 20px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-main);
      font-size: 0.88rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost-pill:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }
    .btn-gradient-pill {
      padding: 10px 24px;
      border-radius: 999px;
      background: var(--primary-gradient);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }
    .btn-gradient-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
      color: #fff;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Common Section Styles */
    section {
      padding: 75px 0;
      position: relative;
    }
    .section-header {
      margin-bottom: 40px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 999px;
      color: #a5b4fc;
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 1.02rem;
      color: var(--text-muted);
      max-width: 800px;
      line-height: 1.7;
    }
    .cinema-card {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .cinema-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99, 102, 241, 0.4);
      box-shadow: var(--shadow-glow);
    }
    .badge-pill {
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
    .badge-orange { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }
    .badge-green { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
    .badge-purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

    /* Category 3 Specific Styles */
    /* 1. Category 3 Banner & Fission Hero */
    .cat-hero-banner {
      padding: 60px 0 50px;
      background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.22) 0%, transparent 60%),
                  radial-gradient(circle at 15% 70%, rgba(244, 63, 94, 0.15) 0%, transparent 50%),
                  #0b0f19;
      border-bottom: 1px solid var(--cinema-border);
    }
    .breadcrumb-box {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-dim);
      margin-bottom: 20px;
    }
    .breadcrumb-box a { color: var(--text-muted); }
    .breadcrumb-box a:hover { color: #fff; }
    .cat-h1 {
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .cat-h1-gradient {
      background: linear-gradient(135deg, #a78bfa 0%, #f43f5e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fission-box {
      background: rgba(30, 41, 59, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 26px 30px;
      margin-top: 24px;
      backdrop-filter: blur(10px);
    }
    .progress-outer {
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
      margin: 14px 0 10px;
      position: relative;
    }
    .progress-inner {
      height: 100%;
      background: var(--accent-gradient);
      border-radius: 999px;
      width: 78%;
      box-shadow: 0 0 12px rgba(244, 63, 94, 0.7);
    }

    /* 2. Schedule Grid */
    .schedule-tabs {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 12px;
      margin-bottom: 28px;
    }
    .schedule-tab-item {
      padding: 10px 22px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--cinema-border);
      color: var(--text-muted);
      font-size: 0.92rem;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 100px;
      transition: var(--transition);
    }
    .schedule-tab-item.active,
    .schedule-tab-item:hover {
      background: rgba(99, 102, 241, 0.15);
      border-color: #6366f1;
      color: #fff;
    }
    .schedule-tab-item .tab-sub {
      font-size: 0.75rem;
      color: var(--text-dim);
      margin-top: 4px;
    }
    .schedule-tab-item.active .tab-sub {
      color: #a5b4fc;
    }
    .anime-time-card {
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .anime-time-card .time-stamp {
      font-size: 1.15rem;
      font-weight: 800;
      color: #818cf8;
      min-width: 60px;
    }

    /* 3. Main Anime Content Grid */
    .anime-media-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-media-thumb {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #1e293b;
    }
    .anime-media-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .anime-card:hover .anime-media-thumb img {
      transform: scale(1.06);
    }
    .thumb-floating-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
    }
    .thumb-episode-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 600;
      color: #fff;
      z-index: 2;
    }
    .anime-media-body {
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .anime-item-title {
      font-size: 1.12rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .anime-item-meta {
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .anime-item-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .anime-item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid var(--cinema-border);
    }

    /* 4. Franchise & Studio Spotlights */
    .studio-card {
      padding: 24px;
      background: rgba(17, 24, 39, 0.8);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      transition: var(--transition);
      height: 100%;
    }
    .studio-card:hover {
      border-color: rgba(139, 92, 246, 0.4);
      background: rgba(30, 41, 59, 0.85);
    }
    .studio-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .studio-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #c084fc;
    }

    /* 5. Technology & Quality Assurance */
    .feature-point-card {
      padding: 26px;
      height: 100%;
    }
    .feature-point-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #818cf8;
      font-size: 1.35rem;
      margin-bottom: 18px;
    }

    /* 6. Anime FAQ Accordion */
    .accordion-item-box {
      background: var(--cinema-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--radius-md);
      margin-bottom: 16px;
      overflow: hidden;
      transition: var(--transition);
    }
    .accordion-item-box:hover {
      border-color: rgba(255, 255, 255, 0.18);
    }
    .accordion-header-btn {
      width: 100%;
      padding: 20px 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .accordion-header-btn i {
      color: #818cf8;
      transition: transform 0.3s;
    }
    .accordion-content-panel {
      padding: 0 24px 22px;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Footer */
    .cinema-footer {
      background: #070a12;
      border-top: 1px solid var(--cinema-border);
      padding: 70px 0 35px;
    }
    .footer-col-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-links a:hover {
      color: #818cf8;
    }
    .footer-bottom {
      margin-top: 50px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-dim);
    }

    /* Responsive */
    @media print, screen and (max-width: 64em) {
      .nav-menu { display: none; }
      .mobile-menu-btn { display: block; }
      .section-title { font-size: 1.85rem; }
      .cat-h1 { font-size: 2.1rem; }
    }
    @media print, screen and (max-width: 39.9375em) {
      section { padding: 50px 0; }
      .cat-hero-banner { padding: 45px 0 35px; }
      .cat-h1 { font-size: 1.75rem; }
      .schedule-tabs { gap: 8px; }
      .schedule-tab-item { min-width: 80px; padding: 8px 14px; font-size: 0.85rem; }
      .btn-ghost-pill { display: none; }
    }
