/* roulang page: index */
:root {
            --color-primary: #DC2626;
            --color-primary-dark: #B91C1C;
            --color-primary-light: #EF4444;
            --color-accent: #F59E0B;
            --color-accent-light: #FBBF24;
            --color-bg-dark: #0F172A;
            --color-bg-dark-secondary: #1E293B;
            --color-bg-light: #F8FAFC;
            --color-text-primary: #1E293B;
            --color-text-secondary: #64748B;
            --color-text-light: #94A3B8;
            --color-white: #FFFFFF;
            --color-border: #E2E8F0;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-2xl: 1.75rem;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-xs: 0.75rem;
            --font-sm: 0.875rem;
            --font-base: 1rem;
            --font-lg: 1.125rem;
            --font-xl: 1.25rem;
            --font-2xl: 1.5rem;
            --font-3xl: 1.875rem;
            --font-4xl: 2.25rem;
            --font-5xl: 3rem;
            --font-6xl: 3.75rem;
            --max-width: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--color-text-primary);
            background-color: var(--color-white);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        /* Header & Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition-normal);
            height: 72px;
            display: flex;
            align-items: center;
        }

        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
            background: rgba(15, 23, 42, 0.98);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
            flex-shrink: 0;
        }

        .logo:hover {
            opacity: 0.85;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--color-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cbd5e1;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-links a.nav-cta {
            background: var(--color-primary);
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .nav-links a.nav-cta:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
            color: #fff;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            z-index: 1001;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #fff;
            border-radius: 2px;
            transition: all var(--transition-normal);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            padding: 1.5rem 1rem;
            gap: 0.5rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            display: block;
            padding: 0.9rem 1.25rem;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 500;
            color: #cbd5e1;
            transition: all var(--transition-fast);
            text-align: center;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .mobile-menu a.mobile-nav-cta {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-inner {
                padding: 0 1rem;
            }
        }

        @media (min-width: 1025px) {
            .mobile-menu {
                display: none !important;
            }
            .hamburger {
                display: none;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-position: center 30%;
            padding-top: 72px;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(15, 23, 42, 0.82) 0%,
                    rgba(15, 23, 42, 0.7) 40%,
                    rgba(15, 23, 42, 0.78) 70%,
                    rgba(15, 23, 42, 0.9) 100%);
            z-index: 1;
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            opacity: 0.5;
            background:
                radial-gradient(ellipse at 25% 20%, rgba(220, 38, 38, 0.25) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 40% 75%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 800px;
            padding: 2rem 1.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #f1f5f9;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
            letter-spacing: 0.02em;
        }

        .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 1.6s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
            }
        }

        .hero-title {
            font-size: clamp(2.2rem, 5.5vw, 4rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            letter-spacing: -0.03em;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .hero-title .highlight {
            color: var(--color-accent-light);
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #cbd5e1;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all var(--transition-normal);
            white-space: nowrap;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 10px 32px rgba(220, 38, 38, 0.5);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
        }

        .btn-gold {
            background: var(--color-accent);
            color: #0F172A;
            font-weight: 700;
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
        }

        .btn-gold:hover {
            background: var(--color-accent-light);
            box-shadow: 0 10px 32px rgba(245, 158, 11, 0.5);
            transform: translateY(-2px);
        }

        /* Section Common */
        .section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-primary);
            margin-bottom: 0.75rem;
            background: rgba(220, 38, 38, 0.08);
            padding: 0.35rem 1rem;
            border-radius: 50px;
        }

        .section-title {
            font-size: clamp(1.6rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--color-text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .section-dark {
            background: var(--color-bg-dark);
            color: #fff;
        }
        .section-dark .section-title {
            color: #fff;
        }
        .section-dark .section-desc {
            color: #94a3b8;
        }
        .section-dark .section-label {
            background: rgba(245, 158, 11, 0.15);
            color: var(--color-accent-light);
        }

        .section-gray {
            background: #f1f5f9;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.75rem;
        }

        .card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2rem 1.75rem;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
            border-color: #e2e8f0;
        }

        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            margin-bottom: 0.25rem;
        }

        .card-icon.red {
            background: #fef2f2;
            color: #DC2626;
        }
        .card-icon.blue {
            background: #eff6ff;
            color: #2563eb;
        }
        .card-icon.green {
            background: #f0fdf4;
            color: #16a34a;
        }
        .card-icon.amber {
            background: #fffbeb;
            color: #d97706;
        }
        .card-icon.purple {
            background: #faf5ff;
            color: #7c3aed;
        }

        .card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-text-primary);
            letter-spacing: -0.01em;
        }
        .card p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.65;
            flex-grow: 1;
        }

        /* Feature Cards with Image */
        .feature-card-img {
            background: #fff;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }
        .feature-card-img:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-5px);
        }
        .feature-card-img .card-img-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .feature-card-img .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .feature-card-img:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .feature-card-img .card-body {
            padding: 1.5rem 1.5rem 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .feature-card-img .card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .feature-card-img .card-body p {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
        }
        .feature-card-img .card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: 50px;
            background: #fef2f2;
            color: #DC2626;
            align-self: flex-start;
            letter-spacing: 0.03em;
        }

        /* Stats Section */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem 1rem;
            border-radius: var(--radius-xl);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-normal);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--color-accent-light);
            letter-spacing: -0.02em;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .stat-item {
                padding: 1.5rem 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
        }

        /* Process / Steps */
        .steps-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            counter-reset: step;
        }
        .step-item {
            position: relative;
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all var(--transition-normal);
            border: 1px solid transparent;
            counter-increment: step;
        }
        .step-item:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
            border-color: #e2e8f0;
        }
        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            letter-spacing: -0.02em;
        }
        .step-item h4 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }
        .step-item p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover {
            border-color: #cbd5e1;
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            background: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-primary);
            text-align: left;
            gap: 1rem;
            letter-spacing: -0.01em;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-question i {
            transition: transform var(--transition-normal);
            color: #94a3b8;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-normal);
            padding: 0 1.5rem;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.3rem;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            background-position: center 40%;
            padding: 6rem 0;
            text-align: center;
            overflow: hidden;
        }
        .cta-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.85);
            z-index: 1;
        }
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .cta-content h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        .cta-content p {
            color: #cbd5e1;
            font-size: 1.05rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Footer */
        .site-footer {
            background: var(--color-bg-dark);
            color: #cbd5e1;
            padding: 4rem 0 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand .footer-logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
            max-width: 280px;
        }
        .footer-links h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: #94a3b8;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .footer-brand p {
                max-width: 100%;
                margin: 0 auto;
            }
            .footer-links ul {
                align-items: center;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .section {
                padding: 3.5rem 0;
            }
            .cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 1.25rem;
            }
            .feature-card-img .card-img-wrap {
                height: 170px;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 90vh;
            }
            .hero-title {
                font-size: 1.9rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .steps-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .faq-question {
                font-size: 0.9rem;
                padding: 1rem 1.2rem;
            }
            .faq-answer {
                font-size: 0.82rem;
            }
            .cta-section {
                padding: 4rem 0;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.35rem 0.85rem;
            }
            .card {
                padding: 1.5rem 1.25rem;
            }
            .feature-card-img .card-img-wrap {
                height: 150px;
            }
            .section-header {
                margin-bottom: 2rem;
            }
            .section {
                padding: 2.5rem 0;
            }
        }

        /* Focus visible */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
