/* roulang page: index */
:root {
      --cinema-bg-darkest: #0a0c10;
      --cinema-bg-main: #0f1115;
      --cinema-bg-card: #161922;
      --cinema-bg-card-alt: #1a1e29;
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-border-hover: rgba(245, 158, 11, 0.35);
      --cinema-primary: #f59e0b;
      --cinema-accent: #ff5722;
      --cinema-text-light: #f3f4f6;
      --cinema-text-muted: #9ca3af;
      --cinema-text-darker: #6b7280;
      --cinema-radius-sm: 8px;
      --cinema-radius: 14px;
      --cinema-radius-lg: 20px;
      --cinema-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
      --cinema-shadow-glow: 0 0 24px rgba(245, 158, 11, 0.22);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--cinema-bg-main);
      color: var(--cinema-text-light);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--cinema-primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    /* Toolbar Console Navigation */
    .cinema-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      background: rgba(15, 17, 21, 0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--cinema-border);
      height: 72px;
      display: flex;
      align-items: center;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #ffffff;
    }
    .brand-logo i {
      color: var(--cinema-primary);
      font-size: 1.5rem;
      filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 6px;
      letter-spacing: 0.5px;
    }
    .nav-tools-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      width: 220px;
      transition: all 0.3s ease;
    }
    .nav-tools-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--cinema-primary);
      outline: none;
      box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
      color: #fff;
    }
    .nav-links-wrap {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .nav-item-link {
      color: var(--cinema-text-muted);
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 6px 0;
    }
    .nav-item-link:hover,
    .nav-item-link.active {
      color: #ffffff;
    }
    .nav-item-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--cinema-primary);
      border-radius: 2px;
      box-shadow: 0 0 8px var(--cinema-primary);
    }
    .status-beacon {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: #10b981;
      padding: 4px 10px;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 20px;
      border: 1px solid rgba(16, 185, 129, 0.2);
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 6px #10b981;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }
    .cinema-btn-primary {
      background: linear-gradient(135deg, var(--cinema-primary) 0%, var(--cinema-accent) 100%);
      color: #0b0d12;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 30px;
      border: none;
      box-shadow: var(--cinema-shadow-glow);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cinema-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
      color: #000;
    }
    .cinema-btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-light);
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
    }
    .cinema-btn-outline:hover {
      border-color: var(--cinema-primary);
      color: var(--cinema-primary);
      background: rgba(245, 158, 11, 0.08);
    }
    /* Section Layouts */
    .section-spacing {
      padding: 85px 0;
      position: relative;
    }
    .section-title-wrap {
      margin-bottom: 48px;
    }
    .section-badge {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--cinema-primary);
      background: rgba(245, 158, 11, 0.12);
      border: 1px solid rgba(245, 158, 11, 0.25);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-heading {
      font-size: 2.2rem;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.5px;
      line-height: 1.3;
    }
    .section-subtext {
      color: var(--cinema-text-muted);
      font-size: 1rem;
      max-width: 680px;
      margin: 12px auto 0;
    }
    /* Cinema Custom Card */
    .cinema-card {
      background: linear-gradient(180deg, var(--cinema-bg-card) 0%, var(--cinema-bg-card-alt) 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 26px;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .cinema-card:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-5px);
      box-shadow: var(--cinema-shadow);
    }
    /* Hero Banner */
    .hero-stage {
      position: relative;
      min-height: 88vh;
      padding-top: 130px;
      padding-bottom: 80px;
      background: linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, #0f1115 100%), url('/assets/images/9b51f40f9c4fd5e6.jpg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--cinema-border);
    }
    .hero-lead-h1 {
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }
    .hero-desc {
      font-size: 1.12rem;
      line-height: 1.8;
      color: #d1d5db;
      margin-bottom: 30px;
    }
    .search-console-box {
      background: rgba(22, 25, 34, 0.85);
      border: 1px solid var(--cinema-border);
      backdrop-filter: blur(12px);
      border-radius: var(--cinema-radius);
      padding: 20px;
      box-shadow: var(--cinema-shadow);
    }
    .search-console-input {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: 12px 18px;
      border-radius: var(--cinema-radius-sm);
      font-size: 0.95rem;
    }
    .search-console-input:focus {
      background: rgba(0, 0, 0, 0.6);
      border-color: var(--cinema-primary);
      box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
      color: #fff;
    }
    /* Feature Matrix */
    .feature-icon-box {
      width: 54px;
      height: 54px;
      border-radius: 12px;
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cinema-primary);
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    /* Poster Cover Grid */
    .poster-wrap {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 2/3;
      background: #1e222d;
    }
    .poster-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .poster-wrap:hover .poster-img {
      transform: scale(1.06);
    }
    .poster-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--cinema-primary);
      padding: 2px 8px;
      border-radius: 6px;
      backdrop-filter: blur(4px);
    }
    .poster-score {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: linear-gradient(135deg, #e11d48, #be123c);
      font-size: 0.75rem;
      font-weight: 800;
      color: #fff;
      padding: 2px 8px;
      border-radius: 6px;
    }
    /* Terminal Device Card */
    .device-screen-mock {
      border-radius: var(--cinema-radius);
      overflow: hidden;
      border: 1px solid var(--cinema-border);
      box-shadow: var(--cinema-shadow);
      background: #11141a;
    }
    .device-screen-mock img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    /* Pricing Tier Table */
    .tier-card {
      background: linear-gradient(180deg, var(--cinema-bg-card) 0%, #13161f 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
    }
    .tier-card.featured {
      border-color: var(--cinema-primary);
      box-shadow: 0 0 30px rgba(245, 158, 11, 0.18);
      transform: scale(1.03);
    }
    .tier-price {
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      margin: 18px 0 6px;
    }
    .tier-price small {
      font-size: 0.95rem;
      color: var(--cinema-text-muted);
      font-weight: 400;
    }
    .tier-list {
      list-style: none;
      padding: 0;
      margin: 24px 0;
      text-align: left;
    }
    .tier-list li {
      padding: 8px 0;
      font-size: 0.9rem;
      color: var(--cinema-text-light);
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .tier-list li i {
      color: var(--cinema-primary);
    }
    /* Testimonial card */
    .testimonial-bubble {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      height: 100%;
    }
    .testimonial-rating {
      color: #f59e0b;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }
    /* Accordion FAQ */
    .accordion-item {
      background-color: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius-sm) !important;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .accordion-button {
      background-color: var(--cinema-bg-card);
      color: #fff;
      font-weight: 600;
      font-size: 1.05rem;
      box-shadow: none !important;
      padding: 18px 22px;
    }
    .accordion-button:not(.collapsed) {
      background-color: rgba(245, 158, 11, 0.08);
      color: var(--cinema-primary);
    }
    .accordion-button::after {
      filter: invert(1);
    }
    .accordion-body {
      background-color: var(--cinema-bg-card);
      color: var(--cinema-text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      padding: 18px 22px;
      border-top: 1px solid var(--cinema-border);
    }
    /* Footer */
    .cinema-footer {
      background: #090a0d;
      border-top: 1px solid var(--cinema-border);
      padding: 70px 0 30px;
      color: var(--cinema-text-darker);
    }
    .footer-col-title {
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--cinema-text-muted);
      font-size: 0.9rem;
    }
    .footer-links a:hover {
      color: var(--cinema-primary);
    }
    .footer-bottom-bar {
      margin-top: 50px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.85rem;
      text-align: center;
      color: var(--cinema-text-darker);
    }
    /* Media Queries */
    @media (max-width: 991.98px) {
      .hero-lead-h1 {
        font-size: 2.2rem;
      }
      .nav-tools-input {
        width: 150px;
      }
      .section-heading {
        font-size: 1.8rem;
      }
    }
    @media (max-width: 767.98px) {
      .cinema-navbar {
        height: 64px;
      }
      .hero-stage {
        padding-top: 100px;
      }
      .hero-lead-h1 {
        font-size: 1.85rem;
      }
      .tier-card.featured {
        transform: none;
      }
    }

/* roulang page: category2 */
:root {
            --cinema-bg-darkest: #0a0c10;
            --cinema-bg-main: #0f1115;
            --cinema-bg-card: #161922;
            --cinema-bg-card-alt: #1a1e29;
            --cinema-border: rgba(255, 255, 255, 0.08);
            --cinema-border-hover: rgba(245, 158, 11, 0.35);
            --cinema-primary: #f59e0b;
            --cinema-accent: #ff5722;
            --cinema-text-light: #f3f4f6;
            --cinema-text-muted: #9ca3af;
            --cinema-text-darker: #6b7280;
            --cinema-radius-sm: 8px;
            --cinema-radius: 14px;
            --cinema-radius-lg: 20px;
            --cinema-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
            --cinema-shadow-glow: 0 0 24px rgba(245, 158, 11, 0.22);
        }

        body {
            background-color: var(--cinema-bg-main);
            color: var(--cinema-text-light);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            font-size: 15px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover {
            color: var(--cinema-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 顶部工具栏导航 */
        .cinema-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(15, 17, 21, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--cinema-border);
            height: 72px;
            display: flex;
            align-items: center;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #ffffff;
        }
        .brand-logo i {
            color: var(--cinema-primary);
            font-size: 1.5rem;
            filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
        }
        .brand-badge {
            background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
            color: #000;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }
        .nav-tools-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--cinema-border);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            width: 220px;
            transition: all 0.3s ease;
        }
        .nav-tools-input:focus {
            background: rgba(255, 255, 255, 0.09);
            border-color: var(--cinema-primary);
            outline: none;
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
            color: #fff;
        }
        .nav-item-link {
            color: var(--cinema-text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 6px 0;
        }
        .nav-item-link:hover,
        .nav-item-link.active {
            color: #ffffff;
        }
        .nav-item-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--cinema-primary);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--cinema-primary);
        }
        .status-beacon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.25);
            color: #10b981;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 12px;
        }
        .status-dot {
            width: 6px;
            height: 6px;
            background-color: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 6px #10b981;
            animation: pulseDot 2s infinite ease-in-out;
        }
        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }
        .cinema-btn-primary {
            background: linear-gradient(135deg, var(--cinema-primary) 0%, var(--cinema-accent) 100%);
            color: #0b0d12;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            box-shadow: var(--cinema-shadow-glow);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .cinema-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
            color: #000;
        }

        /* 统一卡片与容器样式 */
        .cinema-card {
            background: linear-gradient(180deg, var(--cinema-bg-card) 0%, var(--cinema-bg-card-alt) 100%);
            border: 1px solid var(--cinema-border);
            border-radius: var(--cinema-radius);
            padding: 24px;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .cinema-card:hover {
            border-color: var(--cinema-border-hover);
            transform: translateY(-4px);
            box-shadow: var(--cinema-shadow);
        }

        .section-badge {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--cinema-primary);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.25);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .section-heading {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1.35;
        }
        .section-subtext {
            color: var(--cinema-text-muted);
            font-size: 0.95rem;
            margin-top: 8px;
        }

        /* 分类首屏：H1与面包屑控制条 */
        .category-header-wrap {
            padding-top: 110px;
            padding-bottom: 40px;
            background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
                        linear-gradient(180deg, rgba(22, 25, 34, 0.85) 0%, var(--cinema-bg-main) 100%);
            border-bottom: 1px solid var(--cinema-border);
        }
        .breadcrumb-item a {
            color: var(--cinema-text-muted);
            font-size: 0.9rem;
        }
        .breadcrumb-item.active {
            color: var(--cinema-primary);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--cinema-text-darker);
        }

        /* 剧集周历排期表样式 */
        .schedule-nav {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
        }
        .schedule-nav::-webkit-scrollbar {
            height: 4px;
        }
        .schedule-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }
        .schedule-day-btn {
            background: var(--cinema-bg-card);
            border: 1px solid var(--cinema-border);
            border-radius: var(--cinema-radius);
            padding: 12px 20px;
            min-width: 120px;
            text-align: center;
            color: var(--cinema-text-muted);
            cursor: pointer;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }
        .schedule-day-btn:hover,
        .schedule-day-btn.active {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(255, 87, 34, 0.1) 100%);
            border-color: var(--cinema-primary);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
        }
        .schedule-day-btn .day-title {
            font-size: 1.05rem;
            font-weight: 700;
            display: block;
        }
        .schedule-day-btn .day-sub {
            font-size: 0.75rem;
            color: var(--cinema-text-darker);
            margin-top: 2px;
            display: block;
        }
        .schedule-day-btn.active .day-sub {
            color: var(--cinema-primary);
        }

        /* 剧集封面与进度卡片 */
        .drama-card {
            background: var(--cinema-bg-card);
            border: 1px solid var(--cinema-border);
            border-radius: var(--cinema-radius);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .drama-card:hover {
            transform: translateY(-6px);
            border-color: var(--cinema-border-hover);
            box-shadow: var(--cinema-shadow);
        }
        .drama-poster-wrap {
            position: relative;
            width: 100%;
            padding-top: 138%;
            background-color: #12141a;
            overflow: hidden;
        }
        .drama-poster-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .drama-card:hover .drama-poster-wrap img {
            transform: scale(1.06);
        }
        .drama-status-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 6px;
            z-index: 2;
        }
        .drama-rate-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
            color: #000;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 6px;
            z-index: 2;
        }
        .drama-info-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .drama-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .drama-meta {
            font-size: 0.8rem;
            color: var(--cinema-text-muted);
            margin-bottom: 12px;
        }
        .drama-progress-wrap {
            margin-top: auto;
        }
        .progress-bar-bg {
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--cinema-primary), var(--cinema-accent));
            border-radius: 4px;
        }
        .progress-text-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--cinema-text-darker);
        }

        /* 追剧热度榜单单行样式 */
        .rank-list-card {
            background: var(--cinema-bg-card);
            border: 1px solid var(--cinema-border);
            border-radius: var(--cinema-radius);
            padding: 20px;
        }
        .rank-item {
            display: flex;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.2s;
        }
        .rank-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .rank-item:first-child {
            padding-top: 0;
        }
        .rank-number {
            width: 32px;
            font-size: 1.25rem;
            font-weight: 900;
            font-style: italic;
            color: var(--cinema-text-darker);
            text-align: center;
            flex-shrink: 0;
        }
        .rank-item:nth-child(1) .rank-number { color: #f59e0b; }
        .rank-item:nth-child(2) .rank-number { color: #e2e8f0; }
        .rank-item:nth-child(3) .rank-number { color: #d97706; }
        .rank-trend-badge {
            font-size: 0.72rem;
            padding: 2px 6px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 2px;
            margin-left: auto;
        }
        .trend-up {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }

        /* 短剧专题宽卡片 */
        .miniseries-banner {
            background: linear-gradient(90deg, #181c26 0%, #12141c 100%);
            border: 1px solid var(--cinema-border);
            border-radius: var(--cinema-radius-lg);
            overflow: hidden;
            position: relative;
        }
        .miniseries-tag {
            background: rgba(255, 87, 34, 0.15);
            border: 1px solid rgba(255, 87, 34, 0.3);
            color: #ff5722;
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
        }

        /* 提醒组件与字幕设置模块 */
        .feature-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.25);
            color: var(--cinema-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        /* 页脚 */
        .cinema-footer {
            background: var(--cinema-bg-darkest);
            border-top: 1px solid var(--cinema-border);
            padding: 70px 0 30px;
        }
        .cinema-brand-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: #ffffff;
        }
        .cinema-brand-badge {
            background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
            color: #000;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
        }
        .hover-warning:hover {
            color: var(--cinema-primary) !important;
        }

/* roulang page: category1 */
:root {
      --cinema-bg-darkest: #0a0c10;
      --cinema-bg-main: #0f1115;
      --cinema-bg-card: #161922;
      --cinema-bg-card-alt: #1a1e29;
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-border-hover: rgba(245, 158, 11, 0.35);
      --cinema-primary: #f59e0b;
      --cinema-accent: #ff5722;
      --cinema-text-light: #f3f4f6;
      --cinema-text-muted: #9ca3af;
      --cinema-text-darker: #6b7280;
      --cinema-radius-sm: 8px;
      --cinema-radius: 14px;
      --cinema-radius-lg: 20px;
      --cinema-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
      --cinema-shadow-glow: 0 0 24px rgba(245, 158, 11, 0.22);
    }
    body {
      background-color: var(--cinema-bg-main);
      color: var(--cinema-text-light);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--cinema-primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Toolbar Console Navigation */
    .cinema-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      background: rgba(15, 17, 21, 0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--cinema-border);
      height: 72px;
      display: flex;
      align-items: center;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #ffffff;
    }
    .brand-logo i {
      color: var(--cinema-primary);
      font-size: 1.5rem;
      filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 6px;
      letter-spacing: 0.5px;
    }
    .nav-tools-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      width: 220px;
      transition: all 0.3s ease;
    }
    .nav-tools-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--cinema-primary);
      outline: none;
      box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
      color: #fff;
    }
    .nav-links-wrap {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .nav-item-link {
      color: var(--cinema-text-muted);
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 6px 0;
    }
    .nav-item-link:hover,
    .nav-item-link.active {
      color: #ffffff;
    }
    .nav-item-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--cinema-primary);
      border-radius: 2px;
      box-shadow: 0 0 8px var(--cinema-primary);
    }
    .status-beacon {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: #34d399;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 500;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      background-color: #10b981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10b981;
    }
    .cinema-btn-primary {
      background: linear-gradient(135deg, var(--cinema-primary) 0%, var(--cinema-accent) 100%);
      color: #0b0d12;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 30px;
      border: none;
      box-shadow: var(--cinema-shadow-glow);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cinema-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
      color: #000;
    }
    .cinema-btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-light);
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
    }
    .cinema-btn-outline:hover {
      border-color: var(--cinema-primary);
      color: var(--cinema-primary);
      background: rgba(245, 158, 11, 0.08);
    }

    /* Section Styles */
    .section-spacing {
      padding: 70px 0;
      position: relative;
    }
    .section-heading-sm {
      font-size: 1.65rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .section-desc-sm {
      color: var(--cinema-text-muted);
      font-size: 0.95rem;
      margin-bottom: 24px;
    }

    /* Category Hero Banner */
    .category-hero {
      margin-top: 72px;
      padding: 48px 0 32px;
      background: linear-gradient(180deg, #161922 0%, #0f1115 100%);
      border-bottom: 1px solid var(--cinema-border);
      position: relative;
      overflow: hidden;
    }
    .category-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb-cinema {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--cinema-text-darker);
      margin-bottom: 14px;
    }
    .breadcrumb-cinema a {
      color: var(--cinema-text-muted);
    }
    .breadcrumb-cinema a:hover {
      color: var(--cinema-primary);
    }
    .category-main-h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .category-intro {
      color: var(--cinema-text-muted);
      font-size: 0.95rem;
      max-width: 820px;
      line-height: 1.7;
    }
    .promo-tag {
      background: rgba(255, 87, 34, 0.15);
      border: 1px solid rgba(255, 87, 34, 0.35);
      color: #ff7849;
      font-size: 0.75rem;
      padding: 3px 10px;
      border-radius: 6px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* Filter Console */
    .filter-console-box {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      box-shadow: var(--cinema-shadow);
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
      flex-wrap: wrap;
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      color: var(--cinema-text-darker);
      font-size: 0.85rem;
      min-width: 60px;
      font-weight: 600;
    }
    .filter-tag {
      font-size: 0.85rem;
      color: var(--cinema-text-muted);
      padding: 3px 12px;
      border-radius: 16px;
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-tag:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }
    .filter-tag.active {
      background: rgba(245, 158, 11, 0.16);
      color: var(--cinema-primary);
      border-color: rgba(245, 158, 11, 0.3);
      font-weight: 600;
    }

    /* Poster Card Grid */
    .movie-poster-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .movie-poster-card:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-6px);
      box-shadow: var(--cinema-shadow);
    }
    .poster-img-wrap {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #000;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .movie-poster-card:hover .poster-img-wrap img {
      transform: scale(1.05);
    }
    .poster-badge-top {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
      color: var(--cinema-primary);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(245, 158, 11, 0.3);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .poster-score-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
    }
    .movie-card-body {
      padding: 14px 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .movie-card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-card-meta {
      font-size: 0.78rem;
      color: var(--cinema-text-darker);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Asymmetric Monthly Highlights */
    .schedule-hero-banner {
      background: linear-gradient(180deg, rgba(22, 25, 34, 0.6) 0%, rgba(15, 17, 21, 0.9) 100%), url('/assets/images/bf491f18a99b2e24.jpg') center center/cover no-repeat;
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 36px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 420px;
      position: relative;
    }
    .schedule-hero-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, #0f1115 15%, transparent 80%);
      pointer-events: none;
    }
    .schedule-hero-content {
      position: relative;
      z-index: 2;
    }
    .rank-list-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      height: 100%;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: all 0.2s ease;
    }
    .rank-item:last-child {
      border-bottom: none;
    }
    .rank-num {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--cinema-text-muted);
    }
    .rank-item:nth-child(1) .rank-num {
      background: linear-gradient(135deg, #f59e0b, #ff5722);
      color: #000;
    }
    .rank-item:nth-child(2) .rank-num {
      background: rgba(245, 158, 11, 0.25);
      color: var(--cinema-primary);
    }
    .rank-item:nth-child(3) .rank-num {
      background: rgba(245, 158, 11, 0.15);
      color: var(--cinema-primary);
    }
    .rank-info {
      flex-grow: 1;
    }
    .rank-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
    }
    .rank-sub {
      font-size: 0.78rem;
      color: var(--cinema-text-darker);
    }

    /* Wide Collection Cards */
    .collection-wide-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
    }
    .collection-wide-card:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-4px);
    }
    .collection-img-wrap {
      height: 180px;
      position: relative;
      overflow: hidden;
    }
    .collection-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .collection-wide-card:hover .collection-img-wrap img {
      transform: scale(1.05);
    }
    .collection-body {
      padding: 22px;
    }

    /* Specs Table */
    .specs-table-container {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
    }
    .specs-table {
      width: 100%;
      border-collapse: collapse;
      color: var(--cinema-text-light);
      font-size: 0.9rem;
    }
    .specs-table th {
      background: rgba(255, 255, 255, 0.03);
      padding: 16px 20px;
      font-weight: 600;
      color: #fff;
      border-bottom: 1px solid var(--cinema-border);
    }
    .specs-table td {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      color: var(--cinema-text-muted);
    }
    .specs-table tr:last-child td {
      border-bottom: none;
    }
    .specs-badge-hl {
      background: rgba(245, 158, 11, 0.12);
      color: var(--cinema-primary);
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* FAQ Accordion Custom */
    .cinema-accordion .accordion-item {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius) !important;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .cinema-accordion .accordion-button {
      background: var(--cinema-bg-card);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 18px 22px;
      box-shadow: none;
    }
    .cinema-accordion .accordion-button:not(.collapsed) {
      color: var(--cinema-primary);
      background: var(--cinema-bg-card-alt);
      border-bottom: 1px solid var(--cinema-border);
    }
    .cinema-accordion .accordion-button::after {
      filter: invert(1);
    }
    .cinema-accordion .accordion-body {
      background: var(--cinema-bg-card);
      color: var(--cinema-text-muted);
      font-size: 0.92rem;
      padding: 20px 22px;
      line-height: 1.75;
    }

    /* Footer */
    .cinema-footer {
      background: var(--cinema-bg-darkest);
      border-top: 1px solid var(--cinema-border);
      padding: 70px 0 35px;
    }
    .cinema-brand-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.5px;
    }
    .cinema-brand-badge {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.65rem;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 8px;
    }
    .hover-warning:hover {
      color: var(--cinema-primary) !important;
    }

    @media (max-width: 991px) {
      .category-main-h1 {
        font-size: 1.85rem;
      }
      .filter-console-box {
        padding: 16px;
      }
    }

