/* Drip Off AI - Slide Deck Theme Overrides */

*, *::before, *::after {
    box-sizing: border-box !important;
}

:root {
    --accent: #3b82f6; /* Premium Blue */
    --accent-hover: #60a5fa;
    --text-primary: #ffffff;
    --text-secondary: #ffffff; /* User requested NO GREY, pure white only */
    --bg-dark: #050505; /* True Black */
    --surface: #141414;
    --surface-light: #1f1f1f;
    --border: #2a2a2a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow: hidden;
}

/* Global Reveal Overrides */
.reveal {
    font-family: 'Inter', sans-serif !important;
    background-color: transparent !important;
    color: var(--text-primary);
    cursor: none; 
}

a, button {
    cursor: none;
}

/* Custom Glowing Cursor */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: screen;
}

#cursor-glow.active {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.9) 0%, rgba(59, 130, 246, 0) 70%);
}

.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
    font-family: 'Playfair Display', serif !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    color: var(--text-primary) !important;
    font-weight: 400 !important;
}

/* Persistent Header */
.persistent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    pointer-events: none;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(2, 8, 19, 0.95) 0%, rgba(2, 8, 19, 0) 100%);
}

.persistent-header > div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.persistent-header > * {
    pointer-events: auto;
}

.logo-img {
    height: 100px; /* Much larger on desktop */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen; 
    filter: contrast(1.2); /* Helps remove the dark box artifact */
}

.nav-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--accent);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: #000000;
}

/* Magnetic Items */
.magnetic {
    display: inline-block;
}

/* --- GSAP Animation Classes --- */
.reveal-mask {
    overflow: hidden; /* Crucial for text reveal */
    padding-bottom: 5px; /* Prevent font cutoff */
    margin: 0;
    line-height: 1.2;
}

.gsap-reveal {
    transform: translateY(120%); /* Hidden below mask initially */
    opacity: 0; 
}

.gsap-fade {
    opacity: 0;
}

.gsap-stagger-item {
    opacity: 0;
    transform: translateY(20px);
}
/* ------------------------------- */


/* --- MASTER PREMIUM GLASSMORPHISM --- */
.grid-box, .service-box, .focus-content, .list-item, .cs-problem, .cs-solution, .cs-result, .process-step, .tech-highlight {
    background: rgba(10, 20, 40, 0.4) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-sizing: border-box !important;
    padding: 2.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.grid-box:hover, .service-box:hover, .list-item:hover, .process-step:hover, .focus-content:hover, .cs-problem:hover, .cs-solution:hover {
    transform: translateY(-10px);
    border-color: var(--accent) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3) !important;
}


/* Slide Base Styling */
.reveal .slides {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important; /* Prevent Reveal from scaling */
}

.reveal section {
    text-align: center;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    top: auto !important; /* Prevent Reveal from absolute positioning top */
}

.slide-title {
    font-size: 3.5rem !important;
    margin-bottom: 0.5rem !important;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent) !important;
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.slide-intro {
    font-size: 1.25rem !important;
    color: var(--text-secondary) !important;
    max-width: 800px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
}

.accent-line {
    width: 0px; 
    height: 2px;
    background-color: var(--accent);
    margin: 1.5rem auto 3rem auto !important; /* Centered */
}

/* Hero Section */
.hero-title {
    font-size: 6rem !important;
    margin-bottom: 1rem !important;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: var(--text-secondary) !important;
    text-align: center;
}

/* Prevent Reveal.js from pushing content into the header */
.reveal .slides section {
    padding-top: 100px !important;
    box-sizing: border-box;
}

.swipe-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 4rem;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Grids & Layouts */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.grid-box h3 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    color: var(--accent) !important;
}

.grid-box p {
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
}

/* Solution Layout */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.sol-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: rgba(10, 20, 40, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    gap: 1.5rem;
}

.sol-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.sol-icon-wrapper {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2);
}

.sol-text h4 {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
}

.sol-text p {
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

.sol-metric {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    text-align: center;
    line-height: 1;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.sol-metric span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* 3x2 Grid for Services */
.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

.service-box {
    background: var(--surface);
    padding: 1.5rem;
    border: 1px solid var(--border);
    width: 100%;
}

.service-box h4 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    color: var(--accent) !important;
}

.service-box p {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Tech Highlight (Voice Deep Dive) */
.tech-highlight {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), var(--surface-light));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-top: 1px solid var(--accent);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: row !important; /* Override master class column layout */
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
}

