/* roulang page: index */
:root {
      --primary: #059669;
      --primary-dark: #064e3b;
      --accent: #06b6d4;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --bg-base: #f8fafc;
      --border-color: #e2e8f0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      color: var(--text-main);
      background-color: var(--bg-base);
      overflow-x: hidden;
    }
    .custom-scrollbar::-webkit-scrollbar {
      height: 6px;
      width: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }
    .hero-bg-overlay {
      background: linear-gradient(135deg, rgba(11, 15, 25, 0.94) 0%, rgba(6, 78, 59, 0.88) 100%);
    }
    .badge-glow {
      box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
    }
