:root {
  --bg: #f3f1ea;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --border: #d8d0c3;
  --text: #1f2933;
  --muted: #5c6b73;
  --primary: #12664f;
  --primary-strong: #0d4d3d;
  --accent: #d97b29;
  --danger: #ab2f2f;
  --shadow: 0 16px 40px rgba(31, 41, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 123, 41, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #efe8dc 100%);
}

body.setup-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  background: #ece6d8;
  color: var(--text);
  transition: transform 0.15s ease, background 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
  background: #e1d9ca;
}

button.primary {
  background: var(--primary);
  color: #fff;
}

button.primary:hover {
  background: var(--primary-strong);
}

button.danger-text {
  background: transparent;
  color: var(--danger);
  padding-left: 0;
  padding-right: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: var(--surface-strong);
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(18, 102, 79, 0.2);
  border-color: var(--primary);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(18, 102, 79, 0.95), rgba(12, 64, 51, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent);
  color: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  opacity: 0.82;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.15rem, 2.7vw, 1.7rem);
}

.hero-copy {
  max-width: 25rem;
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  min-width: 200px;
}

.hero-actions button {
  padding: 0.65rem 0.9rem;
}

.layout {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.update-panel {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 0.6rem;
}

.update-menu-btn {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(18, 102, 79, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.update-panel-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  width: min(24rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 102, 79, 0.2);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.update-panel-card[hidden],
.update-status-panel[hidden] {
  display: none;
}

.menu-panel-actions {
  display: grid;
  gap: 0.6rem;
}

.update-status-panel {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(18, 102, 79, 0.12);
}

.game-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.game-nav-btn {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(18, 102, 79, 0.12);
}

.game-nav-btn.active {
  background: var(--primary);
  color: #fff;
}

.update-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.update-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.utility-btn {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  background: rgba(18, 102, 79, 0.08);
  border: 1px solid rgba(18, 102, 79, 0.14);
}

.utility-btn:hover {
  background: rgba(18, 102, 79, 0.12);
}

.primary-panel {
  margin-top: 0.25rem;
}

.card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(216, 208, 195, 0.75);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  min-width: 0;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.helper {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.panel-heading {
  margin-bottom: 1rem;
}

.full-width {
  margin-top: 1rem;
}

.inline-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.setup-heading-actions {
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.table-wrap .bench-rule-col {
  display: none;
}

.table-wrap.show-bench-rules .bench-rule-col {
  display: table-cell;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

th {
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-cell {
  width: 110px;
  text-align: center;
}

.max-bench-cell {
  min-width: 130px;
}

.checkbox-cell input {
  width: auto;
  transform: scale(1.2);
}

.checkbox-cell button {
  width: 100%;
}

.messages {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feedback-tracker {
  display: grid;
  gap: 1rem;
}

.feedback-quarter-row {
  display: grid;
  gap: 0.6rem;
}

.quarter-label {
  margin: 0;
}

.feedback-quarter-tabs {
  width: 100%;
  justify-content: flex-start;
  padding-bottom: 0;
}

.feedback-player-switcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: end;
}

.player-select-wrap {
  min-width: 0;
}

.feedback-player-status {
  display: flex;
  align-items: end;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feedback-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: var(--surface);
}

.feedback-panel h3 {
  margin-top: 0;
}

.live-feedback-header {
  align-items: center;
}

.live-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(18, 102, 79, 0.12);
  border: 1px solid rgba(18, 102, 79, 0.18);
  font-weight: 700;
}

.compact-toggle-btn {
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
}

.feedback-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.feedback-category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  min-height: 72px;
  background: rgba(18, 102, 79, 0.08);
  border: 1px solid rgba(18, 102, 79, 0.16);
}

.feedback-category-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(18, 102, 79, 0.16);
}

.feedback-note-panel label {
  gap: 0.35rem;
}

.feedback-note-actions {
  margin-top: 0.6rem;
}

.feedback-note-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.feedback-summary-text {
  margin: 0;
  line-height: 1.6;
  white-space: pre-wrap;
}

.small-pill {
  font-size: 0.9rem;
  padding: 0.35rem 0.65rem;
}

.post-game-report {
  display: grid;
  gap: 1rem;
}

.report-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.85rem;
}

.report-card {
  gap: 0.75rem;
}

.report-card-header h3 {
  margin-bottom: 0.35rem;
}

.setup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.45);
  z-index: 30;
}

.setup-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(540px, 100%);
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  z-index: 40;
  pointer-events: none;
}

.setup-panel.open {
  transform: translateX(0);
  pointer-events: auto;
}

.setup-panel-shell {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  overflow-y: auto;
  border-radius: 24px;
  background: #f7f4ee;
  border: 1px solid rgba(216, 208, 195, 0.95);
  box-shadow: 0 20px 60px rgba(31, 41, 51, 0.22);
}

