.wide-banner { border-radius: 12px; margin: 1em 0; }
.guides-grid { display: grid; gap: 1em; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.guide-card { display: inline; color: #76ebff; text-decoration: underline; }
.guide-card:hover { color: #6eff95; }
.guide-card img { display: block; }
.guide-info { display: flex; align-items: baseline; gap: 0.5em; padding: 0.6em 1em; flex-wrap: nowrap; }
.guide-info h3 { margin: 0; font-size: 1.1em; font-weight: 600; white-space: nowrap; }
.guide-info p { margin: 0; font-size: 0.95em; white-space: nowrap; }
.guide-info p::before { content: "– "; color: #999; }
.tall { max-width: 320px; }
.wide { max-width: 600px; }






:root {
  /* Typography */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Base Colors */
  --color-bg: #111111;
  --color-text: #e3e3e3;
  --color-heading-1: #dddddd;
  --color-heading-2: #eeeeee;

  /* Link Colors */
  --color-link: #0064ad;
  --color-link-hover: #0064ad;

  /* Header Colors */
  --color-site-title: #ffffff;
  --color-site-tagline: #636363;

  /* Table Colors */
  --table-bg: #222222;
  --table-border: #181818;
  --table-label-bg: #111111;
  --game-header-bg: #dcf1ff;
  --game-header-link: #0068c1;

  /* Series Row Backgrounds */
  --total-row-bg: #161616;
  --total-row-text: #6b6b6b;

  /* Status Border Colors */
  --border-ongoing: #8dff8d;
  --border-paused: #ffd78d;
  --border-upcoming: #f1a6ff;

  /* Row Titles */
  --status-upcoming-bg: #7f427a;
  --status-upcoming-hover: #e74ce0;

  --status-ongoing-bg: #3f6946;
  --status-ongoing-hover: #42d347;

  --status-paused-bg: #85653e;
  --status-paused-hover: #f4a44c;

  /* Status Text */
  --text-upcoming: #df67ff;
  --text-ongoing: #8dff8d;
  --text-complete: #666666;
  --text-paused: #ffc28d;
  --text-abandoned: #d32f2f;

  /* Misc */
  --game-title-link: #0095ff;
  --status-link: #19a0ff;
}



.light-theme {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-heading-1: #111111;
  --color-heading-2: #333333;

  --color-link: #0064ad;
  --color-link-hover: #003d6b;

  --color-site-title: #111111;
  --color-site-tagline: #666666;

  --table-bg: #f5f5f5;
  --table-border: #cccccc;
  --table-label-bg: #eeeeee;
  --game-header-bg: #d6efff;
  --game-header-link: #004c87;

  --total-row-bg: #f1f1f1;
  --total-row-text: #555555;

  --border-ongoing: #00ff0a;
  --border-paused: #ffd400;
  --border-upcoming: #ff41f0;

  --status-upcoming-bg: #d1a0d1;
  --status-upcoming-hover: #e774dc;

  --status-ongoing-bg: #a6dcb2;
  --status-ongoing-hover: #5cd361;

  --status-paused-bg: #e5b883;
  --status-paused-hover: #f4a44c;

  --text-upcoming: #880e4f;
  --text-ongoing: #0ca714;
  --text-complete: #555555;
  --text-paused: #ef6c00;
  --text-abandoned: #c62828;

  --game-title-link: #0064ad;
  --status-link: #005f9e;
}



#theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  z-index: 1000;
  user-select: none;
}


/* Container for all game cards */
.game-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  max-width: 1400px;
  align-items: flex-start;
}

/* Individual card style */
.game-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 260px;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  /* min-height: 220px; */
  color: inherit;
  text-decoration: none;
}

/* Image inside the card */
.game-card img {
  width: 100%;
  display: block;
}

/* Content area inside card */
.card-content {
  padding: 4px 8px 0px 8px;
}

/* Title row with game name and status */
.card-title-row {
  display: flex;
  justify-content: space-between;
}

/* Ongoing status */
.status-on {
  color: var(--text-ongoing);
  font-weight: 500;
}

/* Collapsible season details */
.season-info {
  font-size: 0.9em;
  display: none;
  padding: 0px 8px;
}

/* Show/hide toggle links */
.toggle-seasons {
  text-align: center;
  width: 100%;
}

.toggle-seasons a {
  color: #7b7b7b;
  display: inline-block;
}

.plus {
  font-size: 0.9em;
}

.toggle-seasons a span {
  color: white;
}

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 12px;
      margin-top: 1em;
      max-width: 800px;
    }
    .gallery figure {
      margin: 0;
      text-align: center;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }
    .gallery figcaption {
      margin-top: 0.5em;
      font-size: 0.9em;
      color: #555;
    }
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      display: none;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
    }
    .lightbox.active {
      display: flex;
    }





