/* /under-construction.css */

/* Hide all main content EXCEPT the UC card when enabled */
body.uc--merch-active main > *:not(.uc-card) {
  display: none !important;
}

/* Card container */
.uc-card {
  margin: 24px auto 40px;
  max-width: 760px;
  background: #141418;
  border: 1px solid #26262b;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* Inner spacing & layout */
.uc-inner {
  padding: 24px 18px 26px;
  text-align: center;
}

/* Icon */
.uc-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

/* Title & text */
.uc-title {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
.uc-msg {
  margin: 2px 0 8px;
  color: #cfcfe0;
}
.uc-note {
  margin: 0 0 12px;
  color: #a8a8b8;
  font-size: 14px;
}

/* Actions */
.uc-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.uc-actions .btn-prim,
.uc-actions .btn-sec {
  appearance: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.uc-actions .btn-prim {
  background: #eaeaf2;
  border: 1px solid #eaeaf2;
  color: #000;
}
.uc-actions .btn-prim:hover { filter: brightness(.95); }
.uc-actions .btn-sec {
  background: #1a1b20;
  border: 1px solid #2a2a30;
  color: #eaeaf2;
}
.uc-actions .btn-sec:hover { background: #22232a; }

/* Tighten on small screens */
@media (max-width: 720px) {
  .uc-inner { padding: 20px 14px 22px; }
}