.mock-remote-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.mock-remote-ui span {
  display: block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.mock-remote-ui .mock-power {
  width: 36px;
  height: 36px;
  background: rgba(196, 92, 38, 0.5);
}

.mock-remote-ui .mock-dpad {
  width: 100px;
  height: 100px;
}

.mock-remote-ui .mock-row {
  display: flex;
  gap: 0.5rem;
}

.mock-remote-ui .mock-row span {
  width: 40px;
  height: 28px;
  border-radius: 6px;
}

.app-screenshots {
  padding: 4rem 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border-strong);
  border-bottom: 2px solid var(--color-border-strong);
}

.screenshots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.screenshot-card {
  margin: 0;
}

.screenshot-frame {
  aspect-ratio: 9 / 16;
  border: 2px solid var(--color-border-strong);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}

.screenshot-frame--1 {
  background: #3d2914;
}

.screenshot-frame--2 {
  background: #5c4030;
}

.screenshot-frame--3 {
  background: #2d2118;
}

.screenshot-card figcaption {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.app-download {
  padding: 4rem 0 5rem;
}

.download-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--color-text);
  color: #fafaf9;
  border: 2px solid var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.download-strip h2 {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
}

.download-strip p {
  margin: 0;
  color: #a8a29e;
  font-size: 0.9375rem;
}

.download-strip .btn-primary {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .screenshots-row {
    grid-template-columns: 1fr;
  }

  .download-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}
