  
   /* =============================================
       TOYVERSE OFFER POPUP — Embed-ready snippet
       Paste everything inside <style> into your
       site's CSS, and the HTML + <script> into
       your page's <body> (before </body>).
    ============================================= */
 
    #tv-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 5, 30, 0.6);
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(3px);
      animation: tvFadeIn 0.3s ease forwards;
    }
    @keyframes tvFadeIn { from { opacity: 0; } to { opacity: 1; } }
 
    #tv-overlay.hiding {
      animation: tvFadeOut 0.3s ease forwards;
    }
    @keyframes tvFadeOut { to { opacity: 0; } }
 
    #tv-popup {
      background: #ffffff;
      border-radius: 24px;
      max-width: 420px;
      width: 100%;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(255, 61, 113, 0.2), 0 4px 20px rgba(0,0,0,0.12);
      position: relative;
      font-family: 'Poppins', sans-serif;
      animation: tvPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      transform: scale(0.65) translateY(30px);
      opacity: 0;
    }
    @keyframes tvPopIn { to { transform: scale(1) translateY(0); opacity: 1; } }
 
    #tv-popup.closing {
      animation: tvPopOut 0.28s ease forwards;
    }
    @keyframes tvPopOut { to { transform: scale(0.82) translateY(16px); opacity: 0; } }
 
    #tv-close {
      position: absolute;
      top: 10px; right: 10px;
      z-index: 10;
      width: 30px; height: 30px;
      border-radius: 50%;
      background: rgba(0,0,0,0.32);
      border: none; cursor: pointer;
      color: #fff;
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      font-family: 'Poppins', sans-serif;
    }
    #tv-close:hover { background: rgba(0,0,0,0.55); }
 
    .tv-ribbon {
      background: linear-gradient(90deg, #FF6B35, #FF3D71);
      padding: 8px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Nunito', sans-serif;
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
 
    .tv-video-wrap {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #1a0a2e;
      cursor: pointer;
      overflow: hidden;
    }
 
    .tv-video-scene {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #1a0a2e 0%, #3d1a5c 40%, #ff6b35 120%);
    }
 
    .tv-toy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      padding: 12px;
      width: 100%;
    }
 
    .tv-toy-card {
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 8px 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      border: 0.5px solid rgba(255,255,255,0.15);
    }
 
    .tv-toy-emoji {
      font-size: 26px;
      animation: tvWobble 2s ease-in-out infinite;
    }
    .tv-toy-card:nth-child(2) .tv-toy-emoji { animation-delay: 0.3s; }
    .tv-toy-card:nth-child(3) .tv-toy-emoji { animation-delay: 0.6s; }
    .tv-toy-card:nth-child(4) .tv-toy-emoji { animation-delay: 0.9s; }
    .tv-toy-card:nth-child(5) .tv-toy-emoji { animation-delay: 1.2s; }
    .tv-toy-card:nth-child(6) .tv-toy-emoji { animation-delay: 1.5s; }
 
    @keyframes tvWobble {
      0%, 100% { transform: rotate(-5deg) scale(1); }
      50%       { transform: rotate(5deg) scale(1.12); }
    }
 
    .tv-toy-price {
      font-family: 'Nunito', sans-serif;
      font-size: 9px; font-weight: 800;
      color: #FFD166;
    }
    .tv-toy-name {
      font-family: 'Poppins', sans-serif;
      font-size: 8px;
      color: rgba(255,255,255,0.75);
      text-align: center;
      line-height: 1.2;
    }
 
    .tv-play-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0.38);
      transition: background 0.25s;
    }
    .tv-play-overlay:hover { background: rgba(0,0,0,0.2); }
 
    .tv-play-btn {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.94);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
      transition: transform 0.2s;
    }
    .tv-play-overlay:hover .tv-play-btn { transform: scale(1.1); }
 
    .tv-triangle {
      width: 0; height: 0;
      border-style: solid;
      border-width: 10px 0 10px 18px;
      border-color: transparent transparent transparent #FF3D71;
      margin-left: 4px;
    }
 
    .tv-eq-bars {
      position: absolute; bottom: 8px; left: 12px;
      display: none; gap: 3px; align-items: flex-end;
    }
    .tv-eq-bar {
      width: 3px; border-radius: 2px;
      background: #FFD166;
    }
    .tv-eq-bar:nth-child(1) { height: 8px;  animation: tvEq 0.6s 0s   ease-in-out infinite alternate; }
    .tv-eq-bar:nth-child(2) { height: 14px; animation: tvEq 0.6s 0.15s ease-in-out infinite alternate; }
    .tv-eq-bar:nth-child(3) { height: 10px; animation: tvEq 0.6s 0.3s  ease-in-out infinite alternate; }
    .tv-eq-bar:nth-child(4) { height: 16px; animation: tvEq 0.6s 0.45s ease-in-out infinite alternate; }
    @keyframes tvEq { to { height: 4px; } }
 
    .tv-content { padding: 16px 20px 20px; }
 
    .tv-offer-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: #FFF3E0; color: #E65100;
      font-family: 'Nunito', sans-serif;
      font-size: 11px; font-weight: 800;
      padding: 4px 12px; border-radius: 20px;
      margin-bottom: 10px;
      border: 1px dashed #FF9800;
      animation: tvPulse 2s ease-in-out infinite;
    }
    @keyframes tvPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.03);} }
 
    .tv-headline {
      font-family: 'Nunito', sans-serif;
      font-size: 21px; font-weight: 900;
      color: #1a0a2e;
      line-height: 1.25; margin-bottom: 4px;
    }
 
    .tv-sub {
      font-size: 12.5px; color: #666;
      line-height: 1.55; margin-bottom: 12px;
    }
 
    .tv-gst-badge {
      display: inline-flex; align-items: center; gap: 4px;
      background: #E8F5E9; color: #2E7D32;
      font-family: 'Nunito', sans-serif;
      font-size: 11px; font-weight: 800;
      padding: 3px 10px; border-radius: 20px;
      margin-bottom: 14px;
    }
 
    .tv-price-row {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 14px;
    }
    .tv-price-from { font-size: 12px; color: #999; }
    .tv-price-val {
      font-family: 'Nunito', sans-serif;
      font-size: 26px; font-weight: 900; color: #FF3D71;
    }
    .tv-price-unit { font-size: 12px; color: #999; }
    .tv-discount-pill {
      background: #FF3D71; color: #fff;
      font-family: 'Nunito', sans-serif;
      font-size: 12px; font-weight: 800;
      padding: 3px 10px; border-radius: 20px;
      margin-left: auto;
    }
 
    .tv-timer-box {
      background: #FFF8F0; border-radius: 12px;
      padding: 10px 14px; margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .tv-timer-label { font-size: 11px; color: #999; white-space: nowrap; }
    .tv-timer-display {
      font-family: 'Nunito', sans-serif;
      font-size: 18px; font-weight: 900;
      color: #FF3D71; letter-spacing: 0.05em;
      min-width: 72px;
    }
    .tv-timer-track {
      flex: 1; height: 4px;
      background: #FFE0E8; border-radius: 2px; overflow: hidden;
    }
    .tv-timer-fill {
      height: 100%;
      background: linear-gradient(90deg, #FF6B35, #FF3D71);
      border-radius: 2px;
      transition: width 1s linear;
    }
 
    .tv-shop-btn {
      width: 100%; padding: 14px;
      background: linear-gradient(90deg, #FF6B35, #FF3D71);
      color: #fff; border: none; border-radius: 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 16px; font-weight: 900;
      cursor: pointer; letter-spacing: 0.03em;
      transition: transform 0.15s, box-shadow 0.15s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: 0 6px 20px rgba(255,61,113,0.35);
      text-decoration: none;
    }
    .tv-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,61,113,0.45); }
    .tv-shop-btn:active { transform: scale(0.97); }
 
    .tv-trust-row {
      display: flex; justify-content: space-around;
      margin-top: 12px;
    }
    .tv-trust-item {
      display: flex; flex-direction: column; align-items: center; gap: 2px;
      font-size: 10px; color: #999; text-align: center;
    }
    .tv-trust-icon { font-size: 15px; }
 
    /* Floating confetti dots */
    .tv-dot {
      position: fixed;
      border-radius: 50%;
      opacity: 0.15;
      pointer-events: none;
      z-index: 9997;
      animation: tvDrift linear infinite;
    }
    @keyframes tvDrift {
      0%   { transform: translateY(100vh) rotate(0deg); opacity: 0.15; }
      100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
    }
  