
  .construction {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at top, #1d4ed8, #0f172a 60%);
  }

  .content {
    max-width: 480px;
    background: rgba(15, 23, 42, 0.8);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
  }

  .construction   h1 {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff7ed;
  }

  .construction   p {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff7ed;
  }

  .construction a {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    color: #0f172a;
    background: #fbbf24;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .construction a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
  }