/* public/style.css */

:root {
  /* Match app palette: lib/core/theme/app_theme.dart */
  --navy: #0A1F3D;
  --navy-lifted: #132A47;
  --card-navy-top: #1C3457;
  --card-navy-bottom: #142948;
  --selected-pill: #102544;

  --patriot-red: #C8102E;
  --danger-red: #DC2626;
  --available-green: #059669;

  --text: #FFFFFF;
  --text-secondary: #94A3B8;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);

  --radius-card: 20px;
  --radius-pill: 28px;
  --radius-input: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--navy);
  min-height: 100vh;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* -------- Hero with stadium backdrop -------- */

.hero-wrap {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 31, 61, 0.55) 0%, rgba(10, 31, 61, 0.95) 75%, var(--navy) 100%),
    url('/assets/stadium_background.png') center top / cover no-repeat;
  padding: 48px 24px 40px;
  text-align: center;
  overflow: hidden;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.stars svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.hero-logo {
  max-width: 240px;
  width: 60%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--patriot-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px 0 0;
}

/* -------- Container / cards -------- */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 8px;
}

.card {
  background: linear-gradient(180deg, var(--card-navy-top) 0%, var(--card-navy-bottom) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow:
    0 24px 64px -24px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.card + .card { margin-top: 20px; }

.status-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.12);
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(200, 16, 46, 0.4);
  margin-bottom: 20px;
}

.card-headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text);
}
@media (min-width: 560px) {
  .card-headline { font-size: 32px; }
}

.lead {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--text);
}

/* Legacy feature-list retained in case any page still uses it */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feature-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  background: var(--patriot-red);
  border-radius: 50%;
}

/* Q&A list — coach questions with answers */
.qa-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.qa-list li {
  position: relative;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--border);
}
.qa-list li:last-child { border-bottom: none; }
.qa-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 6px;
  background: var(--patriot-red);
  border-radius: 50%;
}
.qa-list .question {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.4;
}
.qa-list .answer {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

.callout {
  margin: 0 0 20px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--patriot-red);
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.callout strong {
  color: #FCA5A5;
  font-weight: 600;
}

/* -------- Platform note (Beta / Launch) -------- */

.platform-note {
  margin: 0 0 24px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--patriot-red);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.platform-note strong {
  color: #FCA5A5;
  font-weight: 600;
  margin-right: 4px;
}

/* -------- Hero CTA button -------- */

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--patriot-red);
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius-input);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 52px;
  width: 100%;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  box-shadow: 0 8px 24px -8px rgba(200, 16, 46, 0.6);
}
.hero-cta::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
  transition: transform 0.15s;
}
.hero-cta:hover {
  background: #A80D26;
  box-shadow: 0 12px 32px -8px rgba(200, 16, 46, 0.7);
}
.hero-cta:hover::after { transform: translateX(4px); }
.hero-cta:active { transform: scale(0.98); }

@media (min-width: 560px) {
  .hero-cta {
    width: auto;
    align-self: flex-start;
    padding: 16px 32px;
  }
}

/* -------- Screenshots section — carousel -------- */

.screenshots-section {
  margin: 40px 0 0;
  padding: 8px 0 32px;
}

.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 24px 6px;
  color: var(--text);
  text-align: center;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 15px;
  text-align: center;
  margin: 0 24px 24px;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  outline: none;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
}
.carousel-viewport::-webkit-scrollbar { display: none; }

.carousel-track {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 20px calc(50% - min(40vw, 160px));
}

.carousel-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(80vw, 320px);
  aspect-ratio: 9 / 19.5;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 24px 60px -12px rgba(0, 0, 0, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  background: var(--card-navy-bottom);
  display: block;
}

@media (min-width: 640px) {
  .carousel { padding: 0 76px; }
  .carousel-slide { width: 400px; }
  .carousel-track { padding: 20px calc(50% - 200px); }
}

@media (min-width: 1024px) {
  .carousel { padding: 0 92px; }
  .carousel-slide { width: 480px; }
  .carousel-track { padding: 20px calc(50% - 240px); gap: 24px; }
}

/* Nav arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(28, 52, 87, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.7);
  transition: background 0.15s, border-color 0.15s, transform 0.05s, opacity 0.15s;
}
.carousel-nav svg { width: 22px; height: 22px; }
.carousel-nav-prev { left: 12px; }
.carousel-nav-next { right: 12px; }
.carousel-nav:hover {
  background: rgba(200, 16, 46, 1);
  border-color: var(--patriot-red);
}
.carousel-nav:active { transform: translateY(-50%) scale(0.95); }
.carousel-nav:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.carousel-nav:focus-visible {
  outline: 2px solid var(--patriot-red);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .carousel-nav { display: flex; }
}

/* Controls (dots + counter) */
.carousel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0 24px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.4); }
.carousel-dot:focus-visible {
  outline: 2px solid var(--patriot-red);
  outline-offset: 3px;
}
.carousel-dot[aria-selected="true"] {
  background: var(--patriot-red);
  width: 24px;
  border-radius: 4px;
}

.carousel-counter {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.carousel-counter-current {
  color: var(--text);
  font-weight: 600;
}

/* -------- Beta signup form -------- */

.form-card { padding: 32px 28px; }

.form-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}

.form-lead {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.field label .optional {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 13px;
}

.field-hint {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
  margin: 6px 0 0;
}

.field input,
.field select,
.field textarea {
  background: rgba(10, 20, 40, 0.6);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  min-height: 44px;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--patriot-red);
  background: rgba(10, 20, 40, 0.9);
}

