html { scroll-behavior: smooth; }

    /* ── THREE.JS CANVAS ── */
    #three-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ── PROFILE PHOTO TRANSITION ── */
    #profile-photo {
      transition: opacity 0.25s ease, transform 0.25s ease;
      transform-origin: center;
    }
    #profile-photo.swapping {
      opacity: 0;
      transform: scale(0.92);
    }

    /* ── FLOATING ANIMATION ── */
    @keyframes floatY {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }
    @keyframes floatYSlow {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50%       { transform: translateY(-14px) rotate(2deg); }
    }
    @keyframes orbPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50%       { opacity: 0.9; transform: scale(1.08); }
    }
    @keyframes ringGlow {
      0%, 100% { box-shadow: 0 0 0px rgba(99,102,241,0); border-color: rgba(99,102,241,0.4); }
      50%       { box-shadow: 0 0 24px rgba(99,102,241,0.5), 0 0 48px rgba(168,85,247,0.2); border-color: rgba(168,85,247,0.7); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    @keyframes navEntrance {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroFloat {
      0%, 100% { transform: scale(1) translateY(0); }
      50%       { transform: scale(1.005) translateY(-4px); }
    }
    @keyframes wabounce {
      0%, 100% { transform: scale(1); }
      40%       { transform: scale(1.15); }
      60%       { transform: scale(0.95); }
    }

    .avatar-float { animation: floatYSlow 5s ease-in-out infinite; }
    .profile-ring  { animation: ringGlow 4s ease-in-out infinite; }
    .profile-glow  { animation: orbPulse 4s ease-in-out infinite; }
    .wa-bounce     { animation: wabounce 2.8s ease-in-out infinite; }

    /* ── GRADIENT SHIMMER ON NAME ── */
    .shimmer-text {
      background: linear-gradient(90deg,
        #818cf8 0%, #a855f7 30%, #ec4899 50%, #a855f7 70%, #818cf8 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    /* ── STAT COUNTER ── */
    .stat-num {
      display: inline-block;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .stat-num:hover { transform: scale(1.18); }

    /* ── GLASSMORPHISM ── */
    .glass {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .glass-card {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .glass-card-animated {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .glass-card-animated:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.15);
    }

    /* ── GRADIENT TEXT ── */
    .gradient-text {
      background: linear-gradient(135deg, #818cf8 0%, #a855f7 50%, #ec4899 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── BUTTON PRIMARY ── */
    .btn-primary {
      background: linear-gradient(135deg, #6366f1, #a855f7);
      color: #fff;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .btn-primary:hover { opacity: 0.88; }

    /* ── GLOW ORBS ── */
    .glow {
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── PROFILE ── */
    .profile-ring {
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(99,102,241,0.4);
      position: relative;
      z-index: 1;
    }
    .profile-glow {
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
      z-index: 0;
    }

    /* ── MAC DOTS ── */
    .mac-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      display: block;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .mac-dot:hover { opacity: 0.7; }
    .mac-dot-red    { background: #ff5f57; }
    .mac-dot-yellow { background: #ffbd2e; }
    .mac-dot-green  { background: #28c840; }

    /* ── NAVBAR ── */
    .nav-blur {
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-menu.open { transform: translateX(0); }

    /* ── PROFILE TABS ── */
    .profile-tab {
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      cursor: pointer;
      background: none;
      outline: none;
      font-family: inherit;
    }
    .profile-tab.active {
      color: #fff;
      border-bottom-color: #6366f1;
    }
    .profile-tab-content { display: none; }
    .profile-tab-content.active { display: block; }

    /* ── SCROLL ANIMATIONS ── */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .animate-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .animate-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .animate-on-scroll.visible,
    .animate-left.visible,
    .animate-right.visible {
      opacity: 1;
      transform: none;
    }

    /* ── TIMELINE ── */
    .tl-item {
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .tl-enter-left  { transform: translateX(-40px); }
    .tl-enter-right { transform: translateX(40px); }
    .tl-item.visible { opacity: 1; transform: none; }

    .tl-line-inner {
      height: 0%;
      transition: height 1.8s ease;
    }
    .tl-line-inner.animated { height: 100%; }

    /* ── HERO CHARACTER ANIMATION ── */
    @keyframes heroCharIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-char {
      display: inline-block;
      opacity: 0;
      animation: heroCharIn 0.4s ease forwards;
    }

    /* ── FLOATING WHATSAPP ── */
    .floating-whatsapp {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 100;
      text-decoration: none;
    }

    /* ══════════════════════════════════════
       RESPONSIVE AVATAR SIZE
    ══════════════════════════════════════ */
    .profile-avatar-wrap {
      width: 150px;
      height: 150px;
    }
    @media (min-width: 480px) {
      .profile-avatar-wrap { width: 180px; height: 180px; }
    }
    @media (min-width: 768px) {
      .profile-avatar-wrap { width: 200px; height: 200px; }
    }
    .profile-avatar-img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      display: block;
    }

    /* ══════════════════════════════════════
       MOBILE — < 768px
    ══════════════════════════════════════ */
    @media (max-width: 767px) {

      /* Glow orbs reduced */
      .glow { width: 260px; height: 260px; }

      /* Hero title clamp */
      #hero-title {
        font-size: clamp(1.8rem, 8.5vw, 2.75rem) !important;
        line-height: 1.2;
      }

      /* Hero description */
      #inicio p { font-size: .9375rem; }

      /* Hero explore button — full width on mobile */
      #inicio a.btn-primary {
        width: 100%;
        justify-content: center;
        padding: .875rem 1.5rem;
        font-size: 1rem;
        border-radius: 1rem;
      }

      /* Hero stats — 3-col grid instead of flex-col */
      .hero-stats-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: .625rem;
        margin-top: 2rem;
        width: 100%;
      }
      .hero-stats-row > .stat-separator { display: none; }
      .hero-stats-row > div {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: .75rem;
        padding: .625rem .25rem;
      }

      /* Profile section inner padding */
      #perfil { overflow-x: hidden; }

      /* Avatar float — reduce travel on small screens */
      .avatar-float { animation: floatYSlow 6s ease-in-out infinite; }
      @keyframes floatYSlow {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50%       { transform: translateY(-8px) rotate(1deg); }
      }

      /* Profile side-stats card — horizontal on mobile */
      .profile-side-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: .5rem;
        padding: .75rem;
        space-y: 0;
      }
      .profile-side-stats > div { border: none !important; }

      /* Tabs font & spacing */
      .profile-tab {
        font-size: .8125rem;
        padding-bottom: .625rem;
      }
      .flex.gap-4.mb-6 { gap: .625rem; }

      /* Tab content cards — stack on xs */
      #content-docente .grid,
      #content-soporte .grid {
        grid-template-columns: 1fr;
      }

      /* Timeline — avoid horizontal overflow on mobile */
      .tl-enter-left, .tl-enter-right {
        transform: translateY(22px) !important;
      }

      /* Stack container — single col on xs */
      #stack-container { grid-template-columns: 1fr !important; }

      /* Proyectos section padding */
      #proyectos { padding-left: 1rem; padding-right: 1rem; }
      #proyectos h2 { margin-bottom: 2rem; }

      /* Project card thumbnails */
      #proyectos .h-40 { height: 7rem; }

      /* Contact button — full width */
      #contacto a.btn-primary {
        width: 100%;
        justify-content: center;
        padding: .875rem 1.25rem;
        font-size: 1rem;
      }

      /* Footer */
      footer { font-size: .8125rem; padding: 1.25rem 1rem; }

      /* WhatsApp float — slightly smaller edge gap */
      .floating-whatsapp { bottom: 14px; right: 14px; }

      /* Sections: prevent any child from causing x overflow */
      section { overflow-x: hidden; }
    }

    /* ══════════════════════════════════════
       EXTRA SMALL — < 400px
    ══════════════════════════════════════ */
    @media (max-width: 399px) {
      #hero-title { font-size: clamp(1.5rem, 7.5vw, 1.9rem) !important; }
      #inicio p   { font-size: .875rem; }
      .hero-stats-row > div { padding: .5rem .125rem; }
      .hero-stats-row .text-2xl { font-size: 1.25rem; }
      .profile-tab { font-size: .75rem; }
      /* Mac dots hidden on very small to avoid crowding */
      .mac-dot { width: 9px; height: 9px; }
    }

    /* ══════════════════════════════════════
       TABLET — 768px–1023px
    ══════════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1023px) {
      #stack-container { grid-template-columns: repeat(2, 1fr) !important; }
      #perfil .flex-col.md\:flex-row { gap: 2rem; }
    }

    /* ══════════════════════════════════════
       CSS VARIABLES — THEMING
    ══════════════════════════════════════ */
    :root {
      --body-bg:        linear-gradient(180deg,#0a0a0a 0%,#111118 50%,#0a0a0a 100%);
      --text-base:      #ffffff;
      --text-sec:       #9ca3af;
      --text-muted:     #6b7280;
      --glass-bg:       rgba(255,255,255,0.05);
      --glass-border:   rgba(255,255,255,0.10);
      --card-bg:        rgba(255,255,255,0.03);
      --card-border:    rgba(255,255,255,0.08);
      --nav-bg:         rgba(10,10,10,0.85);
      --nav-border:     rgba(255,255,255,0.06);
      --mob-menu-bg:    rgba(0,0,0,0.95);
      --stat-bg:        rgba(255,255,255,0.04);
      --stat-border:    rgba(255,255,255,0.07);
      --canvas-opacity: 0.65;
      --toggle-bg:      rgba(255,255,255,0.08);
      --toggle-border:  rgba(255,255,255,0.15);
      --toggle-color:   #fde68a;
      --card-shadow:    none;
      --card-hover-bg:  rgba(255,255,255,0.06);
    }

    /* ── MODO CLARO — variables vibrantes ── */
    [data-theme="light"] {
      --body-bg:
        radial-gradient(ellipse at 15% 15%, rgba(99,102,241,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 10%, rgba(168,85,247,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 65% 85%, rgba(236,72,153,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(8,145,178,0.10) 0%, transparent 45%),
        linear-gradient(160deg,#f5f3ff 0%,#fdf4ff 35%,#fef0fb 60%,#f0f9ff 100%);
      --text-base:      #1e1b4b;
      --text-sec:       #3730a3;
      --text-muted:     #6366f1;
      --glass-bg:       rgba(255,255,255,0.82);
      --glass-border:   rgba(99,102,241,0.35);
      --card-bg:        rgba(255,255,255,0.78);
      --card-border:    rgba(99,102,241,0.22);
      --nav-bg:         rgba(255,255,255,0.88);
      --nav-border:     rgba(99,102,241,0.25);
      --mob-menu-bg:    rgba(245,243,255,0.98);
      --stat-bg:        rgba(255,255,255,0.85);
      --stat-border:    rgba(99,102,241,0.30);
      --canvas-opacity: 0.22;
      --toggle-bg:      rgba(99,102,241,0.15);
      --toggle-border:  rgba(99,102,241,0.40);
      --toggle-color:   #4338ca;
      --card-shadow:    0 4px 24px rgba(99,102,241,0.14), 0 1px 4px rgba(0,0,0,0.06);
      --card-hover-bg:  rgba(255,255,255,0.95);
    }

    /* ── Body usa variable ── */
    body {
      background: var(--body-bg);
      color: var(--text-base);
      transition: background 0.4s ease, color 0.3s ease;
    }

    /* ── Toggle button ── */
    .theme-toggle-btn {
      background:    var(--toggle-bg);
      border:        1px solid var(--toggle-border);
      color:         var(--toggle-color);
    }
    .theme-toggle-btn:hover { opacity: 0.8; }

    /* ── Three.js canvas opacity ── */
    #three-canvas { opacity: var(--canvas-opacity); }

    /* ── Glass components ── */
    .glass {
      background:   var(--glass-bg)     !important;
      border-color: var(--glass-border) !important;
    }
    .glass-card, .glass-card-animated {
      background:   var(--card-bg)     !important;
      border-color: var(--card-border) !important;
      box-shadow:   var(--card-shadow) !important;
    }
    .glass-card-animated:hover {
      background: rgba(255,255,255,0.07) !important;
    }
    [data-theme="light"] .glass-card-animated:hover {
      background:  var(--card-hover-bg) !important;
      box-shadow:  0 8px 32px rgba(99,102,241,0.20), 0 2px 8px rgba(0,0,0,0.06) !important;
      border-color: rgba(99,102,241,0.38) !important;
    }

    /* ── Nav blur ── */
    .nav-blur {
      background:   var(--nav-bg)     !important;
      border-color: var(--nav-border) !important;
    }
    [data-theme="light"] .nav-blur {
      box-shadow: 0 2px 20px rgba(99,102,241,0.12) !important;
    }

    /* ── Mobile menu ── */
    #mobile-menu { background: var(--mob-menu-bg); }

    /* ── Hero stat boxes ── */
    .hero-stats-row > div {
      background:   var(--stat-bg)     !important;
      border-color: var(--stat-border) !important;
    }
    [data-theme="light"] .hero-stats-row > div {
      box-shadow: 0 4px 16px rgba(99,102,241,0.12) !important;
    }
    /* Vivid number colors per stat column */
    [data-theme="light"] .hero-stats-row > div:nth-child(1) .stat-num { color: #4f46e5 !important; }
    [data-theme="light"] .hero-stats-row > div:nth-child(3) .stat-num { color: #7c3aed !important; }
    [data-theme="light"] .hero-stats-row > div:nth-child(5) .stat-num { color: #0891b2 !important; }
    /* Desktop flex stats */
    [data-theme="light"] .hero-stats-row > .text-center:nth-child(1) .stat-num { color: #4f46e5 !important; }
    [data-theme="light"] .hero-stats-row > .text-center:nth-child(3) .stat-num { color: #7c3aed !important; }
    [data-theme="light"] .hero-stats-row > .text-center:nth-child(5) .stat-num { color: #0891b2 !important; }

    /* ══════════════════════════════════════
       LIGHT MODE — Tailwind overrides
    ══════════════════════════════════════ */

    /* ── Base text ── */
    [data-theme="light"] body,
    [data-theme="light"] p,
    [data-theme="light"] li { color: #374151; }

    [data-theme="light"] .text-white    { color: #1e1b4b !important; }
    [data-theme="light"] .text-gray-300 { color: #4b5563 !important; }
    [data-theme="light"] .text-gray-400 { color: #6366f1 !important; }
    [data-theme="light"] .text-gray-500 { color: #7c3aed !important; }
    [data-theme="light"] .text-gray-600 { color: #6b7280 !important; }

    /* ── Headings ── */
    [data-theme="light"] h1 { color: #1e1b4b !important; }
    [data-theme="light"] h2 { color: #312e81 !important; }
    [data-theme="light"] h3 { color: #3730a3 !important; }
    [data-theme="light"] h4 { color: #4338ca !important; }

    /* Section heading accent underline */
    [data-theme="light"] section h2::after {
      content: '';
      display: block;
      width: 3rem;
      height: 3px;
      margin: 0.5rem auto 0;
      border-radius: 9999px;
      background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    }

    /* ── Skill category icon colors — more vivid in light ── */
    [data-theme="light"] .text-blue-400   { color: #2563eb !important; }
    [data-theme="light"] .text-pink-400   { color: #db2777 !important; }
    [data-theme="light"] .text-green-400  { color: #16a34a !important; }
    [data-theme="light"] .text-yellow-400 { color: #d97706 !important; }
    [data-theme="light"] .text-purple-400 { color: #7c3aed !important; }
    [data-theme="light"] .text-orange-400 { color: #ea580c !important; }
    [data-theme="light"] .text-cyan-400   { color: #0891b2 !important; }
    [data-theme="light"] .text-indigo-400 { color: #4f46e5 !important; }
    [data-theme="light"] .text-green-300  { color: #15803d !important; }

    /* ── Profile tab ── */
    [data-theme="light"] .profile-tab.active {
      color: #4338ca !important;
      border-color: #6366f1 !important;
    }
    [data-theme="light"] .profile-tab { color: #6b7280 !important; }

    /* ── Section backgrounds — vivid per section ── */
    [data-theme="light"] #perfil {
      background: linear-gradient(135deg,
        rgba(99,102,241,0.08) 0%, rgba(168,85,247,0.05) 100%) !important;
    }
    [data-theme="light"] #logros {
      background: linear-gradient(135deg,
        rgba(236,72,153,0.06) 0%, rgba(99,102,241,0.07) 100%) !important;
    }
    [data-theme="light"] #stack {
      background: linear-gradient(135deg,
        rgba(8,145,178,0.07) 0%, rgba(99,102,241,0.08) 100%) !important;
    }
    [data-theme="light"] #proyectos {
      background: linear-gradient(135deg,
        rgba(168,85,247,0.06) 0%, rgba(236,72,153,0.05) 100%) !important;
    }
    [data-theme="light"] #contacto {
      background: linear-gradient(135deg,
        rgba(124,58,237,0.08) 0%, rgba(8,145,178,0.07) 100%) !important;
    }

    /* ── Mobile menu links ── */
    [data-theme="light"] .mobile-link       { color: #3730a3 !important; }
    [data-theme="light"] .mobile-link:hover { color: #1e1b4b !important; }
    [data-theme="light"] #menu-toggle       { color: #4338ca !important; }
    [data-theme="light"] #menu-close        { color: #4338ca !important; }

    /* ── Navbar ── */
    [data-theme="light"] nav .text-sm       { color: #3730a3 !important; }
    [data-theme="light"] nav a.text-xs      { color: #4b5563 !important; }
    [data-theme="light"] nav a.text-xs:hover{ color: #4338ca !important; }

    /* ── Stat numbers profile card ── */
    [data-theme="light"] .profile-side-stats .stat-num { color: #4f46e5 !important; }

    /* ── "Disponible" badge ── */
    [data-theme="light"] .glass .text-sm         { color: #3730a3 !important; }
    [data-theme="light"] .glass .text-gray-300   { color: #4b5563 !important; }

    /* ── Btn primary stays vivid (no change needed) ── */
    [data-theme="light"] #inicio a.btn-primary   { color: #fff !important; }
    [data-theme="light"] #contacto a.btn-primary { color: #fff !important; }

    /* ── Glow orbs — colorful in light mode ── */
    [data-theme="light"] .glow {
      background: radial-gradient(circle,
        rgba(99,102,241,0.14) 0%,
        rgba(168,85,247,0.08) 40%,
        transparent 70%) !important;
    }

    /* ── Profile ring — vivid glow ── */
    [data-theme="light"] .profile-ring {
      border-color: rgba(99,102,241,0.6) !important;
      box-shadow:   0 0 20px rgba(99,102,241,0.25), 0 0 40px rgba(168,85,247,0.12) !important;
    }

    /* ── Timeline cards (override inline JS styles) ── */
    [data-theme="light"] .tl-item .rounded-xl {
      background: rgba(255,255,255,0.82) !important;
      box-shadow:  0 4px 20px rgba(99,102,241,0.12) !important;
    }
    [data-theme="light"] .tl-item .rounded-xl:hover {
      background: rgba(255,255,255,0.96) !important;
    }

    /* ── Stack cards ── */
    [data-theme="light"] #stack-container h3   { color: #3730a3 !important; }
    [data-theme="light"] #stack-container span { color: #374151 !important; }
    [data-theme="light"] #stack-container .glass-card-animated {
      box-shadow: 0 4px 18px rgba(99,102,241,0.12) !important;
    }

    /* ── Project cards ── */
    [data-theme="light"] #proyectos h3 { color: #1e1b4b !important; }
    [data-theme="light"] #proyectos p  { color: #374151 !important; }
    [data-theme="light"] #proyectos .glass-card-animated {
      box-shadow: 0 6px 24px rgba(99,102,241,0.14) !important;
    }

    /* ── Span tags in skills (tech pills) ── */
    [data-theme="light"] #stack-container span[style] { color: #374151 !important; }

    /* ── Footer ── */
    [data-theme="light"] footer {
      background:   linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(168,85,247,0.06) 100%) !important;
      border-color: rgba(99,102,241,0.20) !important;
      color:        #4b5563 !important;
    }
    [data-theme="light"] footer .text-gray-500 { color: #6366f1 !important; }

    /* ── Scrollbar vivid ── */
    [data-theme="light"] ::-webkit-scrollbar-track { background: #ede9fe; }
    [data-theme="light"] ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #818cf8, #a855f7);
      border-radius: 9999px;
    }
    [data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: #6366f1; }