.tech-stat {
    text-align: center;
    flex: 1;
}

.tech-stat:not(:last-child) {
    border-right: 1px solid var(--border);
}

.tech-highlight .big-metric {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.tech-highlight p {
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary) !important;
}

/* Subdomain Ecosystem Slides */
.focus-content {
    background: var(--surface-light);
    padding: 3rem;
    border-top: 2px solid var(--accent);
    border-left: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.domain-text {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 2.5rem !important;
    color: var(--accent) !important;
    margin-bottom: 1.5rem !important;
}

.desc-text {
    font-size: 1.25rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.list-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.list-item {
    background: var(--surface-light);
    padding: 1.5rem 2rem;
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.list-item strong {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Case Studies */
.case-study-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    box-sizing: border-box;
}

.cs-problem h4, .cs-solution h4 {
    font-size: 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
    color: var(--text-secondary) !important;
}

.cs-solution h4 {
    color: var(--accent) !important;
}

.cs-problem p, .cs-solution p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.cs-result {
    background: var(--surface);
    padding: 2rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.big-result {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--accent);
    white-space: nowrap;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    margin-bottom: 0.5rem;
}

.cs-result p {
    font-size: 1.2rem !important;
    margin: 0 !important;
}

/* Process */
.process-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

.process-step {
    border-top: 2px solid var(--border);
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
}

.step-no {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.process-step h4 {
    font-size: 1.4rem !important;
    margin-bottom: 0.5rem !important;
}

.process-step p {
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
}

/* Reveal Controls & Progress Customization */
.reveal .progress {
    color: var(--accent) !important;
}

.reveal .controls {
    color: var(--accent) !important;
}

/* ----------------------------------------- */
/* PREMIUM MERMAID WORKFLOW STYLING          */
/* ----------------------------------------- */

/* Remove default dark grey background from subgraphs */
.reveal .mermaid svg .cluster rect {
    fill: transparent !important;
    stroke: rgba(255, 255, 255, 0.05) !important; /* Extremely subtle glass border */
    stroke-width: 1px !important;
    rx: 12px !important;
}

/* Style the text inside subgraph headers */
.reveal .mermaid svg .cluster-label text {
    fill: var(--accent) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

/* Premium Node Styling */
.reveal .mermaid svg .node rect, 
.reveal .mermaid svg .node polygon,
.reveal .mermaid svg .node circle {
    fill: var(--surface-light) !important;
    stroke: var(--primary) !important;
    stroke-width: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Node Text Styling */
.reveal .mermaid svg .node text {
    fill: #ffffff !important;
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
}

/* Interactive Hover Glow on Nodes */
.reveal .mermaid svg .node:hover rect,
.reveal .mermaid svg .node:hover polygon,
.reveal .mermaid svg .node:hover circle {
    fill: rgba(59, 130, 246, 0.15) !important;
    stroke: var(--primary-light) !important;
    stroke-width: 2px !important;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
    cursor: pointer;
    transform: scale(1.02);
}

/* Edge Labels (Text on lines) */
.reveal .mermaid svg .edgeLabel {
    background-color: transparent !important;
    color: var(--primary-light) !important;
    font-family: var(--font-primary) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 !important;
}

/* Animate the Connector Lines (Data Flow Effect) */
.reveal .mermaid svg .edgePath .path {
    stroke: var(--primary) !important;
    stroke-width: 2px !important;
    stroke-dasharray: 6, 6 !important;
    animation: flowData 1.5s linear infinite !important;
}

@keyframes flowData {
    from { stroke-dashoffset: 24; }
    to { stroke-dashoffset: 0; }
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 1100px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-card .quote-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.author-link, .author-social {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.author-link:hover, .author-social:hover {
    color: var(--accent);
}

.audio-card {
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Watermark Hider (Gemini Logo Fix) */
#watermark-hider {
    position: fixed;
    bottom: 110px;
    right: 75px;
    width: 90px;
    height: 90px;
    background: rgba(14, 14, 14, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 20px 20px rgba(14, 14, 14, 0.4);
}

/* Removed hero-bg-animation as we now use global particles.js */

/* Mobile Responsiveness for Presentation */
@media (max-width: 768px) {

    /* --- DEDICATED MOBILE WEB LAYOUT --- */
    /* Since Reveal.js is disabled on mobile, we style the raw <section> tags */
    
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        overflow-y: auto !important; /* Enable native scrolling on mobile */
        overflow-x: hidden !important;
        touch-action: pan-y !important; /* Strictly prevent left/right swiping */
        scroll-snap-type: y mandatory; /* TIKTOK SNAP SCROLLING */
        -webkit-overflow-scrolling: touch;
        position: relative !important;
    }
    
    /* Ensure elements like Mermaid SVGs or long words don't break width */
    * {
        max-width: 100vw;
    }
    
    img:not(.logo-img), svg, .mermaid, .mermaid svg {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* --- SAFENET VISIBILITY --- */
    /* Nuke GSAP opacity defaults ONLY if JS fails */
    body:not(.gsap-ready) .gsap-reveal, 
    body:not(.gsap-ready) .gsap-fade, 
    body:not(.gsap-ready) .gsap-stagger-item {
        opacity: 1 !important; 
        transform: none !important;
        transition: none !important;
    }

    /* Make sections act like standard webpage blocks */
    section {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 100dvh;
        width: 100%;
        padding: 6rem 1.5rem 3rem 1.5rem !important; /* Top padding clears fixed header */
        margin: 0 !important;
        box-sizing: border-box;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        scroll-snap-align: start; /* Snap to top of section */
        scroll-snap-stop: always; /* Ensure we stop at every slide */
    }
    
    /* Reduce massive internal padding of glass cards on small screens */
    .grid-box, .service-box, .focus-content, .list-item, .cs-problem, .cs-solution, .cs-result, .process-step, .tech-highlight, .sol-card {
        padding: 1.5rem !important;
    }

    /* Stack all grids into a single smooth column */
    .grid-2x2, .grid-3x2, .solution-grid, .case-study-slide, .process-flex, .list-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        gap: 1rem !important;
    }
    
    /* Fix massive typography causing horizontal overflow */
    .big-result { font-size: 2.2rem !important; white-space: normal !important; word-wrap: break-word; }
    .step-no { font-size: 2.5rem !important; }
    .sol-metric { font-size: 2.5rem !important; }
    .domain-text { font-size: 1.6rem !important; word-wrap: break-word; }
    .slide-title { font-size: 2rem !important; word-wrap: break-word; }
    .hero-title { font-size: 2.5rem !important; margin-top: 2rem !important; }
    .hero-subtitle { font-size: 1.1rem !important; }
    .slide-intro { font-size: 1rem !important; padding: 0 !important; }
    .desc-text { font-size: 1rem !important; }
    .tech-highlight .big-metric { font-size: 2.5rem !important; }

    .testimonial-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        transform: none !important;
        left: auto !important;
        margin-top: 1rem !important;
        padding: 0 !important;
        gap: 1.5rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .process-steps {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .persistent-header {
        padding: 1rem 15px !important;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background: rgba(5, 5, 5, 0.85); /* Slightly frosted bg so it pops over scrolling content */
        backdrop-filter: blur(10px);
    }
    
    /* Removed button centering to allow proper space-between layout */
    
    .logo-img {
        height: 70px !important; /* Scaled up for mobile as requested */
    }
    
    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Scale down the watermark hider */
    #watermark-hider {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .tech-highlight {
        flex-direction: column !important;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .tech-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
        width: 100%;
    }
    
    .swipe-hint {
        display: none !important; /* Hide swipe hint since we are scrolling natively */
    }
}

/* MERMAID PREMIUM STYLING */
.mermaid .node rect, .mermaid .node circle, .mermaid .node polygon {
    fill: rgba(10, 20, 40, 0.6) !important;
    stroke: rgba(255, 255, 255, 0.15) !important;
    stroke-width: 1.5px !important;
    rx: 12px !important;
    ry: 12px !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.mermaid .node .label {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
}

/* Add a subtle glow to the edge paths */
.mermaid .edgePath path {
    stroke: rgba(59, 130, 246, 0.5) !important;
    stroke-width: 2px !important;
}

.mermaid .edgeLabel {
    background-color: rgba(10, 20, 40, 0.8) !important;
    color: #a855f7 !important;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px !important;
}
