/* roulang page: index */
:root {
            --bg-main: #0c0d12;
            --bg-card: #13151d;
            --accent-rose: #f43f5e;
            --accent-gold: #fbbf24;
            --text-silver: #94a3b8;
            --border-dim: rgba(255, 255, 255, 0.08);
        }
        body {
            background-color: var(--bg-main);
            color: #f8fafc;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
        }
        .hero-slant {
            clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
        }
        @media (max-width: 768px) {
            .hero-slant {
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
        }
        .custom-scrollbar::-webkit-scrollbar {
            height: 6px;
            width: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #0c0d12;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #27272a;
            border-radius: 3px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #3f3f46;
        }

/* roulang page: category1 */
:root {
      --bg-main: #0c0d12;
      --bg-card: #13151d;
      --accent-rose: #f43f5e;
      --accent-gold: #fbbf24;
      --text-silver: #94a3b8;
      --border-dim: rgba(255, 255, 255, 0.08);
    }
    body {
      background-color: var(--bg-main);
      color: #f8fafc;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    .custom-scrollbar::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
      background: #0c0d12;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #272a37;
      border-radius: 3px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
      background: #f43f5e;
    }
