/* Modal Coming Soon - Styles */
.coming-soon-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.coming-soon-modal {
  background: white;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.coming-soon-overlay.active .coming-soon-modal {
  transform: scale(1);
}

.coming-soon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.2s ease;
  z-index: 10;
}

.coming-soon-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.coming-soon-content {
  padding: 15px 30px 10px;
  text-align: center;
}

.coming-soon-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.coming-soon-title {
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .coming-soon-modal {
    width: 95%;
    max-width: none;
  }

  .coming-soon-content {
    padding: 40px 24px 24px;
  }

  .coming-soon-title {
    font-size: 26px;
  }

  .coming-soon-subtitle {
    font-size: 14px;
  }
}
