:root {
  --gd-bg: #060e20;
  --gd-surface: #0b1326;
  --gd-surface-2: #111a31;
  --gd-card: #172033;
  --gd-card-2: #1f2940;
  --gd-line: rgba(210, 187, 255, 0.18);
  --gd-text: #eef4ff;
  --gd-muted: #aeb9d4;
  --gd-soft: #d8e2ff;
  --gd-primary: #d2bbff;
  --gd-purple: #7c3aed;
  --gd-cyan: #4cd7f6;
  --gd-green: #10b981;
  --gd-yellow: #fbbf24;
  --gd-red: #fb7185;
  --gd-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  --gd-radius: 8px;
  --gd-shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--gd-bg);
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--gd-text);
  background:
    radial-gradient(circle at 14% 0%, rgba(124, 58, 237, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(76, 215, 246, 0.14), transparent 32%),
    linear-gradient(180deg, #060e20 0%, #081225 44%, #050b18 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.gd-shell {
  width: min(var(--gd-shell), calc(100% - 40px));
  margin-inline: auto;
}

.gd-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--gd-line);
  background: rgba(6, 14, 32, 0.88);
  backdrop-filter: blur(18px);
}

.gd-header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 300px);
  gap: 18px;
  align-items: center;
}

.gd-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.gd-brand-mark,
.gd-icon-tile {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(76, 215, 246, 0.45);
  border-radius: var(--gd-radius);
  color: #07101f;
  background: linear-gradient(135deg, var(--gd-cyan), var(--gd-primary));
  font-weight: 900;
  box-shadow: 0 0 24px rgba(76, 215, 246, 0.18);
}

.gd-brand strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.05;
}

.gd-brand small {
  display: block;
  max-width: 230px;
  color: var(--gd-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.gd-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.gd-nav a {
  padding: 9px 10px;
  border-radius: var(--gd-radius);
  color: var(--gd-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.gd-nav a:hover,
.gd-nav a:focus {
  color: var(--gd-text);
  background: rgba(210, 187, 255, 0.1);
  outline: none;
}

.gd-search input,
.gd-contact-form input,
.gd-contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(210, 187, 255, 0.22);
  border-radius: var(--gd-radius);
  color: var(--gd-text);
  background: rgba(23, 32, 51, 0.82);
  padding: 10px 13px;
  font: inherit;
}

.gd-search input::placeholder,
.gd-contact-form input::placeholder,
.gd-contact-form textarea::placeholder {
  color: rgba(174, 185, 212, 0.74);
}

.gd-menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  color: var(--gd-text);
  background: var(--gd-card);
  font-weight: 800;
}

.gd-main {
  min-height: 70vh;
}

.gd-hero {
  border-bottom: 1px solid var(--gd-line);
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.9), rgba(6, 14, 32, 0.34)),
    repeating-linear-gradient(135deg, transparent 0, transparent 34px, rgba(255, 255, 255, 0.025) 35px, transparent 36px);
}

.gd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 54px 0;
}

.gd-hero-copy h1,
.gd-page-hero h1,
.gd-article-hero h1 {
  max-width: 900px;
  margin: 14px 0 14px;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.gd-hero-copy p,
.gd-page-hero p,
.gd-article-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--gd-soft);
  font-size: 1.12rem;
}

.gd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gd-button,
.gd-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(210, 187, 255, 0.28);
  border-radius: var(--gd-radius);
  padding: 10px 16px;
  color: var(--gd-text);
  background: rgba(23, 32, 51, 0.95);
  font-weight: 850;
}

.gd-button.primary {
  border-color: transparent;
  color: #07101f;
  background: linear-gradient(135deg, var(--gd-cyan), var(--gd-primary));
}

.gd-hero-panel,
.gd-card,
.gd-next-box {
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  background: linear-gradient(180deg, rgba(23, 32, 51, 0.96), rgba(12, 21, 40, 0.96));
  box-shadow: var(--gd-shadow);
}

.gd-hero-panel {
  padding: 22px;
}

