* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.12), transparent 25%);
  z-index: 0;
}

.construction-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.icon {
  font-size: 64px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 30px;
}

.contact-button {
  display: inline-block;
  text-decoration: none;
  background-color: #f59e0b;
  color: #0f172a;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.contact-button:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .content-card {
    padding: 35px 25px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}