/* ── Reset ─────────────────────────────────────── */
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }
        section { scroll-margin-top: 90px; }

        /* ── Tokens ─────────────────────────────────────── */
        :root {
            --bg:       #0a0a0f;
            --bg2:      #0f0d1a;
            --bg3:      #151225;
            --border:   rgba(124,58,237,0.12);
            --border2:  rgba(124,58,237,0.25);
            --p400:     #a78bfa;
            --p500:     #8b5cf6;
            --p600:     #7c3aed;
            --p700:     #6d28d9;
            --muted:    #6b6880;
            --sub:      #9391a8;
            --text:     #f0eeff;
            --font:     'Manrope', system-ui, sans-serif;
            --mono:     'JetBrains Mono', monospace;
        }

        body {
            font-family: var(--font);
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a { color: inherit; text-decoration: none; }
        ul { list-style: none; }

        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.35); border-radius: 3px; }

        .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

        /* Gradient text - original beautiful gradient (Fully Optimized) */
        .grad {
            background: none;
            -webkit-text-fill-color: #7c3aed;
            color: #7c3aed;
            text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);


        }
        @keyframes textShineHW {
            0% { filter: hue-rotate(-15deg) brightness(0.9); }
            100% { filter: hue-rotate(15deg) brightness(1.15); }
        }

        /* Section label pill */
        .pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 16px; border-radius: 100px;
            background: rgba(124,58,237,0.08);
            border: 1px solid rgba(124,58,237,0.2);
            font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
            color: var(--p400); text-transform: uppercase;
            margin-bottom: 24px;
        }
        .pill-dot { width: 6px; height: 6px; background: var(--p400); border-radius: 50%; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.6; } 100% { transform: scale(1); opacity: 1; } }

        /* ── Buttons ─────────────────────────────────────── */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 14px 32px; border-radius: 16px;
            font-weight: 700; font-size: 1rem; cursor: pointer;
            border: 1px solid transparent;
            transition: transform 250ms cubic-bezier(0.2, 0, 0, 1), box-shadow 250ms, background-color 250ms, border-color 250ms;

        }
        .btn:hover { transform: translateY(-4px); box-shadow: 0 10px 20px -5px rgba(124,58,237,0.3); }
        .btn:active { transform: translateY(0); }

        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .btn-primary:hover { 
            background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
            border-color: rgba(255,255,255,0.2);
        }

        .btn-ghost {
            background: rgba(15, 13, 26, 0.8);
            color: var(--text);
            border: 1px solid rgba(124,58,237,0.25);
        }
        .btn-ghost:hover { 
            background: rgba(124,58,237,0.1); 
            border-color: rgba(124,58,237,0.5); 
        }

        /* ── NAVBAR ─────────────────────────────────────── */
        .nav {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 999; padding: 18px 0;
            background: rgba(10,10,15,0.82);
            border-bottom: 1px solid transparent;
            transition: transform 250ms, background-color 250ms;
        }
        .nav.scrolled { padding: 12px 0; background: rgba(10,10,15,0.95); border-bottom-color: var(--border); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }

        .nav-logo {
            display: flex; align-items: center; gap: 10px;
            font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
        }
        .nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
        .nav-logo-dot {
            width: 8px; height: 8px; background: var(--p400); border-radius: 50%;
            margin-left: 2px; margin-bottom: 1px;
        }

        .nav-links { display: flex; gap: 32px; }
        .nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 150ms; }
        .nav-links a:hover { color: var(--text); }

        .nav-cta { display: flex; gap: 10px; align-items: center; }
        .nav-dash {
            padding: 8px 18px; border-radius: 9px;
            border: 1px solid var(--border2); color: var(--p400);
            font-size: 0.87rem; font-weight: 600;
            transition: background 200ms, color 200ms;
        }
        .nav-dash:hover { background: rgba(124,58,237,0.1); color: var(--text); }

        .nav-links a.active { color: var(--text); border-bottom: 2px solid var(--p500); padding-bottom: 4px; }

        /* Tab sections — all hidden by default except home */
        .tab-pane { 
            display: none !important; 
            position: relative; 
            z-index: 2; 
        }
        .tab-pane.active { display: block !important; }
        section.hero-section.tab-pane.active { display: flex !important; }
        /* Give non-hero active tabs space below navbar */
        .tab-pane.active:not(#home):not(#home-cta) { padding-top: 100px !important; }

        @keyframes fadeInTab {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-invite {
            padding: 8px 18px; border-radius: 9px;
            background: linear-gradient(135deg, var(--p600), var(--p500));
            color: #fff; font-size: 0.87rem; font-weight: 600;
            transition: opacity 200ms;
        }
        .nav-invite:hover { opacity: 0.85; }

        .hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

        /* ── HERO SECTION ─────────────────────── */
        .hero-section {
            position: relative;
            padding: 160px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-img-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: cover;
            opacity: 0.65; /* Make the anime character much more visible */
            pointer-events: none;
            animation: slowPan 30s ease-in-out infinite alternate;
            transform-origin: center;

        }
        @keyframes slowPan {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .hero-bg {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.95) 100%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-animated-overlay {
            position: fixed;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: 
                radial-gradient(ellipse at 30% 70%, rgba(10, 10, 15, 0.85) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(10, 10, 15, 0.85) 0%, transparent 50%);
            z-index: 1; /* Between background (0) and text (2) */
            pointer-events: none;
            animation: darkShadows 18s ease-in-out infinite alternate;

        }
        @keyframes darkShadows {
            0% { opacity: 0.6; }
            100% { opacity: 0.95; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-inner {
            position: relative; z-index: 2;
            display: flex; flex-direction: column;
            align-items: center; text-align: center;
            gap: 0;
        }

        .hero-heading {
            font-size: clamp(2.4rem, 5.5vw, 4.8rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.04em;
            margin: 0 auto 16px auto;
            max-width: 820px;
            text-shadow: 0 0 10px rgba(124, 58, 237, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: max-content;
        }

        .hero-float {
            animation: heroFloat 5s ease-in-out infinite;

        }
        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(-8px); opacity: 0.85; }
        }

        .hero-sub {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: var(--sub);
            max-width: 580px;
            line-height: 1.65;
            margin: 0 auto 28px auto;
            text-wrap: balance;
        }

        .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }

        /* Discord Presence Pill */
        .discord-presence {
            display: inline-flex; align-items: center;
            background: rgba(20, 20, 25, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 40px; padding: 6px 18px 6px 6px;
            gap: 12px; margin-bottom: 24px;
        }
        .dp-avatar { position: relative; width: 42px; height: 42px; }
        .dp-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .dp-status {
            position: absolute; bottom: -1px; right: -1px;
            width: 12px; height: 12px; background-color: #23a559;
            border: 2px solid #0d0d12; border-radius: 50%;
        }
        .dp-info { display: flex; flex-direction: column; justify-content: center; text-align: left; }
        .dp-name {
            font-size: 1.05rem; font-weight: 800; color: #fff;
            display: flex; align-items: center; gap: 6px; line-height: 1.1; margin-bottom: 2px;
        }
        .dp-bot-badge {
            background-color: #5865F2; color: #fff;
            font-size: 0.65rem; font-weight: 700;
            padding: 2px 4px; border-radius: 4px;
            display: inline-flex; align-items: center; gap: 3px;
        }
        .dp-bot-badge i { font-size: 0.55rem; }
        .dp-activity { font-size: 0.85rem; color: #a5b4fc; font-weight: 500; line-height: 1.1; transition: opacity 0.3s ease; }

        /* Floating stat chips */
        .hero-chips {
            display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
        }
        .chip {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 20px; border-radius: 12px;
            background: var(--bg2);
            border: 1px solid var(--border);
            font-size: 0.88rem; font-weight: 600;
            transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1.2), border-color 200ms;

        }
        .chip:hover {
            border-color: var(--p500);
            transform: translateY(-3px) scale(1.03);
        }
        .chip i { color: var(--p400); font-size: 1rem; }
        .chip-val { font-size: 1.1rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
        .chip-label { color: var(--muted); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

        /* ── STATS STRIP ─────────────────────────────────────── */
        .stats-strip {
            padding: 52px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .stats-strip-inner {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stat-item {
            display: flex; flex-direction: column; align-items: center;
            padding: 0 24px;
            border-right: 1px solid var(--border);
        }
        .stat-item:last-child { border-right: none; }
        .stat-num {
            font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em;
            line-height: 1; color: var(--text); margin-bottom: 6px;
        }
        .stat-lbl {
            font-size: 0.78rem; font-weight: 600; color: var(--muted);
            text-transform: uppercase; letter-spacing: 0.08em;
        }

        /* ── FEATURES ─────────────────────────────────────── */
        .features-section { padding: 120px 0; }

        .sec-head { text-align: center; margin-bottom: 70px; }
        .sec-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800; letter-spacing: -0.03em;
            line-height: 1.15; margin-bottom: 18px;
        }
        .sec-sub { font-size: 1.05rem; color: var(--sub); max-width: 520px; margin: 0 auto; line-height: 1.7; }

        .feat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }

        .feat-card {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 32px 28px;
            position: relative; overflow: hidden;
            transition: transform 300ms cubic-bezier(0.2, 0, 0, 1), background-color 300ms, border-color 300ms;

        }
        .feat-card::after {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
            opacity: 0; transition: opacity 250ms;
        }
        .feat-card::before {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
            transform: translateX(-100%);
            pointer-events: none;
            z-index: 1;
        }
        .feat-card:hover::before {
            animation: cardShine 0.75s ease-in-out forwards;
        }
        @keyframes cardShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .feat-card:hover { 
            background: rgba(124, 58, 237, 0.04); 
            border-color: #7c3aed; 
            transform: translateY(-5px);
        }
        .feat-card:hover .feat-icon {
            background: rgba(124, 58, 237, 0.2);
            border-color: rgba(124, 58, 237, 0.4);
        }
        .feat-card:hover::after { opacity: 1; }

        .feat-icon {
            width: 50px; height: 50px;
            background: rgba(124,58,237,0.1);
            border: 1px solid rgba(124,58,237,0.2);
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; color: var(--p400);
            margin-bottom: 22px;
        }

        .feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
        .feat-card p { font-size: 0.9rem; color: var(--sub); line-height: 1.65; }

        /* ── COMMANDS ─────────────────────────────────────── */
        .commands-section { padding: 80px 0 120px; }
        
        .cmd-filters {
            display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
        }
        .nav-cta {
            padding: 8px 18px;
            background: rgba(124,58,237,0.15);
            border: 1px solid var(--border2);
            color: var(--p400);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: transform 300ms cubic-bezier(0.2, 0, 0, 1), background-color 300ms, border-color 300ms;

        }.cmd-filter {
            background: rgba(255,255,255,0.05); border: 1px solid var(--border);
            color: var(--muted); padding: 8px 18px; border-radius: 100px;
            font-size: 0.85rem; font-weight: 600; cursor: pointer;
            transition: transform 200ms, border-color 200ms, background-color 200ms;
        }
        .cmd-filter:hover { background: rgba(255,255,255,0.1); color: var(--text); }
        .cmd-filter.active { background: var(--p600); color: #fff; border-color: var(--p500); }

        .cmd-category {
            background: var(--bg2); border: 1px solid var(--border);
            border-radius: 16px; padding: 28px; margin-bottom: 24px;
            transition: opacity 300ms, transform 300ms;
        }
        .cmd-cat-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
        .cmd-cat-icon {
            width: 44px; height: 44px; background: rgba(124,58,237,0.1);
            border: 1px solid rgba(124,58,237,0.2); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: var(--p400); font-size: 1.1rem; flex-shrink: 0;
        }
        .cmd-cat-title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
        .cmd-cat-sub { font-size: 0.85rem; color: var(--muted); }

        .cmd-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
        }
        .cmd-card {
            background: var(--bg3); border: 1px solid var(--border);
            border-radius: 10px; padding: 16px;
            transition: background-color 200ms, border-color 200ms;
        }
        .cmd-card:hover { background: rgba(124,58,237,0.05); border-color: var(--border2); }
        .cmd-card-name {
            display: inline-block;
            font-family: var(--mono); color: #fff;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            padding: 4px 10px; border-radius: 6px;
            font-size: 0.85rem; font-weight: 700; margin-bottom: 10px;
        }
        .cmd-card-desc { font-size: 0.8rem; color: var(--sub); line-height: 1.5; }

        /* ── CTA ─────────────────────────────────────── */
        .cta-section { padding: 80px 0 120px; }

        .cta-box {
            position: relative;
            background: var(--bg2);
            border: 1px solid var(--border2);
            border-radius: 26px;
            padding: 100px 48px;
            text-align: center; overflow: hidden;
        }

        /* ── STATS TAB 'ONE SCREEN' FIX ── */
        body.stats-tab-active { display: flex; flex-direction: column; min-height: 100vh; }
        body.stats-tab-active #stats {
            flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
            padding-top: 120px; padding-bottom: 20px; border-bottom: none;
        }
        body.stats-tab-active #home-cta {
            padding-top: 20px; padding-bottom: 60px;
        }
        body.stats-tab-active #home-cta .cta-box {
            padding: 60px 30px;
        }
        .cta-box::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--p500), var(--p400), transparent);
        }
        /* dot grid inside cta */
        .cta-box::after {
            content: '';
            position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(139,92,246,0.06) 1.5px, transparent 1.5px);
            background-size: 28px 28px;
            pointer-events: none;
        }
        .cta-glow {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 600px; height: 300px;
            background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-inner { position: relative; z-index: 2; }
        .cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
        .cta-sub { font-size: 1.05rem; color: var(--sub); max-width: 440px; margin: 0 auto 44px; line-height: 1.7; }
        .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

        /* ── FOOTER ─────────────────────────────────────── */
        .footer {
            border-top: 1px solid var(--border);
            background: var(--bg2);
            padding: 72px 0 36px;
        }
        .footer-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 24px;
            margin-bottom: 56px;
        }
        .footer-brand-logo {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            font-weight: 800; font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-brand-logo img { width: 28px; height: 28px; border-radius: 7px; }
        .footer-brand-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; max-width: 320px; margin: 0 auto; }

        .footer-col h4 {
            font-size: 0.78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--text); margin-bottom: 20px;
        }
        .footer-col ul { display: flex; flex-direction: column; gap: 13px; }
        .footer-col a { font-size: 0.88rem; color: var(--muted); transition: color 150ms; }
        .footer-col a:hover { color: var(--p400); }

        .footer-bottom {
            padding-top: 28px;
            border-top: 1px solid var(--border);
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-copy { font-size: 0.82rem; color: var(--muted); }
        .footer-socials { display: flex; gap: 18px; }
        .footer-socials a { color: var(--muted); font-size: 1rem; transition: color 150ms; }
        .footer-socials a:hover { color: var(--p400); }

        /* ── ANIMATIONS ─────────────────────────────────────── */
        .fade-up {
            opacity: 0; transform: translateY(24px);
            animation: fuAnim 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes fuAnim { to { opacity: 1; transform: translateY(0); } }

        .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ─────────────────────────────────────── */
        @media (max-width: 900px) {
            .nav-links, .nav-cta { display: none; }
            .hamburger { display: block; }
            .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
            .stat-item { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--border); }
            .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
        .discord-presence {
            display: inline-flex; align-items: center; gap: 12px;
            background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            padding: 8px 16px 8px 8px; border-radius: 50px;
            margin-bottom: 30px;
        }
        .dp-avatar { position: relative; width: 36px; height: 36px; }
        .dp-avatar img { width: 100%; height: 100%; border-radius: 50%; }
        .dp-status {
            position: absolute; bottom: 0; right: 0; width: 10px; height: 10px;
            background: #43b581; border: 2px solid var(--bg1); border-radius: 50%;
        }
        .dp-name { font-size: 0.85rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; }
        .dp-bot-badge {
            background: var(--p600); color: #fff; font-size: 0.6rem;
            padding: 1px 5px; border-radius: 4px; font-weight: 700;
        }
        .dp-activity { font-size: 0.8rem; color: var(--muted); transition: opacity 300ms; }

        .pill {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2);
            padding: 6px 14px; border-radius: 100px;
            color: var(--p400); font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
        }
        .pill-dot { width: 6px; height: 6px; background: var(--p400); border-radius: 50%; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.6; } 100% { transform: scale(1); opacity: 1; } }


        .hero-heading { font-size: 2.5rem; }
            .cta-box { padding: 60px 22px; }
            .cmd-header, .cmd-list { padding-left: 22px; padding-right: 22px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; }
        }

        /* Extreme Optimized Professional Grid Background */
        .cyber-grid {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background-image: 
                linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1; /* Just above the image/dark shadows */
            pointer-events: none;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }
