  /* =========================
     EXIT MODAL STYLES - UPDATED v2
     ========================= */
  
  /* Modal Overlay */
  .exit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-y: auto;
  }
  
  .exit-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Dark overlay background */
  .exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: -1;
  }
  
  /* Modal Content Container - UPDATED: More compact */
  .exit-modal-content {
    position: relative;
    background: #F5F5F5;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    padding: 40px 40px 35px 40px; /* REDUCED from 50px 45px 45px 45px */
    border-radius: 0;
    border: 6px solid #C00000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: modalSlideIn 0.4s ease-out;
  }
  
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-30px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Close Button */
  .modal-close {
    position: absolute;
    top: 12px; /* REDUCED from 15px */
    right: 12px; /* REDUCED from 15px */
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #C00000;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #C00000;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
  }
  
  .modal-close:hover {
    background: #C00000;
    color: #FFFFFF;
    transform: rotate(90deg);
  }
  
  /* Headline "WAIT!" */
  .exit-headline {
    font-size: 60px;
    font-weight: 700;
    color: #CC0000;
    margin: 0 0 20px 0; /* REDUCED from 25px */
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  /* UPDATED: Subheadline - NOW BOLD */
  .exit-subheadline {
    font-size: 28px;
    font-weight: 700; /* CHANGED from 400 to 700 (bold) */
    color: #2B2B2B;
    margin: 0 0 20px 0; /* REDUCED from 25px */
    line-height: 30px;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  /* Body text paragraph 1 - UPDATED: More compact */
  .exit-body-1 {
    font-size: 24px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.4; /* REDUCED from 1.5 */
    margin: 0 0 15px 0; /* REDUCED from 20px */
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0 15px;
  }
  
  /* Body text paragraph 2 - UPDATED: More compact */
  .exit-body-2 {
    font-size: 24px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.4; /* REDUCED from 1.5 */
    margin: 0 0 20px 0; /* REDUCED from 30px */
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0 15px;
  }
  
  /* NEW: Highlight class for emphasis (bold red) */
  .highlight {
    font-weight: 700;
    color: #CC0000;
  }
  
  /* ALTERNATIVE: Highlight class (bold black - more subtle) */
  .highlight-bold {
    font-weight: 700;
    color: #2B2B2B;
  }
  
  /* ALTERNATIVE: Highlight class (bold with underline) */
  .highlight-underline {
    font-weight: 700;
    color: #CC0000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
  }
  
  /* Timer Section - UPDATED: More compact */
  .exit-timer-section {
    font-size: 28px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0 0 25px 0; /* REDUCED from 30px */
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  .exit-timer-section .timer-text {
    display: inline;
  }
  
  .exit-timer-section .timer-display {
    color: #C00000;
    font-weight: 900;
  }
  
  /* Primary CTA Button - UPDATED: More compact */
  .exit-cta-primary {
    width: 100%;
    max-width: 620px;
    height: 70px; /* REDUCED from 75px */
    background-color: #FFD53D;
    color: #000000;
    border: none;
    border-width: 1px 1px 4px;
    border-style: solid;
    border-color: #E6C136;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0 auto 20px auto; /* REDUCED from 30px */
    display: block;
    box-sizing: border-box;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5px;
  }
  
  .exit-cta-primary:hover {
    background-color: #FFDB4D;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .exit-cta-primary:active {
    transform: translateY(0);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  }
  
  /* Secondary text option */
  .exit-secondary-option {
    font-size: 16px;
    color: #4A4A4A;
    margin: 0;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  .exit-secondary-option a {
    color: #0066CC;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .exit-secondary-option a:hover {
    color: #0052A3;
  }
  
  /* =========================
     MOBILE RESPONSIVE
     ========================= */
  
  @media (max-width: 768px) {
    .exit-modal-content {
      width: 95%;
      padding: 35px 25px 30px 25px; /* More compact on mobile */
      border-width: 5px;
    }
    
    .exit-headline {
      font-size: 48px;
      margin-bottom: 18px;
      letter-spacing: 1.5px;
    }
    
    .exit-subheadline {
      font-size: 24px;
      line-height: 26px;
      margin-bottom: 18px;
    }
    
    .exit-body-1,
    .exit-body-2 {
      font-size: 20px;
      padding: 0 10px;
      line-height: 1.3;
    }
    
    .exit-body-1 {
      margin-bottom: 14px;
    }
    
    .exit-body-2 {
      margin-bottom: 18px;
    }
    
    .exit-timer-section {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .exit-cta-primary {
      height: 65px;
      font-size: 20px;
      margin-bottom: 18px;
    }
    
    .exit-secondary-option {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .exit-modal-content {
      padding: 30px 20px 25px 20px;
      border-width: 4px;
    }
    
    .exit-headline {
      font-size: 42px;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }
    
    .exit-subheadline {
      font-size: 22px;
      line-height: 24px;
      margin-bottom: 15px;
    }
    
    .exit-body-1,
    .exit-body-2 {
      font-size: 18px;
      padding: 0 5px;
      line-height: 1.3;
    }
    
    .exit-body-1 {
      margin-bottom: 12px;
    }
    
    .exit-body-2 {
      margin-bottom: 15px;
    }
    
    .exit-timer-section {
      font-size: 22px;
      margin-bottom: 18px;
    }
    
    .exit-cta-primary {
      height: 60px;
      font-size: 18px;
      margin-bottom: 15px;
    }
    
    .exit-secondary-option {
      font-size: 14px;
    }
    
    .modal-close {
      width: 36px;
      height: 36px;
      font-size: 20px;
      top: 10px;
      right: 10px;
    }
  }
  
  /* Prevent body scroll when modal is open */
  body.modal-open {
    overflow: hidden;
  }