:root {
  --pramy-red: #ed1c24;
}

body {
  background: linear-gradient(135deg, #c11a2033 0%, #c11a2033 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Arial", sans-serif;
}

.logo {
  max-width: 200px;
}

.coming-soon-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.coming-soon-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--pramy-red);
  margin-bottom: 1rem;
}

.under-construction {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.message {
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 576px) {
  .coming-soon-container {
    padding: 2rem 1rem;
    margin: 1rem;
  }

  .coming-soon-text {
    font-size: 2rem;
  }
}
