/* LOTORA — latest results page styles */

/* Page-title hero (ExtraBold, tighter gap per spec) */
.page-hero { gap: 12px; }
.page-hero h1 { font-weight: 800; line-height: 1.25; }
.page-hero p { max-width: none; }

/* Section — latest results grid */
.results-grid {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.results-grid__row { display: flex; gap: 24px; }
.results-grid .result-card { border-color: var(--border-8); }
.results-grid .status-pill { font-size: 11px; }
.rc-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rc-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-sched .label { font-size: 12px; color: var(--muted); }
.rc-sched .value { font-size: 12px; font-weight: 600; color: var(--ink); }

/* Section — previous draws */
.previous-draws { background: var(--bg-light); }
.previous-draws .section-header { margin-bottom: 32px; }
.previous-draws .header-tag { font-size: 11px; }

.results-table {
  background: #ffffff;
  border: 1px solid var(--border-8);
  border-radius: 12px;
  overflow: hidden;
}
.results-table__head {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg-light);
}
.results-table__head span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.results-table__row {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-8);
}
.results-table__row--last { border-bottom: none; }
.results-table .col-game { width: 280px; flex-shrink: 0; }
.results-table .col-date { width: 200px; flex-shrink: 0; }
.results-table .col-numbers {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.results-table .col-details { width: 140px; flex-shrink: 0; text-align: right; }
.results-table__row .col-game {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.results-table__row .col-date { font-size: 14px; color: var(--muted); }
.results-table .ball--32 { font-size: 11px; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 0;
  height: 80px;
  background: var(--bg-light);
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ebedf2;
  color: #8c94a6;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn--active {
  background: #1c2145;
  color: #ffffff;
  font-weight: 700;
}
.page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c94a6;
  font-size: 14px;
}

/* Play responsibly tag (11px on this page per spec) */
.responsible-section .header-tag { font-size: 11px; }
