#app-promo-modal {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.app-modal-content {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  max-width: 480px;
  width: 100%;
  padding: 30px 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  font-family: 'azo-sans-web', sans-serif;
  text-align: center;
  animation: fadeInModal 0.3s ease-out;
}

.app-modal-content h2 {
  font-size: 24px;
  color: #ac2c2c;
  margin-bottom: 15px;
  font-weight: 800;
}

.app-modal-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.app-store-buttons a {
  display: inline-block;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.app-store-buttons a img {
  height: 50px;
  display: block;
}

.app-store-buttons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}


.close-app-modal {
  background: #ac2c2c;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
}

.close-app-modal:hover {
  background: #4c7abc;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
