/* roulang page: index */
:root {
            --brand-primary: #701E52;
            --brand-primary-hover: #581640;
            --brand-secondary: #E05D6E;
            --brand-accent: #EAA858;
            --brand-dark: #231820;
            --brand-body: #594E56;
            --brand-muted: #8C8089;
            --brand-bg: #FBF9FA;
            --brand-bg-alt: #F5EFF2;
            --brand-border: rgba(112, 30, 82, 0.12);
            --radius-card: 14px;
            --radius-btn: 30px;
            --shadow-card: 0 6px 20px rgba(107, 29, 79, 0.05);
            --shadow-hover: 0 14px 30px rgba(107, 29, 79, 0.12);
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--brand-bg);
            color: var(--brand-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--brand-dark);
            font-weight: 700;
            line-height: 1.35;
        }

        a {
            color: var(--brand-primary);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--brand-secondary);
        }

        /* Top Announcement Bar */
        .site-topbar {
            background: var(--brand-dark);
            color: #E2D9DF;
            font-size: 0.82rem;
            padding: 7px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .site-topbar a {
            color: var(--brand-accent);
        }

        /* Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--brand-border);
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 2px 10px rgba(35, 24, 32, 0.03);
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 1.28rem;
            color: var(--brand-primary) !important;
            letter-spacing: -0.5px;
        }
        .brand-icon-box {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            margin-right: 10px;
            box-shadow: 0 4px 10px rgba(112, 30, 82, 0.25);
        }
        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--brand-dark) !important;
            padding: 0.8rem 1rem !important;
            transition: var(--transition-smooth);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--brand-primary) !important;
        }

        /* Resource Dropdown Mega Menu */
        .dropdown-menu-custom {
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-card);
            box-shadow: 0 12px 35px rgba(35, 24, 32, 0.12);
            padding: 1.25rem;
            min-width: 320px;
            margin-top: 10px;
            background: #FFFFFF;
        }
        .dropdown-item-box {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition-smooth);
            color: var(--brand-body);
        }
        .dropdown-item-box:hover {
            background: var(--brand-bg-alt);
            color: var(--brand-primary);
        }
        .dropdown-item-box h6 {
            margin-bottom: 2px;
            font-size: 0.92rem;
        }
        .dropdown-item-box p {
            margin-bottom: 0;
            font-size: 0.78rem;
            color: var(--brand-muted);
        }

        /* Custom Button Architecture */
        .btn-custom-primary {
            background: linear-gradient(135deg, var(--brand-primary) 0%, #882563 100%);
            color: #FFFFFF !important;
            border: none;
            border-radius: var(--radius-btn);
            padding: 10px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 14px rgba(112, 30, 82, 0.25);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-custom-primary:hover {
            background: linear-gradient(135deg, var(--brand-primary-hover) 0%, #701E52 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(112, 30, 82, 0.35);
        }
        .btn-custom-outline {
            border: 1.5px solid var(--brand-primary);
            color: var(--brand-primary) !important;
            border-radius: var(--radius-btn);
            padding: 9px 22px;
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            transition: var(--transition-smooth);
        }
        .btn-custom-outline:hover {
            background: var(--brand-primary);
            color: #FFFFFF !important;
            transform: translateY(-2px);
        }

        /* Section Global Typography */
        .section-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(112, 30, 82, 0.08);
            color: var(--brand-primary);
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .section-header-wrap {
            margin-bottom: 2.5rem;
        }
        .section-desc-lead {
            font-size: 1rem;
            color: var(--brand-muted);
            max-width: 760px;
        }

        /* Custom Cards */
        .content-card {
            background: #FFFFFF;
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            height: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(112, 30, 82, 0.25);
        }
        .card-body-custom {
            padding: 1.6rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        /* Section-specific enhancements */
        .hero-section {
            background: linear-gradient(180deg, #FFFFFF 0%, #F5EFF2 100%);
            padding: 4.5rem 0 3.5rem 0;
            border-bottom: 1px solid var(--brand-border);
            position: relative;
        }
        .check-badge-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }
        .check-badge-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--brand-dark);
            font-size: 0.96rem;
        }
        .check-badge-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
            background: var(--brand-primary);
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: bold;
        }

        .calendar-item {
            background: #FFFFFF;
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-card);
            padding: 1.25rem;
            margin-bottom: 1rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
        }
        .calendar-item:hover {
            border-color: var(--brand-primary);
            box-shadow: var(--shadow-hover);
        }
        .calendar-date-box {
            min-width: 65px;
            height: 65px;
            background: var(--brand-bg-alt);
            border: 1px solid rgba(112, 30, 82, 0.15);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-right: 1.25rem;
            font-weight: 800;
            color: var(--brand-primary);
        }
        .calendar-date-box span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand-muted);
        }

        /* Metric Blocks */
        .stat-banner {
            background: linear-gradient(135deg, #3C0F2B 0%, #231820 100%);
            color: #FFFFFF;
            border-radius: 18px;
            padding: 3rem 2rem;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--brand-accent);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        /* Process Steps */
        .step-node {
            position: relative;
            background: #FFFFFF;
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            height: 100%;
        }
        .step-number-tag {
            width: 36px;
            height: 36px;
            background: var(--brand-secondary);
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        /* Footer */
        .site-footer {
            background: #1C121A;
            color: #9E929A;
            padding: 4rem 0 2rem 0;
            border-top: 3px solid var(--brand-primary);
        }
        .footer-title {
            color: #FFFFFF;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .footer-links li {
            margin-bottom: 0.65rem;
        }
        .footer-links a {
            color: #AEA3AA;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--brand-accent);
            padding-left: 3px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 3rem;
            padding-top: 1.5rem;
            font-size: 0.85rem;
        }

        @media (max-width: 991.98px) {
            .hero-section {
                padding: 3rem 0 2.5rem 0;
            }
            .stat-banner {
                padding: 2rem 1.25rem;
            }
            .stat-number {
                font-size: 1.9rem;
            }
        }

/* roulang page: category1 */
:root {
      --brand-primary: #701E52;
      --brand-primary-hover: #581640;
      --brand-secondary: #E05D6E;
      --brand-accent: #EAA858;
      --brand-dark: #231820;
      --brand-body: #594E56;
      --brand-muted: #8C8089;
      --brand-bg: #FBF9FA;
      --brand-bg-alt: #F5EFF2;
      --brand-border: rgba(112, 30, 82, 0.12);
      --radius-card: 14px;
      --radius-btn: 30px;
      --shadow-card: 0 6px 20px rgba(107, 29, 79, 0.05);
      --shadow-hover: 0 14px 30px rgba(107, 29, 79, 0.12);
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--brand-bg);
      color: var(--brand-body);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: var(--brand-primary);
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover {
      color: var(--brand-secondary);
    }
    img {
      max-width: 100%;
      height: auto;
    }

    /* Top Announcement Bar */
    .site-topbar {
      background: var(--brand-dark);
      color: #E2D9DF;
      font-size: 0.82rem;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .site-topbar a {
      color: var(--brand-accent);
    }

    /* Navigation */
    .site-header {
      background: #FFFFFF;
      border-bottom: 1px solid var(--brand-border);
      position: sticky;
      top: 0;
      z-index: 1020;
      box-shadow: 0 2px 10px rgba(35, 24, 32, 0.03);
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      font-weight: 800;
      font-size: 1.28rem;
      color: var(--brand-primary) !important;
      letter-spacing: -0.5px;
    }
    .brand-icon-box {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      margin-right: 10px;
      box-shadow: 0 4px 10px rgba(112, 30, 82, 0.25);
    }
    .nav-link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--brand-dark) !important;
      padding: 0.8rem 1rem !important;
      transition: var(--transition-smooth);
    }
    .nav-link:hover, .nav-link.active {
      color: var(--brand-primary) !important;
    }
    .nav-mega-dropdown {
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-card);
      box-shadow: 0 12px 35px rgba(35, 24, 32, 0.12);
      padding: 1.25rem;
      min-width: 340px;
      margin-top: 10px;
      background: #FFFFFF;
    }
    .mega-menu-item {
      display: block;
      padding: 10px 14px;
      border-radius: 8px;
      transition: var(--transition-smooth);
      color: var(--brand-body);
    }
    .mega-menu-item:hover {
      background: var(--brand-bg-alt);
      color: var(--brand-primary);
    }
    .mega-menu-item h6 {
      margin-bottom: 2px;
      font-size: 0.92rem;
      font-weight: 700;
    }
    .mega-menu-item p {
      margin-bottom: 0;
      font-size: 0.78rem;
      color: var(--brand-muted);
    }

    /* Custom Button Architecture */
    .btn-custom-primary {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #882563 100%);
      color: #FFFFFF !important;
      border: none;
      border-radius: var(--radius-btn);
      padding: 10px 24px;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 4px 14px rgba(112, 30, 82, 0.25);
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .btn-custom-primary:hover {
      background: linear-gradient(135deg, var(--brand-primary-hover) 0%, #701E52 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(112, 30, 82, 0.35);
    }
    .btn-custom-outline {
      border: 1.5px solid var(--brand-primary);
      color: var(--brand-primary) !important;
      border-radius: var(--radius-btn);
      padding: 9px 22px;
      font-weight: 600;
      font-size: 0.95rem;
      background: transparent;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .btn-custom-outline:hover {
      background: var(--brand-primary);
      color: #FFFFFF !important;
      transform: translateY(-2px);
    }

    /* Section Global Typography */
    .section-tag {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: 20px;
      background: rgba(112, 30, 82, 0.08);
      color: var(--brand-primary);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }
    .section-header-wrap {
      margin-bottom: 2.5rem;
    }
    .section-title {
      font-weight: 800;
      color: var(--brand-dark);
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
    }
    .section-desc-lead {
      font-size: 1rem;
      color: var(--brand-muted);
      max-width: 760px;
    }

    /* Custom Cards */
    .content-card {
      background: #FFFFFF;
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
      height: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .content-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(112, 30, 82, 0.25);
    }
    .card-body-custom {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-media-wrap {
      height: 180px;
      background: linear-gradient(135deg, #4A1235 0%, #701E52 50%, #E05D6E 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      color: #FFFFFF;
    }
    .card-media-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(35, 24, 32, 0.65);
      backdrop-filter: blur(4px);
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      color: #FFFFFF;
      font-weight: 600;
    }
    .card-media-meta {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 0.72rem;
      color: #FFFFFF;
    }

    /* Creator Profile Header (Blueprint) */
    .creator-hero-banner {
      background: linear-gradient(135deg, #3A0C2A 0%, #5E1744 55%, #8B265E 100%);
      border-radius: var(--radius-card);
      color: #FFFFFF;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(74, 18, 53, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .creator-hero-banner::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(224, 93, 110, 0.2) 0%, rgba(234, 168, 88, 0) 70%);
      pointer-events: none;
    }
    .creator-avatar-wrap {
      width: 90px;
      height: 90px;
      border-radius: 24px;
      background: linear-gradient(135deg, #E05D6E, #EAA858);
      padding: 3px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      flex-shrink: 0;
    }
    .creator-avatar-inner {
      width: 100%;
      height: 100%;
      background: #4A1235;
      border-radius: 21px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
    }
    .badge-metric {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(8px);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #F8F1F5;
    }

    /* Breadcrumbs */
    .custom-breadcrumb {
      font-size: 0.88rem;
      margin-bottom: 1.25rem;
    }
    .custom-breadcrumb a {
      color: var(--brand-muted);
    }
    .custom-breadcrumb a:hover {
      color: var(--brand-primary);
    }
    .custom-breadcrumb .breadcrumb-separator {
      margin: 0 8px;
      color: var(--brand-border);
    }

    /* Filter Matrix */
    .filter-card {
      background: #FFFFFF;
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-card);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      margin-bottom: 2.5rem;
    }
    .filter-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(112, 30, 82, 0.08);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      font-weight: 700;
      font-size: 0.86rem;
      color: var(--brand-dark);
      min-width: 78px;
    }
    .filter-item {
      font-size: 0.85rem;
      padding: 4px 12px;
      border-radius: 20px;
      color: var(--brand-body);
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .filter-item:hover {
      background: var(--brand-bg-alt);
      color: var(--brand-primary);
    }
    .filter-item.active {
      background: var(--brand-primary);
      color: #FFFFFF;
      font-weight: 600;
    }

    /* Top Leaderboard */
    .leaderboard-item {
      background: #FFFFFF;
      border: 1px solid var(--brand-border);
      border-radius: 12px;
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: var(--transition-smooth);
      margin-bottom: 0.9rem;
    }
    .leaderboard-item:hover {
      border-color: var(--brand-secondary);
      box-shadow: 0 4px 16px rgba(112, 30, 82, 0.08);
      transform: translateX(4px);
    }
    .leaderboard-rank {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
      margin-right: 15px;
      flex-shrink: 0;
    }
    .rank-top-1 {
      background: linear-gradient(135deg, #EAA858, #E05D6E);
      color: #FFFFFF;
    }
    .rank-top-2 {
      background: linear-gradient(135deg, #701E52, #8B265E);
      color: #FFFFFF;
    }
    .rank-top-3 {
      background: linear-gradient(135deg, #96356B, #B8477F);
      color: #FFFFFF;
    }
    .rank-normal {
      background: var(--brand-bg-alt);
      color: var(--brand-muted);
    }

    /* Syllabus Tree / Module Accordion */
    .outline-block {
      background: #FFFFFF;
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-card);
      overflow: hidden;
      margin-bottom: 1rem;
      box-shadow: var(--shadow-card);
    }
    .outline-header {
      padding: 1.2rem 1.5rem;
      background: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 700;
      color: var(--brand-dark);
      border-bottom: 1px solid rgba(112, 30, 82, 0.06);
    }
    .outline-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .outline-list li {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(112, 30, 82, 0.04);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.92rem;
    }
    .outline-list li:last-child {
      border-bottom: none;
    }

    /* Mini Card */
    .mini-topic-card {
      background: #FFFFFF;
      border: 1px solid var(--brand-border);
      border-radius: 12px;
      padding: 1.25rem;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .mini-topic-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: var(--brand-primary);
    }

    /* Specs & Guide */
    .guide-box {
      background: linear-gradient(145deg, #FFFFFF, var(--brand-bg-alt));
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-card);
      padding: 2rem;
      box-shadow: var(--shadow-card);
    }

    /* Subscription strip */
    .subscribe-strip {
      background: linear-gradient(135deg, var(--brand-dark) 0%, #461132 100%);
      border-radius: var(--radius-card);
      color: #FFFFFF;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(35, 24, 32, 0.15);
    }

    /* Footer */
    .site-footer {
      background: #1C131A;
      color: #C3B8BF;
      padding: 4.5rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.9rem;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 800;
      color: #FFFFFF;
    }
    .footer-title {
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .footer-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 24px;
      height: 2px;
      background: var(--brand-secondary);
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.65rem;
    }
    .footer-links a {
      color: #A69BA2;
      transition: var(--transition-smooth);
    }
    .footer-links a:hover {
      color: #FFFFFF;
      padding-left: 4px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      font-size: 0.82rem;
      color: #7D737A;
    }

    /* Pagination */
    .pagination-custom {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 2rem;
    }
    .page-item-custom {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--brand-border);
      background: #FFFFFF;
      color: var(--brand-body);
      font-weight: 600;
      transition: var(--transition-smooth);
    }
    .page-item-custom:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary);
    }
    .page-item-custom.active {
      background: var(--brand-primary);
      border-color: var(--brand-primary);
      color: #FFFFFF;
    }

    @media (max-width: 991.98px) {
      .creator-hero-banner {
        padding: 1.75rem;
      }
      .filter-card {
        padding: 1.2rem;
      }
      .subscribe-strip {
        padding: 1.8rem;
      }
    }
