/* Background overlay */
    .modal {
      display: block; 
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }

    /* Modal content */
    .modal-content {
      background: transparent;
      margin: 80px auto;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 300px;
      text-align: center;
      /*box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
      animation: pop 0.3s ease;
      border: none;
    }

    /* Animation */
    @keyframes pop {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Close button */
    .close {
      color: #fff;
      float: right;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      text-align: right;
    }

    .close:hover {
      color: #333;
    }

    .offer-title {
      font-size: 24px;
      font-weight: bold;
      color: #e63946;
    }

    .offer-details {
      margin: 15px 0;
      font-size: 16px;
    }

    .btn {
      display: inline-block;
      background: #e63946;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #b91c1c;
    }
    
    .popup-img{
        width: 100%;
        margin: -20px auto;
    }
    
    .app-icon{
        margin-top: -100px;
    }
    
    