    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      color-scheme: dark;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--bg-dark);
      background-image: 
        radial-gradient(circle at 50% 0%, rgba(130, 145, 170, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 100% 40%, rgba(90, 105, 130, 0.04) 0%, transparent 50%);
      background-attachment: fixed;
      color: var(--text-main);
      min-height: 100vh;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      transition: background 0.6s ease;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; height: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.22); }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; position: relative; }
    img { display: block; max-width: 100%; }

    /* ==========================================================================
       MINIMALIST LIQUID GLASS MICRO-INTERACTION (LIST ADD/REMOVE)
       ========================================================================== */
    @keyframes minimalListPop {
      0% { transform: scale(1); }
      35% { transform: scale(0.85); }
      70% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }

    .btn-minimal-pop {
      animation: minimalListPop 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .btn-minimal-pop svg {
      animation: iconTwistMorph 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes iconTwistMorph {
      0% { transform: scale(0.5) rotate(-60deg); opacity: 0.3; }
      100% { transform: scale(1) rotate(0deg); opacity: 1; }
    }

    @keyframes badgePulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.35); background: #ffffff; color: #000; box-shadow: 0 0 12px rgba(255,255,255,0.8); }
      100% { transform: scale(1); }
    }

    .badge-pulse-anim {
      animation: badgePulse 0.45s var(--ease-netflix);
    }

    /* ==========================================================================
       SKELETON LOADERS
       ========================================================================== */
    .skeleton-box {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.07) 50%, rgba(255, 255, 255, 0.03) 75%);
      background-size: 200% 100%;
      animation: skeletonShimmer 1.5s infinite;
      border-radius: var(--radius-sm);
    }

    @keyframes skeletonShimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

