/* =========================================================
   FOOTBALL PREDICTIONS ZONE
   GLOBAL WEBSITE STYLES
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
  --bg: #050b14;
  --bg-soft: #081321;
  --surface: #0c1929;
  --surface-2: #102238;
  --surface-3: #142b43;

  --border: #1d3852;
  --border-bright: #2d5373;

  --green: #39ff88;
  --green-dark: #0dcc61;
  --green-soft: #9affc2;

  --white: #ffffff;
  --text: #edf5f2;
  --muted: #9eb0c2;
  --muted-2: #71859a;

  --danger: #ff5d68;
  --warning: #ffd447;
  --blue: #38a9ff;

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --container: 1160px;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(57, 255, 136, 0.08),
      transparent 35%
    ),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

strong {
  color: var(--white);
}


/* =========================================================
   3. GLOBAL CONTAINERS
   ========================================================= */

.container,
.nav-container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.page-container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.content-section {
  padding: 55px 0;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header,
header {
  background: rgba(5, 11, 20, 0.94);

  border-bottom: 1px solid var(--border);

  position: sticky;
  top: 0;
  z-index: 1000;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


/* New navigation */

.nav-container {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}


/* Existing/legacy navigation */

.navbar,
nav {
  width: min(var(--container), 92%);
  min-height: 76px;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


/* =========================================================
   5. BRAND
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  color: var(--white);

  font-weight: 950;
  letter-spacing: 0.4px;

  white-space: nowrap;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  background: var(--green);
  color: #03100a;

  border-radius: 12px;

  font-size: 13px;
  font-weight: 1000;

  box-shadow:
    0 0 0 3px rgba(57, 255, 136, 0.08),
    0 8px 25px rgba(57, 255, 136, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.05;
}

.brand-text strong {
  font-size: 14px;
}

.brand-text small {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* Compatibility with older brand */

.navbar > .brand {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.8px;
}


/* =========================================================
   6. NAVIGATION LINKS
   ========================================================= */

.main-nav,
.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 7px;
}

.main-nav a,
.navlinks a {
  color: #b8c8d8;

  font-size: 14px;
  font-weight: 750;

  padding: 9px 12px;

  border-radius: 9px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.main-nav a:hover,
.navlinks a:hover {
  color: var(--white);

  background: rgba(57, 255, 136, 0.08);
}

.main-nav a.active,
.navlinks a.active {
  color: #03100a;

  background: var(--green);

  font-weight: 900;
}


/* =========================================================
   7. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;

  border: 1px solid var(--border-bright);

  background: var(--surface);

  color: var(--white);

  width: 44px;
  height: 42px;

  border-radius: 10px;

  font-size: 22px;
  line-height: 1;
}


/* =========================================================
   8. HERO
   ========================================================= */

.page-hero,
.hero {
  position: relative;

  overflow: hidden;

  padding: 95px 0 85px;

  border-bottom: 1px solid rgba(57, 255, 136, 0.1);

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(57, 255, 136, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 90%,
      rgba(56, 169, 255, 0.08),
      transparent 28%
    );
}


/* subtle glow */

.page-hero::before,
.hero::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  top: -220px;
  right: -120px;

  border-radius: 50%;

  background: rgba(57, 255, 136, 0.08);

  filter: blur(30px);

  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 1;
}


/* =========================================================
   9. TYPOGRAPHY
   ========================================================= */

.eyebrow {
  margin: 0 0 12px;

  color: var(--green);

  font-size: 12px;
  font-weight: 950;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero h1,
.hero h1 {
  position: relative;

  margin: 0 0 25px;

  max-width: 950px;

  color: var(--white);

  font-size: clamp(44px, 7vw, 82px);

  font-weight: 950;

  line-height: 0.98;

  letter-spacing: -2.8px;
}

.page-hero h1 span,
.hero h1 span {
  color: var(--green);
}

.hero-lead,
.lead {
  max-width: 760px;

  margin: 0;

  color: var(--muted);

  font-size: clamp(17px, 2vw, 21px);

  line-height: 1.65;
}

h2 {
  margin-top: 0;

  color: var(--white);

  font-size: clamp(27px, 4vw, 40px);

  line-height: 1.15;

  letter-spacing: -0.8px;
}

h3 {
  color: var(--white);
}


/* =========================================================
   10. HERO META / DATE
   ========================================================= */

.hero-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}

.count-badge,
.date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;

  padding: 7px 14px;

  border: 1px solid rgba(57, 255, 136, 0.3);

  border-radius: 999px;

  background: rgba(57, 255, 136, 0.08);

  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.5px;
}

.update-note {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   11. SECTION HEADINGS
   ========================================================= */

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}


/* =========================================================
   12. CARDS
   ========================================================= */

.content-card,
.card,
.appcard {
  background:
    linear-gradient(
      145deg,
      rgba(16, 34, 56, 0.96),
      rgba(9, 23, 38, 0.96)
    );

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 28px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.content-card:hover,
.card:hover {
  border-color: var(--border-bright);
}


/* =========================================================
   13. MARKET HERO
   ========================================================= */

.market-hero {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);

  margin-bottom: 35px;
}

.market-hero .hero-content {
  max-width: 900px;
}


/* =========================================================
   14. MARKET EXPLAINER
   ========================================================= */

.market-explainer {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;

  margin: 35px 0 70px;
}

.market-explainer .content-card {
  position: relative;

  overflow: hidden;
}

.market-explainer .content-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -45px;
  bottom: -55px;

  border-radius: 50%;

  background: rgba(57, 255, 136, 0.07);
}