/* ============ Base Styles ============ */
body {
  font-family: var(--font-main);
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

@media (min-width: 1000px) {
  body {
    margin: 0 auto;
    padding: 2rem 2rem;
  }
}

h1 {
  color: var(--color-heading-1);
}

h2, h3 {
  color: var(--color-heading-2);
}

h2 {
  margin-top: 2.5rem;
}

ul {
  padding-left: 1rem;
}

li {
  margin-bottom: 0.4rem;
}

.sublist {
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

/* ============ Header ============ */
.site-header {
  text-align: center;
  margin-bottom: 2rem;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--color-site-title);
}

.site-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-site-tagline);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.site-title-link {
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--color-site-title);
}

/* ============ Links ============ */
a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============ Table Layout ============ */
table.series-clean {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin-bottom: 0;
  font-family: var(--font-main);
  font-size: 15px;
  background-color: var(--table-bg);
  border-bottom: 1px solid var(--table-border);
}

table.series-clean col.col-game    { width: 35%; }
table.series-clean col.col-playlist{ width: 20%; }
table.series-clean col.col-episodes{ width: 10%; }
table.series-clean col.col-duration{ width: 20%; }
table.series-clean col.col-status  { width: 15%; }

table.series-clean th,
table.series-clean td {
  padding: 8px 14px;
  border: 1px solid var(--table-border);
  text-align: right;
}

td.left,
th.left {
  text-align: left !important;
}

table.series-clean tr:first-child th,
table.series-clean tr:first-child td {
  border-top: none;
}

table.series-clean tr:last-child td,
table.series-clean td[rowspan] {
  border-bottom: none;
}

/* ============ Table Headers ============ */
.table-labels th {
  font-weight: 600;
  background-color: var(--table-label-bg) !important;
  border: 1px solid var(--table-label-bg) !important;
}

.game-header th {
  font-weight: 600;
  background-color: var(--game-header-bg);
  font-size: 1em;
  text-align: left;
  padding: 4px 14px !important;
}

.game-header a {
  color: var(--game-header-link);
}

/* ============ Row Statuses ============ */
.status-ongoing-row {
  font-weight: 600;
}

.status-ongoing-row a {
  color: var(--status-link);
}

.series-total-row {
  font-weight: 400;
  background-color: var(--total-row-bg);
  color: var(--total-row-text);
}

.series-total-row td {
  padding: 0 14px !important;
}

/* ============ Highlight Borders ============ */
.status-ongoing {
  border-top: 2px solid var(--border-ongoing) !important;
}

.status-pause {
  border-top: 2px solid var(--border-paused) !important;
}

.status-upcoming {
  border-top: 2px solid var(--border-upcoming) !important;
}

/* ============ Row Titles (Hover) ============ */
.status-upcoming-title {
  background-color: var(--status-upcoming-bg);
  color: var(--color-bg);
  padding: 2px 20px !important;
  transition: background-color 0.2s ease;
}

.status-upcoming-title:hover {
  background-color: var(--status-upcoming-hover);
}

.status-ongoing-title {
  background-color: var(--status-ongoing-bg);
  color: var(--color-bg);
  padding: 2px 20px !important;
  transition: background-color 0.2s ease;
}

.status-ongoing-title:hover {
  background-color: var(--status-ongoing-hover);
}

.status-paused-title {
  background-color: var(--status-paused-bg);
  color: var(--color-bg);
  padding: 2px 20px !important;
  transition: background-color 0.2s ease;
}

.status-paused-title:hover {
  background-color: var(--status-paused-hover);
}

/* ============ Status Text ============ */
.status-label {
  font-weight: 500;
}

.status-ongoing-text {
  color: var(--text-ongoing);
}

.status-complete-text {
  color: var(--text-complete);
}

.status-paused-text {
  color: var(--text-paused);
}

.status-abandoned-text {
  color: var(--text-abandoned);
}

.status-upcoming-text {
  color: var(--text-upcoming);
}

/* ============ Game Title ============ */
.series-title,
.game-title {
  font-weight: 500;
}

.game-title a {
  color: var(--game-title-link) !important;
}

.playlist-thumb {
  max-width: 400px;
  width: 100%;
  height: auto;
}





    .game-card {
      position: relative;
      width: 250px;
      border: 1px solid #444;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
    }
    .game-card img {
      width: 100%;
      display: block;
    }
    .card-content {
      padding: 8px 8px;
      background: var(--table-bg);
    }
    .card-content-row{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .card-title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1em;
      margin-bottom: 5px;
    }
    .status-label.status-upcoming-text {
      background: #7722cc;
      color: white;
      padding: 2px 6px;
      border-radius: 5px;
      font-size: 0.8em;
    }