/* roulang page: index */
:root {
            --primary-deep: #0B1914;
            --primary-emerald: #064E3B;
            --accent-cyan: #06B6D4;
            --accent-green: #10B981;
        }
        body {
            background-color: #F8FAFC;
            color: #1E293B;
        }
        /* Grid pattern effect */
        .grid-overlay {
            background-image: radial-gradient(#10B981 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.03;
        }
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #F1F5F9;
        }
        ::-webkit-scrollbar-thumb {
            background: #CBD5E1;
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94A3B8;
        }
        /* Glint border effect */
        .glint-card:hover {
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px -10px rgba(6, 78, 59, 0.08);
        }
