/* Market Page Styles */
body {
  background-image: url('../../images/background.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.maintenance-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.maintenance-container {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background-color: rgba(39, 41, 40, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.maintenance-icon {
  color: hotpink;
  margin-bottom: 20px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.maintenance-container h1 {
  font-family: 'Potta One';
  font-size: 36px;
  margin: 0 0 10px 0;
  color: hotpink;
}

.maintenance-container h2 {
  font-family: 'Potta One';
  font-size: 24px;
  margin: 0 0 20px 0;
  color: white;
}

.maintenance-container p {
  color: darkgrey;
  line-height: 1.6;
  margin-bottom: 30px;
}

.maintenance-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: hotpink;
  color: white;
}

.btn-primary:hover {
  background-color: deeppink;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #3a3a3a;
  color: white;
}

.btn-secondary:hover {
  background-color: #4a4a4a;
  color: white;
  transform: translateY(-2px);
}

.maintenance-note {
  padding: 15px;
  background-color: rgba(255, 105, 180, 0.1);
  border-radius: 10px;
  border-left: 3px solid hotpink;
}

.maintenance-note p {
  margin: 0;
  color: #aaa;
  font-style: italic;
  font-size: 14px;
}

@media (max-width: 600px) {
  .maintenance-container {
    padding: 30px 20px;
  }
  .maintenance-container h1 {
    font-size: 28px;
  }
  .maintenance-container h2 {
    font-size: 20px;
  }
  .maintenance-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
