:root {
  --ink: #1d1812;
  --muted: #6c5d4d;
  --paper: #fff8ec;
  --cream: #f2e2c9;
  --night: #101417;
  --night-2: #1b201f;
  --gold: #c99448;
  --gold-2: #efcc83;
  --green: #4f9c76;
  --blue: #577f9d;
  --red: #c65d52;
  --line: rgba(50, 36, 20, 0.14);
  --line-dark: rgba(239, 204, 131, 0.24);
  --shadow: 0 22px 60px rgba(22, 17, 10, 0.18);
  --radius: 8px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(247, 238, 223, 0.98) 50%, rgba(238, 223, 200, 0.96)),
    url("../../assets/owner-playbook/restaurant-bg.jpg") center / cover fixed;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

.tutorial-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  color: #fff7e8;
  background: rgba(16, 20, 23, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 116px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #14110e;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 247, 232, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.tutorial-nav nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tutorial-nav nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: rgba(255, 247, 232, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.tutorial-nav nav a:hover,
.tutorial-nav nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.92fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(92vh - 72px);
  padding: 56px 0 44px;
}

.hero-copy {
  max-width: 620px;
}

.kicker {
  margin: 0 0 10px;
  color: #a66d24;
  font-weight: 950;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  max-width: none;
  white-space: nowrap;
}

.lead {
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 950;
}

.button.primary {
  color: #1d130d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(201, 148, 72, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 148, 72, 0.34);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--night);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.08), rgba(8, 10, 12, 0.46)),
    linear-gradient(180deg, transparent 30%, rgba(9, 12, 14, 0.82));
}

.hero-live-cards {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(280px, calc(100% - 44px));
}

.hero-live-cards article {
  padding: 13px 14px;
  border: 1px solid rgba(239, 204, 131, 0.25);
  border-radius: var(--radius);
  color: #fff8ea;
  background: rgba(16, 20, 23, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.hero-live-cards span {
  display: block;
  color: #f0ca83;
  font-size: 12px;
  font-weight: 950;
}

.hero-live-cards strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
}

.hero-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #fff8ea;
  background: rgba(16, 20, 23, 0.78);
  backdrop-filter: blur(14px);
}

.hero-visual span,
.hero-visual small {
  display: block;
  color: rgba(255, 248, 234, 0.72);
  font-weight: 800;
}

.hero-visual strong {
  display: block;
  margin: 6px 0;
  font-size: 22px;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 68px;
}

.module-strip article {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(201, 148, 72, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 10px 26px rgba(36, 25, 12, 0.08);
}

.module-strip span,
.daily-card span,
.role-grid span {
  display: block;
  color: #a66d24;
  font-size: 13px;
  font-weight: 950;
}

.module-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.3;
}

.scene-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin: 0 0 36px;
  padding: 26px;
  border: 1px solid rgba(201, 148, 72, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 48px rgba(36, 25, 12, 0.1);
}

.scene-flow-copy {
  align-self: center;
}

.scene-flow-copy h2 {
  margin: 0;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.scene-flow-copy p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.scene-flow-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.scene-panel {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night);
  box-shadow: 0 16px 40px rgba(36, 25, 12, 0.12);
}

.scene-panel-large {
  grid-row: span 2;
}

.scene-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.scene-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.05), rgba(8, 10, 12, 0.78));
}

.scene-panel div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff8ea;
}

.scene-panel span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  color: #20150c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 13px;
  font-weight: 950;
}

.scene-panel strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.scene-panel p {
  max-width: 24em;
  margin: 6px 0 0;
  color: rgba(255, 248, 234, 0.78);
  font-weight: 750;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 900;
}

.section-head p:not(.kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.tour,
.daily,
.roles {
  padding: 74px 0;
}

.tour-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.module-list {
  display: grid;
  gap: 10px;
  align-content: start;
  position: sticky;
  top: 92px;
}

.module-button {
  min-height: 74px;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(50, 36, 20, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.module-button span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #20150c;
  background: #f1d19a;
  font-size: 13px;
  font-weight: 950;
}

.module-button strong,
.module-button small {
  display: block;
  min-width: 0;
}

.module-button strong {
  font-size: 16px;
  font-weight: 950;
}

.module-button small {
  color: var(--muted);
  font-weight: 750;
}

.module-button.is-active {
  color: #fff7e8;
  background: linear-gradient(145deg, #15191b, #22201b);
  border-color: var(--line-dark);
  box-shadow: 0 16px 36px rgba(20, 14, 8, 0.18);
}

.stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 0;
  min-height: 640px;
  border: 1px solid rgba(201, 148, 72, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
}

.stage-media {
  position: relative;
  min-height: 640px;
  background: var(--night);
  overflow: hidden;
}

.stage-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(239, 204, 131, 0.28);
  border-radius: var(--radius);
  color: #fff8ea;
  background: rgba(16, 20, 23, 0.74);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 950;
}

.visual-caption {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  max-width: min(260px, calc(100% - 128px));
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(239, 204, 131, 0.28);
  border-radius: var(--radius);
  color: #21150c;
  background: rgba(241, 209, 154, 0.92);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-radar {
  position: absolute;
  left: 22px;
  top: 70px;
  z-index: 3;
  width: min(260px, calc(100% - 44px));
  height: 152px;
  pointer-events: none;
}

.flow-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 204, 131, 0.2), rgba(239, 204, 131, 0.9), rgba(239, 204, 131, 0.2));
  box-shadow: 0 0 22px rgba(239, 204, 131, 0.24);
}