.submit-btn {
  background: var(--patriot-red);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-input);
  padding: 14px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  min-height: 48px;
  margin-top: 8px;
  transition: background 0.15s, transform 0.05s;
  -webkit-appearance: none;
  appearance: none;
}
.submit-btn:hover { background: #A80D26; }
.submit-btn:active { transform: scale(0.98); }

.form-fine {
  color: var(--text-secondary);
  font-size: 12px;
  margin: 8px 0 0;
  text-align: center;
}

/* -------- Footer -------- */

.footer {
  max-width: 720px;
  margin: 32px auto 48px;
  padding: 24px;
  text-align: center;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  background: rgba(19, 42, 71, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.footer-fine {
  color: var(--text-secondary);
  font-size: 12px;
  margin: 0;
  line-height: 1.6;
}
.footer-fine a {
  color: #FCA5A5;
  text-decoration: none;
}
.footer-fine a:hover { text-decoration: underline; }

/* -------- Legal / long-form content pages -------- */

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 8px;
}
.doc-back {
  display: inline-block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
}
.doc-back:hover { color: #FCA5A5; }
.doc-back::before { content: "← "; }

.doc-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 6px;
  color: var(--text);
}
.doc-meta {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 24px;
}

.doc-body {
  background: linear-gradient(180deg, var(--card-navy-top) 0%, var(--card-navy-bottom) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 32px;
  color: var(--text);
  box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.6);
}
.doc-body h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #FCA5A5;
}
.doc-body p,
.doc-body li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}
.doc-body p { margin: 0 0 14px; }
.doc-body ul,
.doc-body ol { padding-left: 20px; margin: 0 0 14px; }
.doc-body li { margin-bottom: 6px; }
.doc-body a {
  color: #FCA5A5;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.4);
}
.doc-body a:hover { border-bottom-color: var(--patriot-red); }
.doc-body strong { color: var(--text); font-weight: 600; }

.doc-body .callout { margin: 20px 0; }

/* FAQ (Support page) */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.faq details:last-of-type { border-bottom: none; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--patriot-red);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 12px; color: var(--text-secondary); font-size: 14px; }

/* -------- Tutorials page -------- */

.tutorials-body { padding: 24px; }

/* Big playlist facade at top */
.playlist-embed {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.7);
  background: var(--card-navy-bottom);
}

.playlist-facade {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: block;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(10, 31, 61, 0.5) 0%, rgba(10, 31, 61, 0.85) 100%),
    url('/assets/stadium_background.png') center center / cover no-repeat;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.15s ease-out;
}
.playlist-facade:hover { transform: scale(1.005); }
.playlist-facade:focus-visible {
  outline: 3px solid var(--patriot-red);
  outline-offset: -3px;
}

.playlist-facade-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  pointer-events: none;
}

.playlist-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--patriot-red);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.5);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.playlist-play-icon svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.playlist-facade:hover .playlist-play-icon {
  background: #A80D26;
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(200, 16, 46, 0.65);
}

.playlist-facade-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media (min-width: 720px) {
  .playlist-facade-title { font-size: 26px; }
  .playlist-play-icon { width: 92px; height: 92px; }
  .playlist-play-icon svg { width: 36px; height: 36px; }
}

.playlist-facade-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Intro row */
.tutorials-intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.tutorials-intro strong {
  color: var(--text);
  font-weight: 600;
}
.playlist-link {
  display: inline-block;
  margin-left: 4px;
  color: #FCA5A5;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.playlist-link:hover {
  color: #FFFFFF;
  border-bottom-color: var(--patriot-red);
}

/* Tutorial list — clickable rows */
.tutorial-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tutorial-item {
  border-bottom: 1px solid var(--border);
}
.tutorial-item:first-child { border-top: 1px solid var(--border); }

.tutorial-btn {
  display: grid;
  grid-template-columns: auto 1fr 32px;
  gap: 20px;
  padding: 18px 12px;
  align-items: start;
  cursor: pointer;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  transition: background 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.tutorial-btn:hover {
  background: rgba(200, 16, 46, 0.06);
}
.tutorial-btn:focus-visible {
  outline: none;
  background: rgba(200, 16, 46, 0.08);
  box-shadow: inset 0 0 0 2px var(--patriot-red);
}
.tutorial-btn[aria-current="true"] {
  background: rgba(200, 16, 46, 0.10);
  box-shadow: inset 3px 0 0 var(--patriot-red);
}
.tutorial-btn[aria-current="true"]:hover {
  background: rgba(200, 16, 46, 0.14);
}

.tutorial-play-hint {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--patriot-red);
  opacity: 0.6;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 50%;
  transition: opacity 0.15s, background 0.15s, transform 0.15s;
  align-self: center;
  flex-shrink: 0;
}

.tutorial-play-hint svg {
  width: 20px;
  height: 20px;
  display: block;
}

.tutorial-btn:hover .tutorial-play-hint {
  opacity: 1;
  background: rgba(200, 16, 46, 0.2);
  transform: scale(1.08);
}
.tutorial-btn[aria-current="true"] .tutorial-play-hint {
  opacity: 1;
  background: var(--patriot-red);
  color: #FFFFFF;
  border-color: var(--patriot-red);
}

.tutorial-number {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--patriot-red);
  line-height: 1;
  min-width: 36px;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.tutorial-content { min-width: 0; }

.tutorial-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.tutorial-header h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tutorial-duration {
  color: var(--text-secondary);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tutorial-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.tutorials-outro {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
}
.tutorials-outro a {
  color: #FCA5A5;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 16, 46, 0.4);
}
.tutorials-outro a:hover { border-bottom-color: var(--patriot-red); }