    /* ==========================================================================
       AI MATCHER VIEW (IMMERSIVE HOLOGRAPHIC STAGE WITH FIXED LAYOUT)
       ========================================================================== */
    .ai-matcher-view {
      display: none;
      padding: 100px var(--container-pad) 60px;
      min-height: 92vh;
      position: relative;
      align-items: center;
      justify-content: center;
    }

    .ai-matcher-view.active {
      display: flex;
    }

    .ai-stage-container {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    /* 3D Glass Matcher Card - Fixed consistent dimensions so buttons never bounce */
    .ai-card-stage {
      width: 100%;
      perspective: 1200px;
      position: relative;
      min-height: 520px;
    }

    .ai-matcher-card {
      position: relative;
      width: 100%;
      min-height: 480px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: rgba(12, 15, 22, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.06);
      display: grid;
      grid-template-columns: 300px 1fr;
      transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(32px);
      transform-origin: 50% 100%;
      will-change: transform, opacity;
    }

    /* Tinder Swipe Animations - Slower, Fluid & Cinema Grade */
    .ai-matcher-card.swipe-nope {
      transform: translate3d(-180%, 75px, 0) rotate(-35deg) scale(0.8) !important;
      opacity: 0 !important;
      filter: blur(8px) !important;
      transition: transform 0.92s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), filter 0.82s ease !important;
      pointer-events: none;
    }

    .ai-matcher-card.swipe-like {
      transform: translate3d(180%, 75px, 0) rotate(35deg) scale(0.8) !important;
      opacity: 0 !important;
      filter: blur(8px) !important;
      transition: transform 0.92s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), filter 0.82s ease !important;
      pointer-events: none;
    }

    .ai-matcher-card.anim-enter {
      animation: tinderCardEnter 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes tinderCardEnter {
      0% { transform: scale(0.85) translateY(45px); opacity: 0; filter: blur(8px); }
      100% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
    }

    /* Tinder Stamp Badges */
    .ai-tinder-stamp {
      position: absolute;
      top: 24px;
      padding: 6px 18px;
      border-radius: 8px;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      opacity: 0;
      pointer-events: none;
      z-index: 60;
      transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ai-tinder-stamp.nope {
      right: 28px;
      color: #ff4757;
      border: 3.5px solid #ff4757;
      background: rgba(255, 71, 87, 0.18);
      box-shadow: 0 0 25px rgba(255, 71, 87, 0.5);
      transform: scale(0.6) rotate(14deg);
    }

    .ai-tinder-stamp.like {
      left: 28px;
      color: #2ed573;
      border: 3.5px solid #2ed573;
      background: rgba(46, 213, 115, 0.18);
      box-shadow: 0 0 25px rgba(46, 213, 115, 0.5);
      transform: scale(0.6) rotate(-14deg);
    }

    .ai-matcher-card.swipe-nope .ai-tinder-stamp.nope {
      opacity: 1;
      transform: scale(1.1) rotate(14deg);
    }

    .ai-matcher-card.swipe-like .ai-tinder-stamp.like {
      opacity: 1;
      transform: scale(1.1) rotate(-14deg);
    }

    .ai-card-poster-col {
      position: relative;
      min-height: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .ai-card-poster-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ai-card-poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 65%, rgba(12, 15, 22, 0.98) 100%);
    }

    .ai-card-info-col {
      padding: 26px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      position: relative;
      z-index: 5;
      box-sizing: border-box;
    }

    .ai-card-main-content {
      display: flex;
      flex-direction: column;
    }

    .ai-match-score-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
      border: 1px solid rgba(255, 255, 255, 0.3);
      font-size: 11.5px;
      font-weight: 800;
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    }

    .ai-match-score-badge svg { width: 13px; height: 13px; fill: #fff; }

    .ai-card-title {
      font-size: clamp(20px, 2.6vw, 30px);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.6px;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .ai-card-synopsis {
      font-size: 13.5px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Matcher Action Buttons Bar - Perfectly Proportioned 3-Button Layout */
    .ai-matcher-actions-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      box-sizing: border-box;
    }

    .btn-ai-pass {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 48px;
      padding: 0 16px;
      border-radius: var(--radius-full);
      background: rgba(255, 85, 85, 0.12);
      border: 1px solid rgba(255, 85, 85, 0.35);
      color: #ff7575;
      font-size: 13.5px;
      font-weight: 800;
      transition: all 0.25s var(--ease-netflix);
      white-space: nowrap;
    }

    .btn-ai-pass:hover {
      background: rgba(255, 85, 85, 0.25);
      border-color: #ff7575;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 85, 85, 0.3);
    }

    .btn-ai-pass svg { width: 15px; height: 15px; stroke-width: 2.8; }

    .ai-matcher-actions-bar .btn-liquid-secondary {
      flex: 1;
      height: 48px;
      padding: 0 16px;
      font-size: 13.5px;
      gap: 8px;
      white-space: nowrap;
    }

    .btn-ai-watch {
      flex: 1.35;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 48px;
      padding: 0 20px;
      border-radius: var(--radius-full);
      background: linear-gradient(180deg, #ffffff 0%, #dce0e8 100%);
      color: #06070a;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 14px 42px rgba(255, 255, 255, 0.5), inset 0 1px 1px #fff;
      transition: all 0.25s var(--ease-netflix);
      white-space: nowrap;
    }

    .btn-ai-watch:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 12px 34px rgba(255, 255, 255, 0.45), inset 0 1px 1px #fff;
    }

    .btn-ai-watch svg { width: 17px; height: 17px; fill: #06070a; }