.gd-panel-title,
.gd-kicker,
.gd-meta {
  color: var(--gd-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 16px;
}

.gd-stat {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(210, 187, 255, 0.16);
  border-radius: var(--gd-radius);
  background: rgba(255, 255, 255, 0.04);
}

.gd-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.gd-stat span {
  color: var(--gd-muted);
  font-size: 0.82rem;
}

.gd-live-list {
  display: grid;
  gap: 9px;
}

.gd-live-list a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(76, 215, 246, 0.16);
  border-radius: var(--gd-radius);
  background: rgba(76, 215, 246, 0.055);
}

.gd-live-list span {
  color: var(--gd-muted);
  font-size: 0.82rem;
}

.gd-section {
  padding: 36px 0;
}

.gd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gd-line);
}

.gd-section-head h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.08;
}

.gd-section-head p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--gd-muted);
}

.gd-grid {
  display: grid;
  gap: 18px;
}

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

.gd-layout-news {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: 20px;
}

.gd-stack {
  display: grid;
  gap: 14px;
}

.gd-post-card {
  overflow: hidden;
}

.gd-post-card.compact {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.gd-card-visual {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(76, 215, 246, 0.22), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(124, 58, 237, 0.26), transparent 32%),
    linear-gradient(135deg, #111a31, #07101f);
}

.gd-post-card.compact .gd-card-visual {
  min-height: 100%;
}

.gd-card-visual img,
.gd-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gd-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.gd-visual-title {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--gd-text);
  font-weight: 950;
}

.gd-card-body,
.gd-data-card,
.gd-hub-card {
  padding: 18px;
}

.gd-card h3,
.gd-next-box h2,
.gd-side-card h3 {
  margin: 8px 0 8px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.gd-card p,
.gd-data-card p,
.gd-side-card p,
.gd-next-box p {
  margin: 0 0 12px;
  color: var(--gd-muted);
}

.gd-post-card.large .gd-card-visual {
  min-height: 340px;
}

.gd-link {
  color: var(--gd-cyan);
  font-weight: 900;
}

.gd-link:hover {
  color: var(--gd-primary);
}

.gd-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(210, 187, 255, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--gd-soft);
  background: rgba(210, 187, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.gd-pill.accent {
  color: #07101f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gd-cyan), var(--gd-primary));
}

.gd-pill.muted {
  color: var(--gd-muted);
}

.gd-hub-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gd-hub-card span {
  font-size: 1.35rem;
  font-weight: 950;
}

.gd-hub-card.cat-esports {
  border-color: rgba(124, 58, 237, 0.42);
}

.gd-hub-card.cat-servers {
  border-color: rgba(16, 185, 129, 0.42);
}

.gd-hub-card.cat-releases {
  border-color: rgba(251, 191, 36, 0.42);
}

.gd-hub-card.cat-guides {
  border-color: rgba(76, 215, 246, 0.42);
}

.gd-data-card {
  min-height: 230px;
}

.gd-data-card .gd-icon-tile {
  margin-bottom: 12px;
}

.gd-page-hero {
  padding: 54px 0 32px;
}

.gd-page-hero h1 {
  margin-bottom: 12px;
}

.gd-filter-row {
  margin-bottom: 18px;
}

.gd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  background: rgba(23, 32, 51, 0.88);
  box-shadow: var(--gd-shadow);
}

.gd-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.gd-table th,
.gd-table td {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.12);
  text-align: left;
  vertical-align: middle;
}

.gd-table th {
  color: var(--gd-primary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gd-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 900;
  color: #04111f;
  background: var(--gd-green);
}

.gd-status-upcoming,
.gd-status-announced,
.gd-status-regional {
  background: var(--gd-yellow);
}

.gd-status-tba {
  background: var(--gd-red);
}

.gd-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}

.gd-article-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  background: linear-gradient(135deg, var(--gd-card), #07101f);
  box-shadow: var(--gd-shadow);
}

.gd-term-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gd-term-row a {
  border: 1px solid rgba(76, 215, 246, 0.32);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--gd-cyan);
  font-weight: 850;
}

.gd-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 52px;
}

.gd-content {
  color: var(--gd-soft);
  font-size: 1.05rem;
}

