/* roulang page: index */
:root {
            --bg-base: #070B14;
            --bg-deep: #0B132B;
            --primary-cyan: #00F0FF;
            --primary-glow: rgba(0, 240, 255, 0.45);
            --accent-indigo: #4F46E5;
            --glass-card: rgba(16, 26, 54, 0.68);
            --glass-border: rgba(255, 255, 255, 0.08);
            --text-light: #F1F5F9;
            --text-muted: #94A3B8;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-base);
            color: var(--text-light);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            line-height: 1.68;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                              radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
            background-attachment: fixed;
        }
        .glass-panel {
            background: var(--glass-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
        }
        .glass-panel-hover {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-panel-hover:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.12);
        }
        .btn-cyan-glow {
            background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
            color: #030712;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
        }
        .btn-cyan-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
            color: #000;
        }
        .btn-outline-glow {
            border: 1px solid rgba(0, 240, 255, 0.4);
            color: #00F0FF;
            background: rgba(0, 240, 255, 0.04);
            transition: all 0.3s ease;
        }
        .btn-outline-glow:hover {
            background: rgba(0, 240, 255, 0.15);
            border-color: #00F0FF;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }
        .hero-diagonal {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-diagonal::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 11, 20, 0.82) 0%, rgba(7, 11, 20, 0.95) 100%);
            z-index: 1;
        }
        .hero-diagonal > * {
            position: relative;
            z-index: 2;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        }
        .badge-tag {
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.25);
            color: #00F0FF;
        }
        .table-custom tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.2s ease;
        }
        .table-custom tr:hover {
            background-color: rgba(0, 240, 255, 0.03);
        }
        .timeline-line::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 20px;
            width: 2px;
            background: linear-gradient(180deg, #00F0FF 0%, #4F46E5 100%);
        }
        @media (min-width: 768px) {
            .timeline-line::before {
                left: 50%;
                margin-left: -1px;
            }
        }
        details > summary {
            list-style: none;
            cursor: pointer;
        }
        details > summary::-webkit-details-marker {
            display: none;
        }

/* roulang page: category1 */
:root {
    --bg-base: #070B14;
    --bg-deep: #0B132B;
    --primary-cyan: #00F0FF;
    --primary-glow: rgba(0, 240, 255, 0.45);
    --accent-indigo: #4F46E5;
    --glass-card: rgba(16, 26, 54, 0.68);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-light: #F1F5F9;
    --text-muted: #94A3B8;
  }
  body {
    background-color: var(--bg-base);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.68;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                      radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
  }
  .btn-cyan-glow {
    background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
    color: #030712;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  }
  .btn-cyan-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    color: #000;
  }
  .btn-outline-glow {
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.04);
    transition: all 0.3s ease;
  }
  .btn-outline-glow:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  }
  .text-glow {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  }
  .badge-tag {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #00F0FF;
  }
  .glass-box {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .card-hover-zoom {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  }
  .card-hover-zoom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -5px rgba(0, 240, 255, 0.2);
  }
  .filter-chip.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: #00F0FF;
    color: #00F0FF;
    font-weight: 600;
  }

