/* roulang page: index */
:root {
      --bg-main: #0c0d14;
      --bg-panel: #141622;
      --bg-panel-alt: #181a29;
      --brand-red: #e50914;
      --brand-pink: #ff2a5f;
      --brand-amber: #ffb800;
      --brand-purple: #8a2be2;
      --text-main: #f8fafc;
      --text-sub: #cbd5e1;
      --text-muted: #94a3b8;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* 影院暗调定制滚动条 */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #090a10;
    }
    ::-webkit-scrollbar-thumb {
      background: #25283b;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-red);
    }

    .glass-nav {
      background: rgba(12, 13, 20, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .poster-card {
      transition: var(--transition-smooth);
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -10px rgba(229, 9, 20, 0.25);
    }
    .poster-card:hover .poster-img {
      transform: scale(1.05);
    }

    .badge-amber {
      background: rgba(255, 184, 0, 0.15);
      color: #ffb800;
      border: 1px solid rgba(255, 184, 0, 0.3);
    }
    .badge-crimson {
      background: rgba(229, 9, 20, 0.2);
      color: #ff4d5a;
      border: 1px solid rgba(229, 9, 20, 0.35);
    }
    .badge-purple {
      background: rgba(138, 43, 226, 0.2);
      color: #c084fc;
      border: 1px solid rgba(138, 43, 226, 0.35);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-out;
    }
    .accordion-item.active .accordion-content {
      max-height: 280px;
    }
    .accordion-item.active .accordion-arrow {
      transform: rotate(180deg);
    }

/* roulang page: category1 */
:root {
    --bg-main: #0c0d14;
    --bg-panel: #141622;
    --bg-panel-alt: #181a29;
    --brand-red: #e50914;
    --brand-pink: #ff2a5f;
    --brand-amber: #ffb800;
    --brand-purple: #8a2be2;
    --text-main: #f8fafc;
    --text-sub: #cbd5e1;
    --text-muted: #94a3b8;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .glass-nav {
    background: rgba(12, 13, 20, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .poster-card {
    transition: var(--transition-smooth);
    position: relative;
  }
  .poster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(229, 9, 20, 0.25);
  }
  .poster-card:hover .poster-img {
    transform: scale(1.05);
  }
  .badge-amber {
    background: rgba(255, 184, 0, 0.15);
    color: #ffb800;
    border: 1px solid rgba(255, 184, 0, 0.3);
  }
  .badge-crimson {
    background: rgba(229, 9, 20, 0.2);
    color: #ff4d5a;
    border: 1px solid rgba(229, 9, 20, 0.35);
  }
  .badge-purple {
    background: rgba(138, 43, 226, 0.2);
    color: #c084fc;
    border: 1px solid rgba(138, 43, 226, 0.35);
  }
  .custom-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background: #0e1019;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #24283b;
    border-radius: 9999px;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #e50914;
  }

/* roulang page: category2 */
:root {
        --bg-main: #0c0d14;
        --bg-panel: #141622;
        --bg-panel-alt: #181a29;
        --brand-red: #e50914;
        --brand-pink: #ff2a5f;
        --brand-amber: #ffb800;
        --brand-purple: #8a2be2;
        --text-main: #f8fafc;
        --text-sub: #cbd5e1;
        --text-muted: #94a3b8;
        --border-subtle: rgba(255, 255, 255, 0.08);
        --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
        background-color: var(--bg-main);
        color: var(--text-main);
        font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        line-height: 1.75;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
    .glass-nav {
        background: rgba(12, 13, 20, 0.88);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-subtle);
    }
    .poster-card {
        transition: var(--transition-smooth);
        position: relative;
    }
    .poster-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 30px -10px rgba(229, 9, 20, 0.25);
    }
    .poster-card:hover .poster-img {
        transform: scale(1.05);
    }
    .badge-amber {
        background: rgba(255, 184, 0, 0.15);
        color: #ffb800;
        border: 1px solid rgba(255, 184, 0, 0.3);
    }
    .badge-crimson {
        background: rgba(229, 9, 20, 0.2);
        color: #ff4d5a;
        border: 1px solid rgba(229, 9, 20, 0.35);
    }
    .badge-purple {
        background: rgba(138, 43, 226, 0.2);
        color: #c084fc;
        border: 1px solid rgba(138, 43, 226, 0.35);
    }
    .badge-green {
        background: rgba(0, 230, 118, 0.15);
        color: #00e676;
        border: 1px solid rgba(0, 230, 118, 0.35);
    }
    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

/* roulang page: category3 */
:root {
      --bg-main: #0c0d14;
      --bg-panel: #141622;
      --bg-panel-alt: #181a29;
      --brand-red: #e50914;
      --brand-pink: #ff2a5f;
      --brand-amber: #ffb800;
      --brand-purple: #8a2be2;
      --text-main: #f8fafc;
      --text-sub: #cbd5e1;
      --text-muted: #94a3b8;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    .glass-nav {
      background: rgba(12, 13, 20, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-subtle);
    }
    .poster-card {
      transition: var(--transition-smooth);
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -10px rgba(229, 9, 20, 0.25);
    }
    .poster-card:hover .poster-img {
      transform: scale(1.05);
    }
    .badge-amber {
      background: rgba(255, 184, 0, 0.15);
      color: #ffb800;
      border: 1px solid rgba(255, 184, 0, 0.3);
    }
    .badge-crimson {
      background: rgba(229, 9, 20, 0.2);
      color: #ff4d5a;
      border: 1px solid rgba(229, 9, 20, 0.35);
    }
    .badge-purple {
      background: rgba(138, 43, 226, 0.2);
      color: #c084fc;
      border: 1px solid rgba(138, 43, 226, 0.35);
    }
    .custom-scrollbar::-webkit-scrollbar {
      height: 6px;
      width: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
      background: #0c0d14;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #24283b;
      border-radius: 9999px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
      background: #e50914;
    }