.gd-content h2,
.gd-content h3 {
  margin: 34px 0 12px;
  color: var(--gd-text);
  line-height: 1.12;
}

.gd-content a {
  color: var(--gd-cyan);
  font-weight: 850;
}

.gd-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
}

.gd-content th,
.gd-content td {
  padding: 11px 12px;
  border: 1px solid rgba(210, 187, 255, 0.14);
}

.gd-next-box {
  margin-top: 34px;
  padding: 20px;
}

.gd-sidebar {
  display: grid;
  gap: 16px;
}

.gd-side-card {
  padding: 18px;
}

.gd-side-card a {
  display: block;
  margin-top: 10px;
  color: var(--gd-cyan);
  font-weight: 850;
}

.gd-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  padding: 22px;
}

.gd-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--gd-soft);
  font-weight: 850;
}

.gd-contact-form label:nth-child(5),
.gd-contact-form p {
  grid-column: 1 / -1;
}

.gd-footer {
  border-top: 1px solid var(--gd-line);
  background: rgba(3, 9, 20, 0.95);
  padding: 34px 0;
}

.gd-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 0.6fr));
  gap: 24px;
}

.gd-footer p {
  max-width: 460px;
  color: var(--gd-muted);
}

.gd-footer h3 {
  margin: 0 0 10px;
}

.gd-footer a:not(.gd-brand) {
  display: block;
  margin: 7px 0;
  color: var(--gd-muted);
}

.gd-pagination {
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .gd-header-inner {
    grid-template-columns: 1fr auto;
  }

  .gd-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }

  .gd-nav,
  .gd-search {
    grid-column: 1 / -1;
    display: none;
  }

  .gd-nav.is-open,
  .gd-nav.is-open + .gd-search {
    display: flex;
  }

  .gd-nav.is-open {
    justify-content: flex-start;
  }

  .gd-search {
    display: none;
  }

  .gd-hero-grid,
  .gd-article-hero,
  .gd-article-layout,
  .gd-layout-news {
    grid-template-columns: 1fr;
  }

  .gd-grid-3,
  .gd-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gd-shell {
    width: min(100% - 24px, var(--gd-shell));
  }

  .gd-header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .gd-brand small {
    display: none;
  }

  .gd-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .gd-nav a {
    min-height: 42px;
    padding: 10px;
    background: rgba(23, 32, 51, 0.8);
  }

  .gd-hero-grid,
  .gd-page-hero,
  .gd-article-hero {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .gd-hero-copy h1,
  .gd-page-hero h1,
  .gd-article-hero h1 {
    font-size: 2.28rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .gd-hero-copy p,
  .gd-page-hero p,
  .gd-article-hero p {
    font-size: 1rem;
  }

  .gd-stats-grid,
  .gd-grid-3,
  .gd-footer-grid,
  .gd-contact-form {
    grid-template-columns: 1fr;
  }

  .gd-post-card.compact {
    grid-template-columns: 1fr;
  }

  .gd-post-card.compact .gd-card-visual,
  .gd-post-card.large .gd-card-visual {
    min-height: 220px;
  }

  .gd-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gd-article-media {
    min-height: 220px;
  }
}

/* Homepage v2: compact dashboard matching the supplied design direction. */
:root {
  --gd-shell: 980px;
  --gd-bg: #071022;
  --gd-surface: #0b1326;
  --gd-surface-2: #111a31;
  --gd-card: #151f35;
  --gd-line: rgba(210, 187, 255, 0.12);
  --gd-text: #f2f6ff;
  --gd-muted: #96a4c0;
  --gd-primary: #d2bbff;
  --gd-cyan: #58d7ff;
  --gd-purple: #9b6cff;
}

body {
  background:
    radial-gradient(circle at 46% -6%, rgba(155, 108, 255, 0.14), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(88, 215, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #071022 0%, #081123 52%, #050a16 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  background-image: radial-gradient(rgba(210, 187, 255, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.gd-site-header {
  background: rgba(10, 17, 35, 0.94);
  border-bottom-color: rgba(210, 187, 255, 0.11);
}

.gd-header-inner {
  min-height: 56px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
}

.gd-brand {
  gap: 8px;
}

.gd-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #071022;
  font-size: 0.74rem;
  box-shadow: none;
}

.gd-brand strong {
  color: var(--gd-primary);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.gd-brand small {
  display: none;
}

.gd-nav {
  justify-content: flex-start;
  gap: 12px;
}

.gd-nav a {
  padding: 5px 0;
  color: #c6d2eb;
  background: transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 850;
}

.gd-nav a:hover,
.gd-nav a:focus {
  color: var(--gd-primary);
  background: transparent;
}

.gd-header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gd-search {
  width: 180px;
}

.gd-search input {
  min-height: 30px;
  border-radius: 4px;
  font-size: 0.72rem;
  padding: 7px 10px;
  background: #172036;
}

.gd-icon-button,
.gd-login-button {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  border: 1px solid rgba(210, 187, 255, 0.15);
  border-radius: 999px;
  color: #dce6ff;
  background: rgba(17, 26, 49, 0.92);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gd-login-button {
  min-width: 48px;
  padding: 0 10px;
  color: #071022;
  background: var(--gd-primary);
}

.gd-dashboard-home {
  padding: 22px 0 48px;
}

.gd-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.86fr);
  gap: 18px;
}

.gd-lead-story,
.gd-headline-card,
.gd-dash-card,
.gd-stream-card {
  border: 1px solid var(--gd-line);
  border-radius: 4px;
  background: rgba(17, 26, 49, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.gd-lead-story {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.gd-lead-media,
.gd-lead-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gd-lead-media img {
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.05) contrast(1.04);
}

.gd-lead-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 34, 0.08), rgba(7, 16, 34, 0.94)),
    linear-gradient(90deg, rgba(7, 16, 34, 0.78), rgba(7, 16, 34, 0.18));
}

.gd-lead-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 22px;
}

