  .modern-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: white;
  }

  .modern-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .modern-close:hover {
    background: #f8f9fa;
    color: #333;
    transform: scale(1.1);
  }

  .modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: white;
  }

  .modal-title {
    color: #333;
    font-size: 1.5rem;
  }

  .download-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 15px;
  }

  .download-card.available {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
  }

  .download-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
  }

  .download-card.available .card-icon {
    background: linear-gradient(135deg, #4caf50, #45a049);
  }

  .download-card.coming-soon .card-icon {
    background: linear-gradient(135deg, #6c757d, #5a6268);
  }

  .btn-download {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }

  .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  }

  .offer-badge {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    display: inline-block;
    color: #2e7d2e;
    font-size: 14px;
  }
  
  .android-coming-soon {
    color: #28a745;
    font-size: 14px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modal-dialog {
      margin: 20px;
    }

    .modal-body {
      padding: 20px !important;
    }

    .modal-title {
      font-size: 1.3rem;
    }

    .download-card {
      padding: 15px;
    }

    .btn-download {
      font-size: 13px;
      padding: 8px 16px;
    }
  }

  .custom-btn {
  background-color: #036661;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #024a47;
  transform: translateY(-1px);
}

.custom-btn:active {
  transform: translateY(0);
}
  /* Smooth entrance animation */
  .modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-30px);
    transition: all 0.3s ease;
  }

  .modal.show .modal-dialog {
    transform: scale(1) translateY(0);
  }
