:root {
  --primary: 79, 70, 229;
  --primary-dark: 67, 56, 202;
  --secondary: 99, 102, 241;
}

/* Reset body and html margins/padding to eliminate top spacing */
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  color: #1f2937;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Ensure main content starts at the very top with no spacing */
main {
  margin: 0;
  padding: 0;
}

.dark body {
  background-color: transparent;
  color: #f9fafb;
}

/* Typography */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, var(--grad-1, #6366f1), var(--grad-2, #8b5cf6));
}

.dark .gradient-text {
  background-image: linear-gradient(to right, var(--grad-1, #818cf8), var(--grad-2, #a78bfa));
}

/* NEW: CSS Variable based text color for hero components */
.hero-text-color {
    color: var(--clr-light);
}
.dark .hero-text-color {
    color: var(--clr-dark);
}

/* Section background colors that respond to dark mode via CSS variables */
.section-container[data-background-type="color"],
.section-container[data-background-type="preset"] {
    background-color: var(--section-bg-light);
}

.dark .section-container[data-background-type="color"],
.dark .section-container[data-background-type="preset"] {
    background-color: var(--section-bg-dark);
}

/* Theme-aware Card Styles - CSS Custom Properties */
.theme-aware-card {
    /* Background colors */
    background-color: var(--bg-light);
    /* Border colors */
    border-color: var(--border-light);
    /* Typography colors are applied inline with var(--title-light), var(--desc-light) */
}

/* Shadow only applied when data-shadow-enabled="true" */
.theme-aware-card[data-shadow-enabled="true"] {
    box-shadow: var(--shadow-offset-x, 0) var(--shadow-offset-y, 0.5rem) var(--shadow-blur, 1.5rem) var(--shadow-spread, 0) var(--shadow-light);
}

html.dark .theme-aware-card {
    background-color: var(--bg-dark);
    border-color: var(--border-dark);
}

html.dark .theme-aware-card[data-shadow-enabled="true"] {
    box-shadow: var(--shadow-offset-x, 0) var(--shadow-offset-y, 0.5rem) var(--shadow-blur, 1.5rem) var(--shadow-spread, 0) var(--shadow-dark);
}

/* Flip card specific backgrounds */
.theme-aware-card .flip-card-front {
    background-color: var(--flip-front-bg-light);
}

html.dark .theme-aware-card .flip-card-front {
    background-color: var(--flip-front-bg-dark);
}

.theme-aware-card .flip-card-back {
    background-color: var(--flip-back-bg-light);
}

html.dark .theme-aware-card .flip-card-back {
    background-color: var(--flip-back-bg-dark);
}

/* Typography color overrides for theme-aware cards */
.theme-aware-card h3,
.theme-aware-card .card-title {
    color: var(--title-light) !important;
}

html.dark .theme-aware-card h3,
html.dark .theme-aware-card .card-title {
    color: var(--title-dark) !important;
}

.theme-aware-card p,
.theme-aware-card .card-subtitle,
.theme-aware-card .card-description {
    color: var(--desc-light) !important;
}

html.dark .theme-aware-card p,
html.dark .theme-aware-card .card-subtitle,
html.dark .theme-aware-card .card-description {
    color: var(--desc-dark) !important;
}

/* Card icon color switching - target both wrapper and icon element */
.theme-aware-card .card-icon,
.theme-aware-card .card-icon i,
.theme-aware-card .card-icon svg {
    color: var(--icon-light) !important;
}

html.dark .theme-aware-card .card-icon,
html.dark .theme-aware-card .card-icon i,
html.dark .theme-aware-card .card-icon svg {
    color: var(--icon-dark) !important;
}

/* Flip card front icon colors - higher specificity to override general card-icon */
.theme-aware-card .card-icon.flip-front-icon,
.theme-aware-card .card-icon.flip-front-icon i,
.theme-aware-card .card-icon.flip-front-icon svg {
    color: var(--flip-front-icon-light) !important;
}

html.dark .theme-aware-card .card-icon.flip-front-icon,
html.dark .theme-aware-card .card-icon.flip-front-icon i,
html.dark .theme-aware-card .card-icon.flip-front-icon svg {
    color: var(--flip-front-icon-dark) !important;
}

/* Flip card back icon colors - higher specificity to override general card-icon */
.theme-aware-card .card-icon.flip-back-icon,
.theme-aware-card .card-icon.flip-back-icon i,
.theme-aware-card .card-icon.flip-back-icon svg {
    color: var(--flip-back-icon-light) !important;
}

html.dark .theme-aware-card .card-icon.flip-back-icon,
html.dark .theme-aware-card .card-icon.flip-back-icon i,
html.dark .theme-aware-card .card-icon.flip-back-icon svg {
    color: var(--flip-back-icon-dark) !important;
}

/* DEBUG: Force a visible color in dark mode to test if rule applies */
:root.dark .theme-aware-card .card-icon,
:root.dark .theme-aware-card .card-icon i {
    color: var(--icon-dark) !important;
}

/* SVG Divider theme-aware fill colors */
.divider-svg path {
    fill: var(--divider-light);
}
.dark .divider-svg path {
    fill: var(--divider-dark);
}


/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  color: white;
  background-color: #4f46e5;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #4338ca;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  color: #374151;
  background-color: transparent;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.dark .btn-outline {
  color: #e5e7eb;
  border-color: #4b5563;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

.dark .btn-outline:hover {
    background-color: rgba(31, 41, 55, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.dark ::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
  background: #4b5563;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Particle Background Canvas Styles */
#particle-background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    background-color: transparent;
}


/* NEW, CORRECTED GLASS PANEL STYLES */
.glass-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent light background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Faint border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0; /* Remove padding from the main panel */
    margin-bottom: 1.5rem; /* 24px - matches Tailwind's space-y-6 */
    overflow: hidden; /* Crucial for pseudo-element clipping */
}

.dark .glass-panel {
    background: rgba(30, 35, 45, 0.5); /* Semi-transparent dark background */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Faint border */
}


/* This pseudo-element creates the transparent corner effect */
.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    /* A subtle inner glow that fades out, enhancing the glass feel */
    box-shadow: inset 0 0 80px rgba(173, 216, 230, 0.05); /* Faint lightblue inner shadow */
}

/* Ensure content inside the panel is visible */
.glass-panel > * {
    position: relative;
    z-index: 2;
}

/* Specific overrides for panel headers to ensure they look good on the glass */
.glass-panel h2, .glass-panel h3 {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.dark .glass-panel h2, .dark .glass-panel h3 {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #e5e7eb;
}



/* ================================================= */
/* ==   ADMIN PANEL HOVER SWIPE ANIMATION (FINAL) == */
/* ================================================= */

/* Ensure the glass panel acts as the containing block and clips the animation. */
.glass-panel {
    position: relative;
    overflow: hidden;
}

/* Position all direct children (the button, the content) above the swipe layer. */
.glass-panel > * {
    position: relative;
    z-index: 2;
}

/*
 * This is the pseudo-element that creates the purple swipe effect.
 * It's attached to the main panel, allowing it to cover the full width.
*/
.glass-panel::after { /* Use ::after to not conflict with the other ::before */
    content: '';
    position: absolute;
    inset: 0;
    
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/*
 * This is the final, corrected selector.
 * It targets a .glass-panel that:
 *   1. Does NOT have the .is-open class.
 *   2. Contains a hovered .admin-panel-toggle button inside it.
 * This triggers the animation ONLY on closed panels.
*/
.dark .glass-panel:not(.is-open):has(.admin-panel-toggle:hover)::after {
    background-color: rgba(185, 76, 228, 0.25); /* Dark mode color */
    transform: translateX(0);
}

/* Light mode version */
.glass-panel:not(.is-open):has(.admin-panel-toggle:hover)::after {
    background-color: rgba(185, 76, 228, 0.15); /* Light mode color */
    transform: translateX(0);
}

/* ================================================= */
/* ==           TIPPY.JS TOOLTIP STYLES            == */
/* ================================================= */

/* Hide the default tooltip content divs since tippy.js will handle display */
.tooltip-content {
    display: none;
}

/* Custom dark theme for tooltips */
.tippy-box[data-theme~='custom-dark'] {
    background-color: #1f2937;
    color: #f9fafb;
    border: 1px solid #374151;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    line-height: 1.4;
}

.tippy-box[data-theme~='custom-dark'] .tippy-arrow {
    color: #1f2937;
}

.tippy-box[data-theme~='custom-dark'] .tippy-arrow::before {
    border-color: #374151;
}

/* Dark mode adjustments */
.dark .tippy-box[data-theme~='custom-dark'] {
    background-color: #111827;
    color: #e5e7eb;
    border-color: #4b5563;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dark .tippy-box[data-theme~='custom-dark'] .tippy-arrow {
    color: #111827;
}

.dark .tippy-box[data-theme~='custom-dark'] .tippy-arrow::before {
    border-color: #4b5563;
}

/* Tooltip trigger styling */
.tooltip-trigger {
    color: #6b7280;
    cursor: help;
    transition: color 0.2s ease;
    margin-left: 4px;
}

.tooltip-trigger:hover {
    color: #4f46e5;
}

.dark .tooltip-trigger {
    color: #9ca3af;
}

.dark .tooltip-trigger:hover {
    color: #818cf8;
}

/* ========================================
   Flip Card Styles
   ======================================== */
.flip-card-container {
    perspective: 1000px;
    min-height: 300px; /* Minimum height to prevent collapse */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    min-height: 300px; /* Match container minimum */
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Flip on hover (default) */
.flip-card-container:not(.click-to-flip):hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Flip on click */
.flip-card-container.click-to-flip.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Vertical flip */
.flip-card-container.flip-vertical:not(.click-to-flip):hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-container.flip-vertical.click-to-flip.flipped .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    min-height: 300px; /* Minimum height */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem; /* Add padding for content spacing */
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-container.flip-vertical .flip-card-back {
    transform: rotateX(180deg);
}

/* ========================================
   Card Hover Effects
   ======================================== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.dark .hover-lift:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: var(--glow-intensity, 0 0 20px) var(--glow-light, rgba(79, 70, 229, 0.5));
}

.dark .hover-glow:hover {
    box-shadow: var(--glow-intensity, 0 0 20px) var(--glow-dark, rgba(129, 140, 248, 0.6));
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-border-glow {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hover-border-glow:hover {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

.dark .hover-border-glow:hover {
    border-color: #818cf8;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.6);
}

/* ========================================
   Card Particle Canvas
   ======================================== */
.card-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 10;
}

/* ========================================
   Card CTA Button Styles
   ======================================== */
.btn-primary {
    background-color: #4f46e5;
    color: white;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #4338ca;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #4f46e5;
    color: white;
}

.dark .btn-outline {
    color: #818cf8;
    border-color: #818cf8;
}

.dark .btn-outline:hover {
    background-color: #818cf8;
    color: #1f2937;
}

/* ==========================================================
   NAVBAR STYLES - Multi-style navigation system
   Supports: floating, fixed-top, fixed-bottom-tabs, sidebar, minimal
   ========================================================== */

/* Capacitor Safe Area Support - iOS notch/home indicator */
:root {
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
}

/* Apply safe area to fixed navbars */
.navbar-fixed-top {
    padding-top: var(--safe-area-top);
}

.navbar-fixed-bottom,
.navbar-bottom-tabs {
    padding-bottom: var(--safe-area-bottom);
}

.navbar-sidebar {
    padding-left: var(--safe-area-left);
}

/* Floating Navbar Styles */
.floating-navbar {
    /* Safe area handled via bottom positioning */
}

@media (max-width: 767px) {
    .floating-navbar {
        bottom: calc(1rem + var(--safe-area-bottom));
    }
}

/* Fixed Top Navbar */
.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.dark .navbar-fixed-top {
    background-color: rgba(17, 24, 39, 0.95);
    border-bottom-color: rgba(55, 65, 81, 0.5);
}

/* Fixed Bottom Tabs */
.navbar-bottom-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.dark .navbar-bottom-tabs {
    background-color: rgba(17, 24, 39, 0.95);
    border-top-color: rgba(55, 65, 81, 0.5);
}

.navbar-bottom-tabs .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem;
    color: #6b7280;
    transition: color 0.2s ease;
}

.navbar-bottom-tabs .tab-item:hover,
.navbar-bottom-tabs .tab-item.active {
    color: #4f46e5;
}

.dark .navbar-bottom-tabs .tab-item {
    color: #9ca3af;
}

.dark .navbar-bottom-tabs .tab-item:hover,
.dark .navbar-bottom-tabs .tab-item.active {
    color: #818cf8;
}

.navbar-bottom-tabs .tab-item .tab-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
}

.navbar-bottom-tabs .tab-item .tab-label {
    font-size: 0.625rem;
    font-weight: 500;
}

/* Sidebar Navbar */
.navbar-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4rem;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(229, 231, 235, 0.5);
    display: flex;
    flex-direction: column;
    padding-top: calc(1rem + var(--safe-area-top));
}

.dark .navbar-sidebar {
    background-color: rgba(17, 24, 39, 0.95);
    border-right-color: rgba(55, 65, 81, 0.5);
}

.navbar-sidebar .sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    margin: 0.25rem;
    border-radius: 0.5rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.navbar-sidebar .sidebar-item:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.dark .navbar-sidebar .sidebar-item {
    color: #9ca3af;
}

.dark .navbar-sidebar .sidebar-item:hover {
    background-color: rgba(129, 140, 248, 0.1);
    color: #818cf8;
}

/* Sidebar content offset - push main content */
body.has-sidebar main {
    margin-left: 4rem;
}

@media (max-width: 767px) {
    .navbar-sidebar {
        transform: translateX(-100%);
        width: 16rem;
        transition: transform 0.3s ease;
    }
    
    .navbar-sidebar.open {
        transform: translateX(0);
    }
    
    body.has-sidebar main {
        margin-left: 0;
    }
    
    /* Sidebar overlay for mobile */
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 40;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Minimal Navbar - Corner FAB style */
.navbar-minimal {
    position: fixed;
    bottom: calc(1.5rem + var(--safe-area-bottom));
    right: calc(1.5rem + var(--safe-area-right));
    z-index: 50;
}

.navbar-minimal .fab-trigger {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #4f46e5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-minimal .fab-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.5);
}

.dark .navbar-minimal .fab-trigger {
    background-color: #818cf8;
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.4);
}

.navbar-minimal .fab-menu {
    position: absolute;
    bottom: 4rem;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.navbar-minimal.open .fab-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar-minimal .fab-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #374151;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.navbar-minimal .fab-menu-item:hover {
    background-color: #f3f4f6;
    transform: translateX(-0.25rem);
}

.dark .navbar-minimal .fab-menu-item {
    background-color: #1f2937;
    color: #e5e7eb;
}

.dark .navbar-minimal .fab-menu-item:hover {
    background-color: #374151;
}

/* Body padding for fixed navbars */
body.has-fixed-top {
    padding-top: calc(4rem + var(--safe-area-top));
}

body.has-fixed-bottom {
    padding-bottom: calc(4rem + var(--safe-area-bottom));
}

/* Navbar transition animations */
.navbar-enter {
    opacity: 0;
    transform: translateY(-1rem);
}

.navbar-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.navbar-exit {
    opacity: 1;
}

.navbar-exit-active {
    opacity: 0;
    transition: opacity 0.2s ease;
}
/* Preview Mode Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.animate-fade-out {
    animation: fadeOut 0.3s ease forwards;
}

/* ==================== Sortable.js Drag & Drop Styles ==================== */

/* Ghost element while dragging */
.sortable-ghost {
    opacity: 0.4;
    background-color: rgb(99 102 241 / 0.2);
    border: 2px dashed rgb(99 102 241);
    border-radius: 0.5rem;
}

/* Chosen element - currently being dragged */
.sortable-chosen {
    opacity: 1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Drag element placeholder */
.sortable-drag {
    opacity: 0;
}

/* Cursor styles for draggable elements */
.section-item,
.content-zone-item,
.drag-handle {
    cursor: grab;
}

.section-item:active,
.content-zone-item:active,
.drag-handle:active {
    cursor: grabbing;
}

/* Visual feedback on hover for draggable items */
.section-item:hover {
    background-color: rgb(99 102 241 / 0.05);
}

.dark .section-item:hover {
    background-color: rgb(99 102 241 / 0.1);
}