.gd-lead-content h1 {
  max-width: 680px;
  margin: 9px 0 8px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.gd-lead-content p {
  max-width: 610px;
  margin: 0;
  color: #c4d0eb;
  font-size: 0.82rem;
  line-height: 1.45;
}

.gd-story-meta {
  display: flex;
  gap: 18px;
  margin-top: 15px;
  color: #bdc8e1;
  font-size: 0.7rem;
  font-weight: 750;
}

.gd-headline-rail {
  display: grid;
  gap: 12px;
}

.gd-headline-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 126px 1fr;
  grid-template-rows: auto auto auto;
  gap: 3px 12px;
  align-items: start;
  padding: 10px;
  overflow: hidden;
}

.gd-headline-card img {
  grid-row: 1 / 4;
  width: 126px;
  height: 82px;
  border-radius: 4px;
  object-fit: cover;
}

.gd-headline-card span,
.gd-meta {
  color: var(--gd-purple);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-headline-card strong {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.14;
}

.gd-headline-card small {
  color: var(--gd-muted);
  font-size: 0.68rem;
}

.gd-widget-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.gd-dash-card {
  padding: 16px;
}

.gd-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.gd-widget-head h2 {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.1;
}

.gd-widget-head a,
.gd-tabs a,
.gd-load-more {
  color: var(--gd-primary);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gd-match-line,
.gd-server-line,
.gd-release-line,
.gd-tournament-line,
.gd-team-line {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid rgba(210, 187, 255, 0.08);
}

.gd-match-line {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.gd-match-line strong {
  color: var(--gd-cyan);
  font-size: 1.05rem;
}

.gd-match-line span,
.gd-server-line span,
.gd-release-line span,
.gd-team-line span {
  color: #f1f5ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.gd-match-line span:last-of-type {
  text-align: right;
}

.gd-match-line small {
  grid-column: 1 / -1;
}

.gd-server-line,
.gd-release-line {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.gd-server-line strong,
.gd-release-line span {
  color: var(--gd-cyan);
  font-size: 0.72rem;
}

.gd-server-line small,
.gd-release-line small,
.gd-tournament-line small,
.gd-team-line small {
  grid-column: 1 / -1;
  color: var(--gd-muted);
  font-size: 0.66rem;
}

.gd-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.78fr);
  gap: 20px;
  margin-top: 26px;
}

.gd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(210, 187, 255, 0.14);
}

.gd-tabs a {
  padding-bottom: 9px;
  color: var(--gd-muted);
}

.gd-tabs a.is-active {
  color: var(--gd-primary);
  border-bottom: 2px solid var(--gd-primary);
}

.gd-stream-list,
.gd-side-dashboard {
  display: grid;
  gap: 14px;
}

.gd-stream-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 12px;
}