/* roulang page: category2 */
:root {
      --bg-base: #070B14;
      --bg-deep: #0B132B;
      --primary-cyan: #00F0FF;
      --primary-glow: rgba(0, 240, 255, 0.45);
      --accent-indigo: #4F46E5;
      --glass-card: rgba(16, 26, 54, 0.68);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text-light: #F1F5F9;
      --text-muted: #94A3B8;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-light);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      line-height: 1.68;
      overflow-x: hidden;
      background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
      background-attachment: fixed;
    }
    .btn-cyan-glow {
      background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
      color: #030712;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    }
    .btn-cyan-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
      color: #000;
    }
    .btn-outline-glow {
      border: 1px solid rgba(0, 240, 255, 0.4);
      color: #00F0FF;
      background: rgba(0, 240, 255, 0.04);
      transition: all 0.3s ease;
    }
    .btn-outline-glow:hover {
      background: rgba(0, 240, 255, 0.15);
      border-color: #00F0FF;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    .glass-box {
      background: var(--glass-card);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .text-glow {
      text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .badge-tag {
      background: rgba(0, 240, 255, 0.1);
      border: 1px solid rgba(0, 240, 255, 0.25);
      color: #00F0FF;
    }
    .poster-card {
      position: relative;
      transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 240, 255, 0.4);
      box-shadow: 0 12px 30px -10px rgba(0, 240, 255, 0.25);
    }
    .poster-card:hover .poster-overlay {
      opacity: 1;
    }
    .poster-overlay {
      opacity: 0;
      transition: opacity 0.3s ease;
      background: linear-gradient(0deg, rgba(7, 11, 20, 0.95) 0%, rgba(7, 11, 20, 0.4) 60%, transparent 100%);
    }
    .filter-item-active {
      background: rgba(0, 240, 255, 0.15);
      color: #00F0FF;
      border-color: rgba(0, 240, 255, 0.4);
    }

/* roulang page: category4 */
:root {
      --bg-base: #070B14;
      --bg-deep: #0B132B;
      --primary-cyan: #00F0FF;
      --primary-glow: rgba(0, 240, 255, 0.45);
      --accent-indigo: #4F46E5;
      --glass-card: rgba(16, 26, 54, 0.68);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text-light: #F1F5F9;
      --text-muted: #94A3B8;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-light);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      line-height: 1.68;
      overflow-x: hidden;
      background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
      background-attachment: fixed;
    }
    .btn-cyan-glow {
      background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
      color: #030712;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    }
    .btn-cyan-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
      color: #000;
    }
    .btn-outline-glow {
      border: 1px solid rgba(0, 240, 255, 0.4);
      color: #00F0FF;
      background: rgba(0, 240, 255, 0.04);
      transition: all 0.3s ease;
    }
    .btn-outline-glow:hover {
      background: rgba(0, 240, 255, 0.15);
      border-color: #00F0FF;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    .text-glow {
      text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .badge-tag {
      background: rgba(0, 240, 255, 0.1);
      border: 1px solid rgba(0, 240, 255, 0.25);
      color: #00F0FF;
    }
    .glass-box {
      background: var(--glass-card);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .media-card {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .media-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px -8px rgba(0, 240, 255, 0.25);
      border-color: rgba(0, 240, 255, 0.4);
    }
    .custom-scroll::-webkit-scrollbar {
      height: 4px;
    }
    .custom-scroll::-webkit-scrollbar-thumb {
      background: rgba(0, 240, 255, 0.3);
      border-radius: 4px;
    }

/* roulang page: category3 */
:root {
      --bg-base: #070B14;
      --bg-deep: #0B132B;
      --primary-cyan: #00F0FF;
      --primary-glow: rgba(0, 240, 255, 0.45);
      --accent-indigo: #4F46E5;
      --glass-card: rgba(16, 26, 54, 0.68);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text-light: #F1F5F9;
      --text-muted: #94A3B8;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-light);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      line-height: 1.68;
      overflow-x: hidden;
      background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
      background-attachment: fixed;
    }
    .btn-cyan-glow {
      background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
      color: #030712;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    }
    .btn-cyan-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
      color: #000;
    }
    .btn-outline-glow {
      border: 1px solid rgba(0, 240, 255, 0.4);
      color: #00F0FF;
      background: rgba(0, 240, 255, 0.04);
      transition: all 0.3s ease;
    }
    .btn-outline-glow:hover {
      background: rgba(0, 240, 255, 0.15);
      border-color: #00F0FF;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    .hero-diagonal {
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero-diagonal::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 11, 20, 0.85) 0%, rgba(7, 11, 20, 0.98) 100%);
      z-index: 1;
    }
    .hero-diagonal > * {
      position: relative;
      z-index: 2;
    }
    .text-glow {
      text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .badge-tag {
      background: rgba(0, 240, 255, 0.1);
      border: 1px solid rgba(0, 240, 255, 0.25);
      color: #00F0FF;
    }
    .glass-panel {
      background: var(--glass-card);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
    }
    .card-poster {
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    }
    .card-poster:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px -5px rgba(0, 240, 255, 0.25), 0 0 0 1px rgba(0, 240, 255, 0.35);
    }
    .rank-number {
      font-family: -apple-system, BlinkMacSystemFont, "Impact", sans-serif;
    }

/* roulang page: category5 */
:root {
      --bg-base: #070B14;
      --bg-deep: #0B132B;
      --primary-cyan: #00F0FF;
      --primary-glow: rgba(0, 240, 255, 0.45);
      --accent-indigo: #4F46E5;
      --glass-card: rgba(16, 26, 54, 0.68);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text-light: #F1F5F9;
      --text-muted: #94A3B8;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-light);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      line-height: 1.68;
      overflow-x: hidden;
      background-image: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
                        radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.08) 0%, transparent 45%);
      background-attachment: fixed;
    }
    .btn-cyan-glow {
      background: linear-gradient(135deg, #00F0FF 0%, #0284C7 100%);
      color: #030712;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    }
    .btn-cyan-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
      color: #000;
    }
    .btn-outline-glow {
      border: 1px solid rgba(0, 240, 255, 0.4);
      color: #00F0FF;
      background: rgba(0, 240, 255, 0.04);
      transition: all 0.3s ease;
    }
    .btn-outline-glow:hover {
      background: rgba(0, 240, 255, 0.15);
      border-color: #00F0FF;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    .hero-diagonal {
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero-diagonal::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 11, 20, 0.82) 0%, rgba(7, 11, 20, 0.95) 100%);
      z-index: 1;
    }
    .hero-diagonal > * {
      position: relative;
      z-index: 2;
    }
    .text-glow {
      text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .badge-tag {
      background: rgba(0, 240, 255, 0.1);
      border: 1px solid rgba(0, 240, 255, 0.25);
      color: #00F0FF;
    }
    .glass-panel {
      background: var(--glass-card);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .glass-panel-hover {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .glass-panel-hover:hover {
      border-color: rgba(0, 240, 255, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    }
    .filter-item-active {
      background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(79, 70, 229, 0.25) 100%);
      border-color: #00F0FF;
      color: #00F0FF;
    }
