:root {
    --bg-dark: #111111;
    --lime-accent: #A3E635; /* lime-400 */
}
html { color-scheme: dark; }
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--bg-dark);
    color: #d1d5db;
}
.text-lime-gradient {
    background: linear-gradient(90deg, #ECFCCB, var(--lime-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; text-fill-color: transparent;
}
.main-container-glow {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(24px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
@keyframes float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.floating-card {
    animation: float-anim 6s ease-in-out infinite;
    background: rgba(39, 39, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-card-glow {
    background: #18181b;
    border-radius: 20px;
    border: 1px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}
.feature-card-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(163, 230, 53, 0.2), rgba(163, 230, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}
.feature-card-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-card-glow:hover::before {
     background: linear-gradient(145deg, rgba(163, 230, 53, 0.5), rgba(163, 230, 53, 0.1));
}
/* Prose styles for article content */
.prose-custom {
    --tw-prose-body: #d1d5db;
    --tw-prose-headings: #ffffff;
    --tw-prose-lead: #e5e7eb;
    --tw-prose-links: #a3e635;
    --tw-prose-bold: #ffffff;
    --tw-prose-counters: #9ca3af;
    --tw-prose-bullets: #a3e635;
    --tw-prose-hr: rgba(255, 255, 255, 0.1);
    --tw-prose-quotes: #f9fafb;
    --tw-prose-quote-borders: #a3e635;
    --tw-prose-captions: #9ca3af;
    --tw-prose-code: #ffffff;
    --tw-prose-pre-code: #d1d5db;
    --tw-prose-pre-bg: rgba(0, 0, 0, 0.2);
    --tw-prose-th-borders: rgba(255, 255, 255, 0.1);
    --tw-prose-td-borders: rgba(255, 255, 255, 0.05);
}


  .feature-card-glow {
    background: rgba(24, 24, 27, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid transparent;
    position: relative; /* Keep relative positioning for the pseudo-element */
}
.feature-card-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(163, 230, 53, 0.2), rgba(163, 230, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    /* ===== FIX ADDED HERE ===== */
    /* This line makes the pseudo-element ignore mouse events */
    pointer-events: none;
}
.btn-primary {
    display: inline-block; padding: 0.75rem 2rem;
    background-color: var(--lime-accent);
    color: #111; font-weight: 700;
    border-radius: 0.5rem; text-align: center;
    box-shadow: 0 0 20px 0 rgba(163, 230, 53, 0);
    transition: all 0.3s ease;
}
.btn-primary:hover {
     box-shadow: 0 0 25px 5px var(--glow-green);
}