.gd-stream-thumb img {
  width: 180px;
  height: 114px;
  border-radius: 4px;
  object-fit: cover;
}

.gd-stream-card h3 {
  margin: 5px 0 5px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.18;
}

.gd-stream-card p {
  margin: 0;
  color: #bcc8e4;
  font-size: 0.78rem;
  line-height: 1.48;
}

.gd-load-more {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(210, 187, 255, 0.12);
  border-radius: 4px;
  background: rgba(17, 26, 49, 0.62);
}

.gd-game-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gd-game-mini-grid a {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid rgba(210, 187, 255, 0.09);
  border-radius: 4px;
  background: rgba(8, 16, 35, 0.76);
  text-align: center;
}

.gd-game-mini-grid span {
  color: var(--gd-cyan);
  font-size: 0.9rem;
  font-weight: 950;
}

.gd-game-mini-grid small {
  max-width: 92px;
  color: #c5d0e8;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gd-tournament-line strong,
.gd-team-line strong {
  color: #fff;
  font-size: 0.78rem;
}

.gd-team-line {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.gd-team-line span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #071022;
  background: var(--gd-primary);
  font-size: 0.64rem;
}

.gd-footer {
  background: #060c19;
}

.gd-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gd-link-tile {
  display: grid;
  gap: 6px;
  min-height: 110px;
  padding: 18px;
  color: #fff;
  font-weight: 950;
}

.gd-link-tile span {
  color: var(--gd-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.gd-form-layout,
.gd-entity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.gd-entity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: end;
  padding: 58px 0 34px;
  border-bottom: 1px solid var(--gd-line);
}

.gd-entity-hero h1 {
  max-width: 900px;
  margin: 12px 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.gd-entity-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--gd-soft);
  font-size: 1.05rem;
}

.gd-entity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gd-entity-status {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.gd-entity-status strong {
  color: #fff;
  font-size: 1.28rem;
}

.gd-entity-side {
  display: grid;
  gap: 16px;
}

.gd-entity-facts {
  padding: 18px;
}

.gd-entity-facts h2 {
  margin-top: 0;
  color: #fff;
  font-size: 1.15rem;
}

.gd-entity-facts ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gd-soft);
}

.gd-entity-facts .gd-table th,
.gd-entity-facts .gd-table td {
  padding: 9px 0;
}

.gd-entity-facts .gd-table th {
  width: 42%;
  color: var(--gd-muted);
}

.gd-entity-content {
  padding: 24px;
}

@media (max-width: 980px) {
  .gd-header-inner {
    grid-template-columns: 1fr auto;
  }

  .gd-header-tools {
    grid-column: 1 / -1;
    display: none;
  }

  .gd-nav.is-open + .gd-header-tools,
  .gd-nav.is-open ~ .gd-header-tools {
    display: flex;
  }

  .gd-top-grid,
  .gd-main-grid,
  .gd-form-layout,
  .gd-entity-layout,
  .gd-entity-hero {
    grid-template-columns: 1fr;
  }

  .gd-widget-row,
  .gd-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .gd-dashboard-home {
    padding-top: 14px;
  }

  .gd-lead-story {
    min-height: 390px;
  }

  .gd-lead-content h1 {
    font-size: 1.34rem;
  }

  .gd-headline-card,
  .gd-stream-card {
    grid-template-columns: 110px 1fr;
  }

  .gd-headline-card img,
  .gd-stream-thumb img {
    width: 110px;
    height: 84px;
  }

  .gd-stream-card p {
    display: none;
  }

  .gd-search {
    width: 100%;
  }

  .gd-header-tools {
    flex-wrap: wrap;
  }
}
