* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 173, 53, 0.3), transparent 24%),
    linear-gradient(135deg, #fff8ed 0%, #f8f5e8 52%, #edf7ee 100%);
  color: #17351f;
  font-family: Arial, Helvetica, sans-serif;
}

.construction-page {
  min-height: 100vh;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #1d4f31;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #b7ccb4;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  background: #ffffff;
}

.construction-panel {
  min-height: calc(100vh - 124px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.construction-panel h1 {
  margin: 0;
  color: #1d4f31;
  font-family: "Courier New", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 1;
}

.construction-panel p {
  margin: 0;
  color: #8b2739;
  font-family: "Courier New", Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.35rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