.market-icon {
  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  margin-bottom: 20px;

  border-radius: 15px;

  background: var(--green);

  color: #03100a;

  font-weight: 1000;

  font-size: 17px;

  box-shadow: 0 8px 25px rgba(57, 255, 136, 0.14);
}

.market-explainer h2 {
  margin-bottom: 10px;

  font-size: 25px;
}

.market-explainer p {
  margin-bottom: 0;

  color: var(--muted);
}


/* =========================================================
   15. PREDICTION SECTION
   ========================================================= */

.prediction-section {
  padding: 35px 0 70px;
}


/* =========================================================
   16. PREDICTION TABLE
   ========================================================= */

.prediction-table-wrap {
  width: 100%;

  overflow-x: auto;

  background:
    linear-gradient(
      145deg,
      #0c1929,
      #081421
    );

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}


/* The JS may inject tables, cards or other markup */

.prediction-table-wrap table,
#prediction-table table {
  width: 100%;

  border-collapse: collapse;

  min-width: 650px;
}

.prediction-table-wrap th,
#prediction-table th {
  padding: 17px 18px;

  background: #122840;

  color: var(--green);

  border-bottom: 1px solid var(--border);

  font-size: 12px;
  font-weight: 950;

  text-transform: uppercase;
  letter-spacing: 1px;

  text-align: left;
}

.prediction-table-wrap td,
#prediction-table td {
  padding: 17px 18px;

  color: var(--text);

  border-bottom: 1px solid rgba(29, 56, 82, 0.65);

  font-size: 14px;
}

.prediction-table-wrap tr:last-child td,
#prediction-table tr:last-child td {
  border-bottom: 0;
}

.prediction-table-wrap tr:hover td,
#prediction-table tr:hover td {
  background: rgba(57, 255, 136, 0.035);
}
/* Match display */
#prediction-table .match-cell {
  min-width: 240px;
  white-space: normal;
}

#prediction-table .team-home,
#prediction-table .team-away {
  display: inline;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

#prediction-table .match-vs {
  display: inline-block;
  margin: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   17. PREDICTION CARDS / COMMON GENERATED CONTENT
   ========================================================= */

.prediction-card,
.match-card,
.prediction-item {
  background:
    linear-gradient(
      135deg,
      #102238,
      #0a1726
    );

  border: 1px solid var(--border);

  border-radius: 15px;

  padding: 20px;

  margin: 12px;
}

.prediction-card:hover,
.match-card:hover,
.prediction-item:hover {
  border-color: rgba(57, 255, 136, 0.45);
}


/* Prediction outcome */

.prediction,
.prediction-value,
.pick,
.outcome {
  color: var(--green);

  font-weight: 950;
}


/* =========================================================
   18. LOADING
   ========================================================= */

.loading {
  min-height: 100px;

  display: grid;
  place-items: center;

  padding: 30px;

  color: var(--muted);

  text-align: center;
}

#prediction-table:empty::before {
  content: "No predictions available.";
  display: block;

  padding: 35px;

  color: var(--muted);

  text-align: center;
}


/* =========================================================
   19. SEO CONTENT
   ========================================================= */

.seo-content {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 22px;

  padding: 20px 0 65px;
}

.seo-content .content-card {
  height: 100%;
}

.seo-content h2 {
  margin-bottom: 18px;
}

.seo-content p {
  color: var(--muted);

  margin: 0 0 17px;
}

.seo-content p:last-child {
  margin-bottom: 0;
}


/* Existing SEO intro */

.seo-intro {
  width: min(var(--container), 92%);

  margin: 35px auto 0;

  color: var(--muted);
}

.seo-intro h2 {
  font-size: 27px;
  margin-bottom: 12px;
}

