/* Yes Gaming — Pitch Deck CSS
   Slide canvas is 1920×1080 (16:9). Surface is white.
   Header: eyebrow title (tracked caps) + yes wordmark + hairline.
   Footer: confidential strap + page number.
*/

@import url("colors_and_type.css");

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #1a1a1a;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

deck-stage section {
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

/* ======= HEADER / FOOTER (every content slide) ======= */
.hdr {
  position: absolute;
  top: 64px;
  left: 96px;
  right: 96px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slide-hairline);
  padding-bottom: 18px;
}
.hdr__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.hdr__logo { height: 38px; width: auto; display: block; }

.ftr {
  position: absolute;
  bottom: 40px;
  left: 96px;
  right: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-weight: 400;
}
.ftr__strap { letter-spacing: 0.08em; text-transform: uppercase; }
.ftr__num { font-feature-settings: 'tnum'; }

/* ======= BODY container ======= */
.body {
  position: absolute;
  top: 168px;
  left: 96px;
  right: 96px;
  bottom: 96px;
}

/* ======= TYPE ======= */
.eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.eyebrow--green { color: var(--yes-green); }

.h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.body-lg {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.body-md {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.body-sm {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }
.green { color: var(--yes-green); }
.ink { color: var(--ink); }
.med { font-weight: 500; }
.semi { font-weight: 600; }
.bold { font-weight: 700; }

.fnote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-2);
  margin: 0;
}

/* ======= UTILS ======= */
.row { display: flex; }
.col { display: flex; flex-direction: column; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-9 { gap: 36px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.flex-1 { flex: 1; }
.center { align-items: center; }
.between { justify-content: space-between; }
.end { align-items: flex-end; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-12 { margin-top: 48px; }

.hairline { height: 1px; background: var(--slide-hairline); width: 100%; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--slide-hairline);
  background: var(--cream);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.chip--green { background: var(--yes-green-soft); border-color: rgba(2,181,124,0.3); color: var(--yes-green-press); }
.chip--ink { background: var(--ink); color: white; border-color: var(--ink); }

.card {
  background: white;
  border: 1px solid var(--slide-hairline);
  border-radius: 20px;
  padding: 28px;
}
.card--cream { background: var(--cream-2); border-color: transparent; }
.card--ink { background: var(--ink); color: white; border-color: var(--ink); }
.card--ink .h2, .card--ink .h3, .card--ink .h4 { color: white; }
.card--ink .muted { color: rgba(255,255,255,0.6); }

.kpi-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.kpi-num--green { color: var(--yes-green); }
.kpi-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Tables */
table.t {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
table.t th, table.t td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--slide-hairline);
  font-size: 16px;
  vertical-align: top;
}
table.t th {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--ink);
}
table.t tbody tr:last-child td { border-bottom: 1px solid var(--slide-hairline); }
table.t .num { text-align: right; font-feature-settings: 'tnum'; }

/* tag */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.tag--high { background: var(--yes-green-soft); color: var(--yes-green-press); }
.tag--med  { background: #FFF4DA; color: #8A6300; }
.tag--low  { background: #FBE6E3; color: #A6322A; }
.tag--ink  { background: var(--cream-2); color: var(--ink); }

.dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; vertical-align: middle; margin-right: 8px; }
.dot--g { background: var(--yes-green); }
.dot--ink { background: var(--ink); }
.dot--mute { background: var(--muted-2); }

/* Big quote */
.pull {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* Vertical rule list */
.rule-list { list-style: none; padding: 0; margin: 0; }
.rule-list li { padding: 18px 0; border-top: 1px solid var(--slide-hairline); }
.rule-list li:last-child { border-bottom: 1px solid var(--slide-hairline); }

/* numbered list */
.num-list { list-style: none; padding: 0; margin: 0; }
.num-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 16px 0;
}
.num-list li .n {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--yes-green);
  letter-spacing: -0.02em;
}

/* index for slides with section progress */
.idx-rail {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.idx-rail .on { color: var(--ink); }

/* image / placeholder */
.placeholder {
  background: repeating-linear-gradient(45deg, var(--cream-2) 0 14px, #ECEAE1 14px 28px);
  border: 1px dashed var(--muted-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

/* watermark "yes" */
.wm {
  position: absolute;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--cream-2);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* Print: each slide on its own page */
@media print {
  html, body { background: white; }
}