.setup-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.setup-eyebrow {
  color: var(--muted);
}

.setup-panel-header h2 {
  margin: 0 0 0.4rem;
}

.setup-panel-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0), #f7f4ee 40%);
}

.setup-panel-primary-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.message {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
}

.message.info {
  background: rgba(18, 102, 79, 0.08);
  border-color: rgba(18, 102, 79, 0.18);
}

.message.warn {
  background: rgba(217, 123, 41, 0.1);
  border-color: rgba(217, 123, 41, 0.3);
}

.rotation-output {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.placeholder {
  margin: 0;
  color: var(--muted);
}

.rotation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.period-toolbar {
  display: block;
}

.period-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  max-width: 100%;
}

.period-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  background: rgba(18, 102, 79, 0.08);
  border: 1px solid rgba(18, 102, 79, 0.12);
}

.period-tab.active {
  background: var(--primary);
  color: #fff;
}

.rotation-card,
.summary-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: var(--surface);
}

.rotation-card h3,
.summary-card h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.focus-card {
  display: grid;
  gap: 1rem;
}

.focus-card-header {
  align-items: center;
}

.rotation-board-meta {
  display: grid;
  gap: 0.65rem;
}

.board-status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.board-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.board-count-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(18, 102, 79, 0.12);
  border: 1px solid rgba(18, 102, 79, 0.18);
  font-size: 0.85rem;
}

.bench-count-pill {
  background: rgba(217, 123, 41, 0.12);
  border-color: rgba(217, 123, 41, 0.24);
}

.rotation-board {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1rem;
  min-width: 0;
}

.board-zone {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
  background: var(--surface);
  min-width: 0;
}

.field-zone {
  background:
    linear-gradient(180deg, rgba(18, 102, 79, 0.08), rgba(18, 102, 79, 0.03)),
    var(--surface);
}

.bench-zone {
  background:
    linear-gradient(180deg, rgba(217, 123, 41, 0.08), rgba(217, 123, 41, 0.03)),
    var(--surface);
}

.board-zone-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.board-zone-header h4 {
  margin: 0;
}

.board-zone-header span {
  font-size: 0.82rem;
  color: var(--muted);
}

.player-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
  min-width: 0;
}

.field-lines {
  display: grid;
  gap: 0.75rem;
}

.field-line {
  border: 1px solid rgba(18, 102, 79, 0.12);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.48);
}

