/* roulang page: index */
:root {
      --primary: #4F46E5;
      --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
      --surface-bg: #F8FAFC;
    }
    body {
      background-color: var(--surface-bg);
      color: #1E293B;
      overflow-x: hidden;
    }
    .hero-glow {
      background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
    }
    .custom-scroll::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    .custom-scroll::-webkit-scrollbar-thumb {
      background: #CBD5E1;
      border-radius: 4px;
    }
