
:root {
  --schaduw-bg: #241f25;
  --schaduw-card: #302832;
  --schaduw-card-hover: #382f3a;
  --schaduw-text: #f7f3f6;
  --schaduw-muted: #c9c0c8;
  --schaduw-line: #514653;
  --schaduw-accent: #f1e6d8;
  --schaduw-accent-text: #2b232d;
  --schaduw-input: #19161a;
}

.schaduw-card,
.schaduw-dashboard {
  max-width: 820px;
  margin: 24px auto;
  padding: 30px;
  background: var(--schaduw-bg) !important;
  border: 1px solid var(--schaduw-line);
  border-radius: 20px;
  box-sizing: border-box;
  color: var(--schaduw-text) !important;
  line-height: 1.62;
}

.schaduw-card *,
.schaduw-dashboard * {
  box-sizing: border-box;
}

.schaduw-card h2,
.schaduw-card h3,
.schaduw-dashboard h2,
.schaduw-dashboard h3,
.schaduw-card p,
.schaduw-dashboard p,
.schaduw-card label,
.schaduw-dashboard label,
.schaduw-card span,
.schaduw-dashboard span {
  color: var(--schaduw-text) !important;
}

.schaduw-card h2,
.schaduw-dashboard h2 {
  margin: 4px 0 10px;
  line-height: 1.2;
}

.schaduw-card p,
.schaduw-dashboard p {
  margin-top: 0;
}

.schaduw-eyebrow,
.schaduw-tile-eyebrow {
  color: var(--schaduw-muted) !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 1;
}

.schaduw-form {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.schaduw-form label {
  font-weight: 700;
  margin-top: 6px;
}

.schaduw-form input[type="text"],
.schaduw-form input[type="email"],
.schaduw-form input[type="password"] {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--schaduw-line);
  border-radius: 10px;
  background: var(--schaduw-input) !important;
  color: var(--schaduw-text) !important;
  font: inherit;
}

.schaduw-form input::placeholder {
  color: #9e949f !important;
}

.schaduw-form input:focus {
  outline: 2px solid var(--schaduw-accent);
  outline-offset: 2px;
}

.schaduw-form small {
  margin-top: -4px;
  color: var(--schaduw-muted) !important;
}

.schaduw-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400 !important;
  margin: 8px 0 4px;
}

.schaduw-button {
  display: inline-block;
  width: auto;
  border: 1px solid var(--schaduw-accent);
  border-radius: 999px;
  padding: 11px 19px;
  background: var(--schaduw-accent) !important;
  color: var(--schaduw-accent-text) !important;
  text-decoration: none !important;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  justify-self: start;
}

.schaduw-button:hover {
  opacity: .9;
}

.schaduw-button-secondary {
  background: transparent !important;
  color: var(--schaduw-text) !important;
  border: 1px solid var(--schaduw-muted);
}

.schaduw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.schaduw-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  font-size: .95rem;
}

.schaduw-links a,
.schaduw-text-link,
.schaduw-tile-link {
  color: var(--schaduw-accent) !important;
  text-decoration: none;
}

.schaduw-links a:hover,
.schaduw-text-link:hover,
.schaduw-tile-link:hover {
  text-decoration: underline;
}

.schaduw-alert {
  margin: 18px 0;
  padding: 13px 15px;
  border-radius: 10px;
  background: #372b30 !important;
  color: var(--schaduw-text) !important;
}

.schaduw-alert-error {
  border: 1px solid #a66d76;
}

.schaduw-alert li,
.schaduw-alert strong {
  color: var(--schaduw-text) !important;
}

.schaduw-dashboard-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.schaduw-text-link {
  white-space: nowrap;
}

.schaduw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.schaduw-tile {
  padding: 22px;
  background: var(--schaduw-card) !important;
  border: 1px solid var(--schaduw-line);
  border-radius: 16px;
  transition: background .2s ease, transform .2s ease;
}

.schaduw-tile:hover {
  background: var(--schaduw-card-hover) !important;
  transform: translateY(-1px);
}

.schaduw-tile h3 {
  margin: 8px 0;
  font-size: 1.08rem;
}

.schaduw-tile p {
  color: var(--schaduw-muted) !important;
  font-size: .94rem;
}

.schaduw-coming {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #443948 !important;
  color: var(--schaduw-muted) !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 1;
}

.schaduw-tile-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .schaduw-card,
  .schaduw-dashboard {
    padding: 22px 17px;
    border-radius: 15px;
  }

  .schaduw-grid {
    grid-template-columns: 1fr;
  }

  .schaduw-dashboard-top {
    display: block;
  }

  .schaduw-text-link {
    display: inline-block;
    margin-top: 8px;
  }
}