.seo-intro p {
  margin-bottom: 0;
}


/* =========================================================
   20. DEFINITION GRID
   ========================================================= */

.definition-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.definition-card {
  padding: 19px;

  background: rgba(5, 11, 20, 0.58);

  border: 1px solid var(--border);

  border-radius: 13px;
}

.definition-card strong {
  display: block;

  margin-bottom: 7px;

  color: var(--green);

  font-size: 18px;
  font-weight: 950;
}

.definition-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.55;
}


/* =========================================================
   21. MORE MARKETS
   ========================================================= */

.seo-market-links {
  padding: 20px 0 70px;
}

.market-link-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 15px;
}

.market-link-card {
  display: flex;
  flex-direction: column;

  gap: 6px;

  padding: 21px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.market-link-card:hover {
  transform: translateY(-3px);

  background: var(--surface-2);

  border-color: rgba(57, 255, 136, 0.45);
}

.market-link-card strong {
  color: var(--white);

  font-size: 17px;
}

.market-link-card span {
  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   22. HOME PAGE PREDICTION LINKS
   ========================================================= */

.prediction-links {
  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 14px;
}

.prediction-link {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 6px;

  padding: 21px;

  min-height: 145px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.prediction-link:hover {
  transform: translateY(-4px);

  border-color: rgba(57, 255, 136, 0.5);
}

.prediction-link > span {
  font-size: 27px;
}

.prediction-link strong {
  font-size: 15px;
}

.prediction-link small {
  color: var(--muted);

  font-size: 12px;
}


/* =========================================================
   23. FEATURED MATCH
   ========================================================= */

.featured-match {
  background:
    radial-gradient(
      circle at top right,
      rgba(57, 255, 136, 0.12),
      transparent 30%
    ),
    var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  min-height: 180px;

  padding: 28px;
}


/* =========================================================
   24. RESULTS
   ========================================================= */

.results-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.results-grid > * {
  min-width: 0;
}

.results-grid .result-card,
.results-grid .card,
.result-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 20px;
}
/* Previous results table */
.results-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.results-table th {
  padding: 15px 16px;
  background: #122840;
  color: var(--green);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.results-table td {
  padding: 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(29, 56, 82, 0.65);
  font-size: 14px;
}

.results-table tr:last-child td {
  border-bottom: 0;
}

.results-table tr:hover td {
  background: rgba(57, 255, 136, 0.035);
}

.result-match-cell {
  min-width: 260px;
  white-space: normal;
}

.result-team {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.result-vs {
  display: inline-block;
  margin: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.result-prediction {
  font-weight: 800;
}

.result-actual {
  font-weight: 800;
}

.result-status-won {
  color: var(--green) !important;
  font-weight: 950 !important;
}

.result-status-lost {
  color: #ff6b6b !important;
  font-weight: 950 !important;
}

/* =========================================================
   25. DISCLAIMER
   ========================================================= */

.disclaimer-box {
  margin: 20px 0 70px;

  padding: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 212, 71, 0.07),
      rgba(255, 212, 71, 0.025)
    );

  border: 1px solid rgba(255, 212, 71, 0.24);

  border-radius: var(--radius);

  color: var(--muted);
}

.disclaimer-box strong,
.disclaimer-box h3 {
  color: var(--warning);
}

.disclaimer-box p {
  margin-bottom: 0;
}


/* =========================================================
   26. BUTTONS
   ========================================================= */

.button,
.btn,
.button-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 11px 20px;

  border: 0;

  border-radius: 10px;

  background: var(--green);

  color: #03100a;

  font-weight: 950;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.button:hover,
.btn:hover,
.button-primary:hover {
  color: #03100a;

  filter: brightness(1.08);

  transform: translateY(-2px);
}


/* Legacy button */

.btn-primary {
  background: var(--green);
  color: #03100a;
}


/* =========================================================
   27. APP DOWNLOAD AREA
   ========================================================= */

.app-download-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.download-card,
.appcard {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 26px;

  background:
    linear-gradient(
      145deg,
      var(--surface-2),
      var(--surface)
    );

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);
}

.app-icon,
.icon {
  width: 70px;
  height: 70px;

  flex: 0 0 70px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: var(--green);

  color: #03100a;

  font-size: 21px;
  font-weight: 1000;

  box-shadow:
    0 10px 30px rgba(57, 255, 136, 0.14);
}

.download-content {
  flex: 1;
}

.download-content h2 {
  margin-bottom: 8px;
}

.download-content p {
  color: var(--muted);
}


/* =========================================================
   28. PROSE / TEXT PAGES
   ========================================================= */

.prose {
  max-width: 850px;
}

.prose h2 {
  color: var(--green);

  margin-top: 40px;
}

.prose p,
.prose li {
  color: var(--muted);
}


/* =========================================================
   29. FOOTER
   ========================================================= */

.site-footer,
footer {
  margin-top: 30px;

  background: #030811;

  border-top: 1px solid var(--border);

  color: var(--muted);
}

.footer-inner {
  width: min(var(--container), 92%);

  margin-inline: auto;

  padding: 38px 0;

  display: grid;

  grid-template-columns: 1.4fr 1fr;

  gap: 30px;
}

.footer-brand strong {
  display: block;

  margin-bottom: 8px;

  color: var(--white);

  font-size: 17px;
}

.footer-brand p,
.footer-brand span {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}

.footer-links {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 8px 16px;
}

.footer-links a {
  color: var(--muted);

  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(29, 56, 82, 0.7);

  padding: 17px 4%;

  text-align: center;

  color: var(--muted-2);

  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}


/* =========================================================
   30. TABLET
   ========================================================= */

@media (max-width: 980px) {

  .main-nav,
  .navlinks {
    gap: 3px;
  }

  .main-nav a,
  .navlinks a {
    padding: 8px 9px;

    font-size: 13px;
  }

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

  .seo-content {
    grid-template-columns: 1fr;
  }

  .app-download-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   31. MOBILE
   ========================================================= */

@media (max-width: 720px) {

  body {
    font-size: 15px;
  }


  /* Header */

  .site-header,
  header {
    position: sticky;
  }

  .nav-container,
  .navbar,
  nav {
    min-height: 66px;

    width: 92%;

    padding: 11px 0;
  }


  .nav-container {
    position: relative;
  }


  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-text strong {
    font-size: 12px;
  }


  /* Mobile button */

  .menu-toggle {
    display: grid;

    place-items: center;
  }


  /* Mobile navigation */

  .main-nav,
  .navlinks {
    display: none;

    position: absolute;

    left: 0;
    right: 0;

    top: 66px;

    width: 100%;

    padding: 10px;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

    background: #07111f;

    border: 1px solid var(--border);

    border-top: 0;

    border-radius: 0 0 14px 14px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }


  .main-nav.open,
  .navlinks.open,
  .main-nav.show,
  .navlinks.show {
    display: flex;
  }


  .main-nav a,
  .navlinks a {
    width: 100%;

    padding: 12px 14px;

    font-size: 14px;
  }


  /* Hero */

  .page-hero,
  .hero {
    padding: 70px 0 60px;
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(39px, 13vw, 60px);

    letter-spacing: -2px;
  }

  .hero-lead,
  .lead {
    font-size: 17px;
  }


  /* Sections */

  .section {
    padding: 48px 0;
  }

  .content-section {
    padding: 42px 0;
  }


  .section-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 20px;
  }


  /* Market */

  .market-explainer {
    grid-template-columns: 1fr;

    margin-bottom: 48px;
  }


  .market-hero {
    margin-bottom: 22px;

    border-radius: 0 0 18px 18px;
  }


  /* SEO */

  .seo-content {
    padding-bottom: 45px;
  }


  /* Definitions */

  .definition-grid {
    grid-template-columns: 1fr;
  }


  /* Markets */

  .market-link-grid {
    grid-template-columns: 1fr;
  }


  /* Prediction links */

  .prediction-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* Results */

  .results-grid {
    grid-template-columns: 1fr;
  }


  /* Apps */

  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .download-card,
  .appcard {
    flex-direction: column;
  }


  /* Footer */

  .footer-inner {
    grid-template-columns: 1fr;

    padding: 30px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

}


/* =========================================================
   32. SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

  .page-container {
    width: 94%;
  }

  .container {
    width: 94%;
  }


  .prediction-links {
    grid-template-columns: 1fr;
  }


  .prediction-link {
    min-height: auto;
  }


  .content-card,
  .card,
  .download-card {
    padding: 21px;
  }


  .page-hero,
  .hero {
    padding: 58px 0 50px;
  }


  .page-hero h1,
  .hero h1 {
    font-size: 40px;
  }


  .hero-meta {
    align-items: flex-start;

    flex-direction: column;
  }


  .count-badge,
  .date-pill {
    width: fit-content;
  }

}


/* =========================================================
   33. ACCESSIBILITY / FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);

  outline-offset: 3px;
}


/* =========================================================
   34. SELECTION
   ========================================================= */

::selection {
  background: var(--green);

  color: #03100a;
}


/* =========================================================
   35. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #030811;
}

::-webkit-scrollbar-thumb {
  background: #1d3852;

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d5373;
}