.flow-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f6d694;
  box-shadow: 0 0 22px rgba(246, 214, 148, 0.8);
  animation: flowRunner 4.2s linear infinite;
}

.flow-dot {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 204, 131, 0.44);
  border-radius: 50%;
  color: rgba(255, 248, 234, 0.72);
  background: rgba(16, 20, 23, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 950;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.flow-dot:nth-of-type(1) { left: 0; }
.flow-dot:nth-of-type(2) { left: calc(33.333% - 12px); }
.flow-dot:nth-of-type(3) { left: calc(66.666% - 24px); }
.flow-dot:nth-of-type(4) { right: 0; }

.flow-dot.is-done {
  color: #20150c;
  background: rgba(239, 204, 131, 0.88);
}

.flow-dot.is-active {
  color: #20150c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 0 8px rgba(239, 204, 131, 0.14), 0 18px 38px rgba(0, 0, 0, 0.26);
  transform: translateY(-50%) scale(1.16);
}

.stage-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.stage-media.is-changing img {
  opacity: 0.2;
  transform: scale(1.08);
}

.stage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(239, 204, 131, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 32%, rgba(11, 13, 15, 0.82));
}

.screen-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #fff8ea;
  background: rgba(16, 20, 23, 0.84);
  backdrop-filter: blur(16px);
  animation: floatCard 4s ease-in-out infinite;
}

.screen-card span {
  color: #f0ca83;
  font-weight: 950;
}

.screen-card strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
  line-height: 1.1;
}

.screen-card p {
  margin: 0;
  color: rgba(255, 248, 234, 0.78);
  font-weight: 700;
}

.screen-card small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: #21150c;
  background: #f1d19a;
  font-weight: 950;
}

.screen-card.is-stepping {
  animation: stepCardPulse 0.52s ease;
}

.stage-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 42px);
}

.stage-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.16;
  font-weight: 950;
}

.stage-copy > p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
}

.flow-progress {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.flow-progress span {
  color: #a66d24;
  font-size: 13px;
  font-weight: 950;
}

.flow-progress b {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(50, 36, 20, 0.12);
  overflow: hidden;
}

.flow-progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(201, 148, 72, 0.35);
  transition: width 0.35s ease;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(50, 36, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
  overflow: hidden;
}

.step-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transition: width 0.25s ease;
}

.step-list li.is-active {
  border-color: rgba(201, 148, 72, 0.52);
  box-shadow: 0 12px 28px rgba(36, 25, 12, 0.08);
  transform: translateX(8px) scale(1.015);
  background: rgba(255, 248, 234, 0.98);
}

.step-list li.is-active::after {
  width: 5px;
}

.step-list li.is-done {
  opacity: 0.72;
  background: rgba(244, 229, 203, 0.56);
}

.step-no {
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #20150c;
  background: #f1d19a;
  font-weight: 950;
}

.step-body {
  z-index: 1;
}

.step-body strong {
  display: block;
  font-size: 17px;
  font-weight: 950;
}

.step-body span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.step-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.icon-button,
.play-button {
  min-height: 50px;
  border: 1px solid rgba(201, 148, 72, 0.34);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 950;
}

.icon-button {
  width: 54px;
  font-size: 22px;
}

.play-button {
  padding: 0 18px;
}

.daily-grid,
.role-grid {
  display: grid;
  gap: 16px;
}

.daily-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.daily-card {
  border: 1px solid rgba(201, 148, 72, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 16px 40px rgba(36, 25, 12, 0.1);
}

.daily-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.daily-card div {
  padding: 18px;
}

.daily-card strong {
  display: block;
  margin: 6px 0;
  font-size: 20px;
}

.daily-card p,
.role-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(201, 148, 72, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 16px 36px rgba(36, 25, 12, 0.08);
}

.role-grid h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes stepCardPulse {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-8px) scale(1.025); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes flowRunner {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 14px); opacity: 0; }
}

@media (max-width: 1040px) {
  .hero,
  .stage,
  .scene-flow {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: none;
  }

  .module-strip,
  .daily-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-layout {
    grid-template-columns: 1fr;
  }

  .module-list {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage,
  .stage-media,
  .stage-media img {
    min-height: auto;
  }

  .stage-media {
    aspect-ratio: 16 / 10;
  }

  .flow-radar {
    width: min(310px, calc(100% - 44px));
  }

  .scene-flow-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .scene-panel-large {
    grid-row: auto;
  }

  .scene-panel {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  main {
    width: min(100% - 20px, 1180px);
  }

  .tutorial-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }

  .tutorial-nav nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .tutorial-nav nav a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 30px;
    gap: 22px;
  }

  h1 {
    max-width: none;
    font-size: 32px;
  }

  .lead {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .hero-live-cards {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: -12px 14px 0;
  }

  .module-strip,
  .daily-grid,
  .role-grid,
  .module-list {
    grid-template-columns: 1fr;
  }

  .tour,
  .daily,
  .roles {
    padding: 48px 0;
  }

  .stage-media {
    aspect-ratio: 4 / 3;
  }

  .flow-radar {
    top: 58px;
    left: 14px;
    width: min(260px, calc(100% - 28px));
    transform: scale(0.86);
    transform-origin: left top;
  }

  .visual-caption {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 116px);
    font-size: 12px;
  }

  .scene-flow {
    padding: 16px;
  }

  .scene-panel {
    min-height: 230px;
  }

  .stage-copy {
    padding: 20px;
  }

  .step-controls {
    display: grid;
    grid-template-columns: 54px 1fr 54px;
  }

  .screen-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