/* roulang page: category3 */
:root {
      --cinema-bg-darkest: #0a0c10;
      --cinema-bg-main: #0f1115;
      --cinema-bg-card: #161922;
      --cinema-bg-card-alt: #1a1e29;
      --cinema-border: rgba(255, 255, 255, 0.08);
      --cinema-border-hover: rgba(245, 158, 11, 0.35);
      --cinema-primary: #f59e0b;
      --cinema-accent: #ff5722;
      --cinema-text-light: #f3f4f6;
      --cinema-text-muted: #9ca3af;
      --cinema-text-darker: #6b7280;
      --cinema-radius-sm: 8px;
      --cinema-radius: 14px;
      --cinema-radius-lg: 20px;
      --cinema-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
      --cinema-shadow-glow: 0 0 24px rgba(245, 158, 11, 0.22);
    }
    body {
      background-color: var(--cinema-bg-main);
      color: var(--cinema-text-light);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--cinema-primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    /* Toolbar Console Navigation */
    .cinema-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      background: rgba(15, 17, 21, 0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--cinema-border);
      height: 72px;
      display: flex;
      align-items: center;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #ffffff;
    }
    .brand-logo i {
      color: var(--cinema-primary);
      font-size: 1.5rem;
      filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 6px;
      letter-spacing: 0.5px;
    }
    .nav-tools-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      width: 220px;
      transition: all 0.3s ease;
    }
    .nav-tools-input:focus {
      background: rgba(255, 255, 255, 0.09);
      border-color: var(--cinema-primary);
      outline: none;
      box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
      color: #fff;
    }
    .nav-item-link {
      color: var(--cinema-text-muted);
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 6px 0;
    }
    .nav-item-link:hover,
    .nav-item-link.active {
      color: #ffffff;
    }
    .nav-item-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--cinema-primary);
      border-radius: 2px;
      box-shadow: 0 0 8px var(--cinema-primary);
    }
    .status-beacon {
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.78rem;
      color: #10b981;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      background-color: #10b981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10b981;
    }
    .cinema-btn-primary {
      background: linear-gradient(135deg, var(--cinema-primary) 0%, var(--cinema-accent) 100%);
      color: #0b0d12;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 30px;
      border: none;
      box-shadow: var(--cinema-shadow-glow);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cinema-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
      color: #000;
    }
    .cinema-btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-light);
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
    }
    .cinema-btn-outline:hover {
      border-color: var(--cinema-primary);
      color: var(--cinema-primary);
      background: rgba(245, 158, 11, 0.08);
    }
    /* Section Layouts */
    .section-spacing {
      padding: 70px 0;
      position: relative;
    }
    .section-badge {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--cinema-primary);
      background: rgba(245, 158, 11, 0.12);
      border: 1px solid rgba(245, 158, 11, 0.25);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-heading {
      font-size: 2.1rem;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.5px;
      line-height: 1.3;
    }
    .section-subtext {
      color: var(--cinema-text-muted);
      font-size: 0.98rem;
      max-width: 650px;
    }
    /* Bento Category Hero */
    .bento-header-hero {
      padding-top: 105px;
      padding-bottom: 40px;
      background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
                  linear-gradient(180deg, #12151c 0%, #0f1115 100%);
      border-bottom: 1px solid var(--cinema-border);
    }
    .bento-hero-main {
      background: linear-gradient(135deg, rgba(32, 36, 47, 0.9) 0%, rgba(22, 25, 34, 0.95) 100%),
                  url('/assets/images/bf491f18a99b2e24.jpg') center right/cover no-repeat;
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 38px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .bento-hero-main::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(90deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.6) 60%, rgba(15, 17, 21, 0.3) 100%);
      z-index: 1;
    }
    .bento-content {
      position: relative;
      z-index: 2;
    }
    .bento-hero-subcard {
      background: linear-gradient(180deg, var(--cinema-bg-card) 0%, var(--cinema-bg-card-alt) 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .bento-hero-subcard:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-3px);
    }
    .tag-filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--cinema-border);
    }
    .tag-filter-item {
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.84rem;
      font-weight: 500;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--cinema-border);
      color: var(--cinema-text-muted);
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .tag-filter-item:hover, .tag-filter-item.active {
      background: var(--cinema-primary);
      color: #0b0d12;
      border-color: var(--cinema-primary);
      font-weight: 700;
    }
    /* Cards */
    .cinema-card {
      background: linear-gradient(180deg, var(--cinema-bg-card) 0%, var(--cinema-bg-card-alt) 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 22px;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .cinema-card:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-5px);
      box-shadow: var(--cinema-shadow);
    }
    /* Dual Waterfall Cards */
    .waterfall-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .waterfall-card:hover {
      border-color: var(--cinema-primary);
      transform: translateY(-4px);
      box-shadow: var(--cinema-shadow);
    }
    .waterfall-thumb {
      width: 100%;
      height: 310px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .waterfall-card:hover .waterfall-thumb {
      transform: scale(1.03);
    }
    .waterfall-body {
      padding: 26px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    /* Anime Grid Item */
    .media-grid-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius-sm);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .media-grid-card:hover {
      border-color: var(--cinema-border-hover);
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    }
    .media-thumb-box {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #000;
    }
    .media-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .media-grid-card:hover .media-thumb-box img {
      transform: scale(1.05);
    }
    .media-badge-top {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(15, 17, 21, 0.85);
      backdrop-filter: blur(8px);
      color: var(--cinema-primary);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .media-badge-left {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 0.72rem;
      padding: 2px 7px;
      border-radius: 4px;
    }
    .media-body-box {
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }
    /* Studio Card */
    .studio-spec-card {
      background: linear-gradient(180deg, #191d27 0%, #13161f 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      padding: 26px;
      height: 100%;
      transition: border-color 0.3s ease;
    }
    .studio-spec-card:hover {
      border-color: rgba(245, 158, 11, 0.4);
    }
    .studio-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(245, 158, 11, 0.12);
      border: 1px solid rgba(245, 158, 11, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cinema-primary);
      font-size: 1.5rem;
      margin-bottom: 18px;
    }
    /* Clip Video Card */
    .clip-preview-card {
      background: var(--cinema-bg-card);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .clip-preview-card:hover {
      transform: translateY(-4px);
      border-color: var(--cinema-primary);
    }
    .clip-img-wrap {
      position: relative;
      height: 190px;
      overflow: hidden;
    }
    .clip-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .clip-play-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }
    .clip-preview-card:hover .clip-play-overlay {
      background: rgba(0,0,0,0.15);
    }
    .clip-play-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--cinema-primary);
      color: #0b0d12;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
    }
    /* Adaptive Specs Matrix */
    .specs-matrix-box {
      background: linear-gradient(135deg, rgba(22, 25, 34, 0.85) 0%, rgba(18, 21, 28, 0.95) 100%);
      border: 1px solid var(--cinema-border);
      border-radius: var(--cinema-radius-lg);
      padding: 36px;
    }
    .matrix-indicator {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--cinema-radius-sm);
      border: 1px solid var(--cinema-border);
      margin-bottom: 12px;
    }
    /* Offcanvas */
    .offcanvas-dark {
      background-color: #0f1115;
      color: #fff;
      border-left: 1px solid var(--cinema-border);
    }
    /* Cinema Footer */
    .cinema-footer {
      background-color: var(--cinema-bg-darkest);
      border-top: 1px solid var(--cinema-border);
      padding: 70px 0 35px;
    }
    .cinema-brand-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #ffffff;
      margin-right: 8px;
    }
    .cinema-brand-badge {
      background: linear-gradient(135deg, var(--cinema-primary), var(--cinema-accent));
      color: #000;
      font-size: 0.68rem;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
      align-self: center;
    }
    .hover-warning:hover {
      color: var(--cinema-primary) !important;
    }
    @media (max-width: 991px) {
      .cinema-navbar {
        height: 64px;
      }
      .bento-header-hero {
        padding-top: 86px;
      }
      .waterfall-thumb {
        height: 240px;
      }
    }

/* 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}