.field-line-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.field-line-header h5 {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field-line-header span {
  font-size: 0.82rem;
  color: var(--muted);
}

.field-line-board {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.bench-board {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.board-player-btn {
  min-height: 4.6rem;
  display: grid;
  align-content: space-between;
  gap: 0.45rem;
  padding: 0.75rem;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(20, 48, 64, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.board-player-btn:hover {
  background: rgba(255, 255, 255, 0.98);
}

.board-player-btn.selected {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(20, 48, 64, 0.12);
}

.field-player.selected {
  border-color: rgba(18, 102, 79, 0.45);
  background: rgba(18, 102, 79, 0.14);
}

.bench-player.selected {
  border-color: rgba(217, 123, 41, 0.45);
  background: rgba(217, 123, 41, 0.16);
}

.board-player-name {
  font-weight: 700;
}

.board-player-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.board-empty {
  margin: 0;
  padding: 0.4rem 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(18, 102, 79, 0.1);
  border: 1px solid rgba(18, 102, 79, 0.18);
}

.pill.bench {
  background: rgba(217, 123, 41, 0.12);
  border-color: rgba(217, 123, 41, 0.26);
}

.summary-table {
  width: 100%;
}

.summary-table td,
.summary-table th {
  padding-left: 0;
  padding-right: 0;
}

.summary-table th:last-child,
.summary-table td:last-child,
.summary-table th:nth-child(2),
.summary-table td:nth-child(2) {
  text-align: right;
}

.muted {
  color: var(--muted);
}

@media (max-width: 800px) {
  .page {
    padding: 0.75rem 0.45rem 2.5rem;
  }

  .card {
    padding: 0.9rem 0.7rem;
  }

  .hero {
    flex-direction: column;
    padding: 0.7rem 0.8rem;
    align-items: stretch;
  }

  .eyebrow {
    margin-bottom: 0.1rem;
  }

  .hero h1 {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 0.1rem;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-actions {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-action-bar {
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .mobile-action-bar button {
    width: 100%;
    padding: 0.7rem 0.75rem;
  }

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

  .update-panel {
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    bottom: auto;
    justify-items: end;
  }

  .update-menu-btn {
    width: auto;
  }

  .update-panel-card {
    width: min(18rem, calc(100vw - 1.5rem));
    padding: 0.65rem 0.8rem;
    border-radius: 16px;
  }

  .update-copy strong {
    font-size: 0.95rem;
  }

  .update-copy p {
    margin-top: 0.15rem;
    font-size: 0.8rem;
  }

  .update-actions {
    justify-content: flex-end;
  }

  .update-actions button {
    width: auto;
    min-width: 0;
    padding: 0.65rem 0.8rem;
  }

  .game-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: stretch;
  }

  .game-nav-btn {
    padding: 0.7rem 0.5rem;
  }

  .section-heading {
    flex-direction: column;
  }

  .panel-heading {
    margin-bottom: 0.75rem;
  }

  #rotation-section .panel-heading {
    text-align: center;
    align-items: center;
  }

  #rotation-section .panel-heading .helper {
    margin-left: auto;
    margin-right: auto;
  }

  .setup-panel {
    width: 100%;
    padding: 0;
  }

  .setup-panel-shell {
    border-radius: 0;
    padding: 1rem;
  }

  .setup-panel-header {
    flex-direction: column;
  }

  .setup-panel-actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.5rem;
  }

  .setup-panel-primary-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .setup-panel-actions button {
    width: 100%;
  }

  .feedback-grid,
  .feedback-category-grid {
    grid-template-columns: 1fr;
  }

  .period-toolbar,
  .rotation-board {
    grid-template-columns: 1fr;
  }

  #rotation-section .rotation-output {
    justify-items: center;
  }

  #rotation-section .rotation-output > * {
    width: 100%;
    max-width: none;
  }

  #rotation-section .period-toolbar {
    width: 100%;
  }

  #rotation-section .period-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    overflow: visible;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  #rotation-section .period-tab {
    width: 100%;
    text-align: center;
  }

  #rotation-section .rotation-card,
  #rotation-section .board-zone,
  #rotation-section .field-line {
    width: 100%;
  }

  #rotation-section {
    padding: 0.75rem 0.45rem;
  }

  #rotation-section .rotation-card {
    padding: 0.65rem;
  }

  #rotation-section .board-zone {
    padding: 0.55rem;
    border-radius: 14px;
  }

  #rotation-section .field-line {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  #rotation-section .focus-card-header,
  #rotation-section .board-zone-header {
    text-align: center;
    align-items: center;
  }

  #rotation-section .focus-card {
    gap: 0.65rem;
  }

  #rotation-section .focus-card-header {
    gap: 0.45rem;
  }

  #rotation-section .focus-card-header h3 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  #rotation-section .focus-card-header .helper {
    display: none;
  }

  #rotation-section .rotation-board-meta {
    gap: 0.45rem;
  }

  #rotation-section .board-status {
    font-size: 0.82rem;
  }

  #rotation-section .compact-toggle-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    align-self: center;
  }

  #rotation-section .board-zone-header,
  #rotation-section .field-line-header {
    margin-bottom: 0.45rem;
  }

  #rotation-section .field-lines {
    gap: 0.45rem;
  }

  #rotation-section .field-line-header {
    padding-inline: 0.1rem;
  }

  #rotation-section .board-counts {
    gap: 0.35rem;
  }

  #rotation-section .board-count-pill {
    padding: 0.22rem 0.5rem;
    font-size: 0.82rem;
  }

  .period-tabs {
    justify-content: flex-start;
  }

  .feedback-quarter-tabs {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .feedback-player-switcher {
    grid-template-columns: 1fr;
  }

  .feedback-player-status {
    align-items: stretch;
  }

  .feedback-player-status .live-count-pill {
    width: 100%;
  }

  .table-wrap {
    overflow: visible;
  }

  .table-wrap.show-bench-rules .bench-rule-col {
    display: block;
  }

  table,
  thead,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 1rem;
  }

  tr {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
  }

  td {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 0.85rem;
  }

  td:last-child {
    margin-bottom: 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .checkbox-cell,
  .max-bench-cell {
    width: 100%;
    text-align: left;
  }

  .checkbox-cell input {
    transform: scale(1.15);
    margin-left: 0.15rem;
  }

  #rotation-section .player-board,
  #rotation-section .bench-board,
  #rotation-section .field-line-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  #rotation-section .board-player-btn {
    min-height: 3.45rem;
    padding: 0.5rem;
    border-radius: 12px;
  }

  #rotation-section .board-player-name {
    font-size: 0.95rem;
  }

  #rotation-section .board-player-role {
    font-size: 0.74rem;
  }

}

@media print {
  body {
    background: #fff;
  }

  .page {
    max-width: none;
    padding: 0;
  }

  .hero-actions,
  .inline-actions,
  .setup-backdrop,
  .setup-panel,
  .danger-text,
  .full-width,
  .table-wrap {
    display: none;
  }

  .card,
  .hero {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
