.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .exit-intent-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  .exit-popup-content {
    background: linear-gradient(135deg, #1a1a2e, #2d1b69, #1a1a2e);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 3px solid #00FF66;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 255, 102, 0.3), 0 0 80px rgba(138, 43, 226, 0.2);
    animation: popupAppear 0.5s ease;
  }
  
  .exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .exit-popup-close:hover {
    background: rgba(0, 255, 102, 0.2);
    color: #00FF66;
    border-color: #00FF66;
    transform: rotate(90deg);
  }
  
  .exit-popup-icon {
    font-size: 52px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.6));
  }
  
  .exit-popup-title {
    font-size: 40px;
    font-weight: bold;
    color: #00FF66;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
    animation: pulse 2s infinite;
    letter-spacing: 1px;
  }
  
  .exit-popup-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 500;
  }
  
  .exit-bonus-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(0, 255, 102, 0.08));
    border-radius: 15px;
    border: 2px solid #00FF66;
    box-shadow: inset 0 2px 10px rgba(0, 255, 102, 0.1), 0 0 30px rgba(138, 43, 226, 0.2);
  }
  
  .exit-bonus-amount {
    font-size: 36px;
    font-weight: bold;
    color: #00FF66;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
  }
  
  .exit-bonus-plus {
    font-size: 30px;
    color: #f0f0f0;
    opacity: 0.9;
    font-weight: bold;
  }
  
  .exit-bonus-percent {
    font-size: 36px;
    font-weight: bold;
    color: #00FF66;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
  }
  
  .exit-popup-text {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 500;
  }
  
  .exit-popup-cta {
    background: linear-gradient(135deg, #00FF66, #00CC52);
    color: #000000;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 255, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulseButton 2s infinite;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
  }
  
  .exit-popup-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 102, 0.7);
    background: linear-gradient(135deg, #00FF66, #33FF88);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .exit-popup-footer {
    font-size: 13px;
    color: rgba(0, 255, 102, 0.8);
    font-style: italic;
    background: rgba(0, 255, 102, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 255, 102, 0.2);
  }
  
  /* Animations */
  @keyframes popupAppear {
    0% {
      transform: scale(0.8) translateY(-30px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes pulse {
    0%, 100% { 
      transform: scale(1);
      text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
    }
    50% { 
      transform: scale(1.06);
      text-shadow: 0 0 30px rgba(0, 255, 102, 0.8);
    }
  }
  
  @keyframes pulseButton {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 8px 30px rgba(0, 255, 102, 0.5);
    }
    50% { 
      transform: scale(1.05);
      box-shadow: 0 12px 40px rgba(0, 255, 102, 0.7);
    }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  
  /* Mobile adaptation */
  @media (max-width: 768px) {
    .exit-popup-content {
      padding: 35px 25px;
      max-width: 95%;
      border-width: 2px;
    }
    
    .exit-popup-title {
      font-size: 32px;
    }
    
    .exit-popup-subtitle {
      font-size: 18px;
    }
    
    .exit-bonus-offer {
      flex-direction: column;
      gap: 10px;
      padding: 20px;
    }
    
    .exit-bonus-amount,
    .exit-bonus-percent {
      font-size: 28px;
    }
    
    .exit-bonus-plus {
      font-size: 24px;
      transform: rotate(90deg);
    }
    
    .exit-popup-cta {
      font-size: 16px;
      padding: 18px 30px;
    }
    
    .exit-popup-icon {
      font-size: 45px;
    }
  }
  
  /* Tablet adaptation */
  @media (max-width: 1024px) and (min-width: 769px) {
    .exit-popup-content {
      max-width: 85%;
      padding: 40px 30px;
    }
  }


  .floating-bonus {
    position: fixed;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: left 0.4s ease;
  }
  
  .floating-bonus.open {
    left: 0;
  }
  
  .bonus-toggle {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(135deg, #00FF66, #00CC52);
    color: #000000;
    padding: 12px 22px;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    font-weight: bold;
    writing-mode: vertical-rl;
    animation: wiggle 3s infinite;
    box-shadow: 0 4px 20px rgba(0, 255, 102, 0.5);
    border: 2px solid #fff;
  }
  
  .bonus-content {
    background: linear-gradient(135deg, #1a1a2e, #2d1b69, #1a1a2e);
    padding: 30px 25px;
    border-radius: 0 15px 15px 0;
    width: 280px;
    text-align: center;
    color: white;
    border: 3px solid #00FF66;
    box-shadow: 0 8px 30px rgba(0, 255, 102, 0.3), 0 0 50px rgba(138, 43, 226, 0.2);
  }
  
  .bonus-amount {
    font-size: 34px;
    font-weight: bold;
    color: #00FF66;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
  }
  
  .bonus-plus {
    font-size: 26px;
    margin: 12px 0;
    opacity: 0.9;
    color: #fff;
  }
  
  .bonus-percent {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #00FF66;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
  }
  
  .bonus-claim-btn {
    background: linear-gradient(135deg, #00FF66, #00CC52);
    color: #000000;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0, 255, 102, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .bonus-claim-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 255, 102, 0.7);
    background: linear-gradient(135deg, #00FF66, #33FF88);
  }
  
  @keyframes wiggle {
    0%, 100% { transform: translateY(-50%) rotate(-90deg); }
    25% { transform: translateY(-55%) rotate(-90deg); }
    75% { transform: translateY(-45%) rotate(-90deg); }
  }
  
  @keyframes pulse {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 4px 20px rgba(0, 255, 102, 0.5);
    }
    50% { 
      transform: scale(1.08);
      box-shadow: 0 6px 25px rgba(0, 255, 102, 0.7);
    }
  }
  
  @media (max-width: 768px) {
    .bonus-content {
      width: 250px;
      padding: 25px 20px;
    }
    
    .bonus-amount,
    .bonus-percent {
      font-size: 28px;
    }
    
    .bonus-claim-btn {
      padding: 12px 25px;
      font-size: 14px;
    }
  }