/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --font-sans: var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Oasis brand accents (from the original site). Green = primary action,
     cyan = links/secondary/borders. */
  --neon-green: #0fdb2b;
  --neon-cyan: #61dfe5;

  /* Light mode — truly white, not grey. */
  --color-bg: #ffffff;
  --color-bg-elevated: #ffffff;
  --color-bg-sunken: #f5f6f8;
  --color-border: #e5e7ec;
  --color-text: #111118;
  --color-text-muted: #5b6070;
  --color-accent: #0fdb2b;
  --color-accent-strong: #0bb623;
  --color-accent-contrast: #06130a;
  --color-cyan: #0d9aa4;
  --color-danger: #d7373f;
  --color-live: #e0294a;
  --shadow-card: 0 1px 2px rgba(20, 22, 31, 0.06), 0 1px 8px rgba(20, 22, 31, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(209, 211, 216, 0.55);
  --glow-green: 0 0 22px rgba(15, 219, 43, 0.28);
  --glow-cyan: 0 0 22px rgba(97, 223, 229, 0.28);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1120px;

  color-scheme: light;
}

/* Dark mode — neutral dark, no blue cast. */
:root[data-theme='dark'] {
  --color-bg: #0a0a0b;
  --color-bg-elevated: #141416;
  --color-bg-sunken: #050505;
  --color-border: #26262a;
  --color-text: #ffffff;
  --color-text-muted: #a1a1aa;
  --color-accent: #0fdb2b;
  --color-accent-strong: #24e63c;
  --color-accent-contrast: #06130a;
  --color-cyan: #61dfe5;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.45);
  --glass-bg: rgba(15, 15, 17, 0.82);
  --glass-border: rgba(42, 42, 48, 0.6);
  --glow-green: 0 0 22px rgba(15, 219, 43, 0.5);
  --glow-cyan: 0 0 22px rgba(97, 223, 229, 0.5);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --color-bg: #0a0a0b;
    --color-bg-elevated: #141416;
    --color-bg-sunken: #050505;
    --color-border: #26262a;
    --color-text: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-accent: #0fdb2b;
    --color-accent-strong: #24e63c;
    --color-accent-contrast: #06130a;
    --color-cyan: #61dfe5;
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.45);
    --glass-bg: rgba(15, 15, 17, 0.82);
    --glass-border: rgba(42, 42, 48, 0.6);
    --glow-green: 0 0 22px rgba(15, 219, 43, 0.5);
    --glow-cyan: 0 0 22px rgba(97, 223, 229, 0.5);
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  /* Global sticky-footer scaffold (§3): the page is a full-height flex column
     so the footer sits at the bottom of the viewport on short pages and
     directly after the content on long ones — never floating mid-screen. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

/* The main content region absorbs all free vertical space, pushing the footer
   down. flex-basis:auto + grow keeps short pages full-height without ever
   clipping long content. */
main {
  flex: 1 0 auto;
  width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--color-text);
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: contain;
  display: block;
}

.brand__name {
  display: none;
}

@media (min-width: 640px) {
  .brand__name {
    display: inline;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: nowrap;
}

.main-nav__link {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link[aria-current='page'] {
  color: var(--color-text);
  background: var(--color-bg-sunken);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.icon-btn {
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.icon-btn:hover {
  border-color: var(--color-accent);
}

.menu-toggle {
  display: inline-flex;
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  border-top: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav__link {
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.mobile-nav__link:hover {
  background: var(--color-bg-sunken);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-6);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn {
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}

.btn--primary:hover {
  background: var(--color-accent-strong);
  box-shadow: var(--glow-green);
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.btn--secondary:hover {
  background: color-mix(in srgb, var(--color-cyan) 12%, transparent);
  box-shadow: var(--glow-cyan);
}

.btn--discord {
  background: #5865f2;
  color: #ffffff;
}

.btn--discord:hover {
  background: #4752c4;
  box-shadow: 0 0 22px rgba(88, 101, 242, 0.4);
}

.btn--sm {
  padding: var(--space-2) var(--space-3);
  font-size: 0.85rem;
}

/* Fixed grid + ambient glow behind all content — gives depth without noise. */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line, rgba(97, 223, 229, 0.05)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line, rgba(97, 223, 229, 0.05)) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

.grid-bg::before,
.grid-bg::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.grid-bg::before {
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(15, 219, 43, 0.22), transparent 70%);
}

.grid-bg::after {
  top: -160px;
  right: -180px;
  background: radial-gradient(circle, rgba(97, 223, 229, 0.2), transparent 70%);
}

:root {
  --grid-line: rgba(15, 219, 43, 0.06);
}

:root[data-theme='dark'] {
  --grid-line: rgba(97, 223, 229, 0.045);
}

.gradient-text {
  background: linear-gradient(100deg, var(--neon-green), var(--neon-cyan), var(--neon-green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-pan 5s linear infinite;
}

@keyframes gradient-pan {
  to {
    background-position: 200% center;
  }
}

.hero {
  padding-block: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
}

.hero__logo {
  display: block;
  width: clamp(120px, 22vw, 200px);
  height: auto;
  margin: 0 auto var(--space-6);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

.hero__eyebrow {
  display: inline-block;
  color: var(--color-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  padding: var(--space-1) var(--space-3);
  border: 1px solid color-mix(in srgb, var(--color-cyan) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-cyan) 8%, transparent);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin: var(--space-6) 0 var(--space-4);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Unified page heading (§4). Mirrors the "Transparenz" reference: gradient
   wordmark, centered, consistent rhythm, responsive clamp. Used site-wide via
   the <PageTitle> component so every top-level page reads the same. */
.page-title {
  text-align: center;
  margin-block: var(--space-12) var(--space-8);
}

.page-title__eyebrow {
  display: inline-block;
  color: var(--color-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  padding: var(--space-1) var(--space-3);
  border: 1px solid color-mix(in srgb, var(--color-cyan) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-cyan) 8%, transparent);
  margin-bottom: var(--space-4);
}

.page-title__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-title__subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: var(--space-4) auto 0;
}

.section {
  padding-block: var(--space-12);
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section__title {
  font-size: 1.5rem;
}

.grid {
  display: grid;
  grid-gap: var(--space-6);
  gap: var(--space-6);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card__link {
  text-decoration: none;
  color: inherit;
}

.card__link:hover .card {
  border-color: color-mix(in srgb, var(--color-cyan) 45%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), var(--glow-cyan);
  transform: translateY(-3px);
}

.card__link:hover .card__title {
  color: var(--color-cyan);
}

.card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1 1;
}

.card__image {
  height: 168px;
  flex-shrink: 0;
  background:
    radial-gradient(120% 120% at 0% 0%, color-mix(in srgb, var(--neon-green) 16%, transparent), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, color-mix(in srgb, var(--neon-cyan) 16%, transparent), transparent 55%),
    var(--color-bg-sunken);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card__link:hover .card__image img {
  transform: scale(1.05);
}

.card__meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.card__title {
  font-size: 1.1rem;
  transition: color 0.15s ease;
}

/* Line-clamp utilities keep variable-length titles/excerpts from making cards
   in the same row wildly different heights (§7, §8, §9). */
.clamp-1,
.clamp-2,
.clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamp-1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.clamp-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* Uniform person/partner card (§15, §20). Fixed height, centered content,
   circular media slot that never crops arbitrarily. */
.person-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  height: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card__link:hover .person-card {
  border-color: color-mix(in srgb, var(--color-cyan) 45%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), var(--glow-cyan);
  transform: translateY(-3px);
}

.person-card__media {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 0% 0%, color-mix(in srgb, var(--neon-green) 18%, transparent), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, color-mix(in srgb, var(--neon-cyan) 18%, transparent), transparent 55%),
    var(--color-bg-sunken);
  border: 1px solid var(--color-border);
}

.person-card__media img {
  width: 100%;
  height: 100%;
}

/* People: fill the circle, centered — no odd crops. */
.person-card__media--avatar img {
  object-fit: cover;
  object-position: center;
}

/* Brands: contain the whole logo inside the circle with breathing room. */
.person-card__media--logo {
  background: var(--color-bg-sunken);
}

.person-card__media--logo img {
  object-fit: contain;
  padding: var(--space-4);
}

.person-card__fallback {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-muted);
}

.person-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.person-card__subtitle {
  color: var(--color-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.person-card__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: var(--space-2) 0 0;
}

/* Contact page direct-contact block (§24). */
.contact-direct {
  margin-top: var(--space-12);
}

.contact-direct__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Global state pages: 404, error, loading. */
.state-page {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
}

.state-page__code {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: var(--color-text-muted);
  opacity: 0.35;
}

.state-page__code--error {
  width: clamp(4rem, 12vw, 5.5rem);
  height: clamp(4rem, 12vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 1;
  color: var(--color-danger);
  border: 3px solid color-mix(in srgb, var(--color-danger) 45%, transparent);
  font-size: clamp(2.2rem, 7vw, 3rem);
}

.state-page__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0;
}

.state-page__text {
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0;
}

.spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  animation: spinner-spin 0.7s linear infinite;
}

@keyframes spinner-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Reusable form controls (§28). */
.form-card {
  max-width: 620px;
  margin-inline: auto;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: stretch;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.input {
  width: 100%;
  font: inherit;
  color: var(--color-text);
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--color-cyan) 55%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-cyan) 18%, transparent);
}

textarea.input {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--color-danger);
  font-size: 0.85rem;
}

.form-success {
  color: var(--color-accent-strong);
  font-weight: 600;
  margin: 0;
}

/* ---- Tournament detail polish ---------------------------------------------- */
.tournament-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.tournament-header__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.tournament-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  margin: var(--space-4) 0 var(--space-6);
}

.tournament-schedule__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.tournament-schedule__value {
  font-weight: 600;
}

/* Champion banner. */
.champion-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-4) 0 var(--space-8);
  border: 1px solid color-mix(in srgb, var(--color-cyan) 45%, transparent);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 160% at 0% 0%, color-mix(in srgb, var(--neon-green) 12%, transparent), transparent 60%),
    radial-gradient(120% 160% at 100% 100%, color-mix(in srgb, var(--neon-cyan) 12%, transparent), transparent 60%),
    var(--color-bg-elevated);
}

.champion-banner__trophy {
  font-size: 2rem;
}

.champion-banner__name {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
}

.tournament-section {
  margin-bottom: var(--space-10);
}

.tournament-section__title {
  font-size: 1.3rem;
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-border);
}

/* Standings table. */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.standings-table thead th {
  text-align: left;
  padding: var(--space-3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.standings-table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.standings-table tbody tr:hover {
  background: var(--color-bg-sunken);
}

.standings-table__rank {
  width: 2.2rem;
  color: var(--color-text-muted);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.standings-table__num {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Match rows. */
.match-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.match-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

a.match-row:hover {
  border-color: color-mix(in srgb, var(--color-cyan) 45%, transparent);
  transform: translateX(2px);
}

.match-row__teams {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.match-row__team {
  font-weight: 600;
  flex: 1 1;
  min-width: 0;
}

.match-row__team--b {
  text-align: right;
}

.match-row__vs {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  flex: none;
}

.match-row__score {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* ---- Bracket tree ---------------------------------------------------------- */
.bracket {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  padding: var(--space-2) 0 var(--space-4);
}

.bracket__round {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1;
}

.bracket__round-label {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  font-weight: 700;
  padding-bottom: var(--space-3);
}

.bracket__matches {
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.bracket-match-wrap {
  position: relative;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: var(--space-8);
}

/* Horizontal connector out the right of every match except the final. */
.bracket__round:not(:last-child) .bracket-match-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(var(--space-8) / 2);
  width: calc(var(--space-8) / 2);
  height: 2px;
  background: var(--color-border);
}

/* Vertical connector joining each pair (drawn from the odd match down to the
   even one), meeting the next round's match at the mid-point. */
.bracket__round:not(:last-child) .bracket-match-wrap:nth-child(odd)::before {
  content: '';
  position: absolute;
  right: calc(var(--space-8) / 2);
  top: 50%;
  height: 100%;
  width: 2px;
  background: var(--color-border);
}

.bracket-match-link {
  text-decoration: none;
  color: inherit;
}

.bracket-match {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.bracket-match-link:hover .bracket-match {
  border-color: color-mix(in srgb, var(--color-cyan) 45%, transparent);
  transform: translateY(-2px);
}

.bracket-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: 0.9rem;
}

.bracket-team__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bracket-team__score {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  flex: none;
}

.bracket-team--winner {
  font-weight: 700;
  color: var(--color-accent-strong);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.bracket-team--winner .bracket-team__name::after {
  content: ' 🏆';
}

.bracket-team--loser {
  color: var(--color-text-muted);
}

.bracket-match__divider {
  height: 1px;
  background: var(--color-border);
}

/* ---- Map veto board -------------------------------------------------------- */
.veto-board {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.veto-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.veto-board__title {
  font-size: 1.2rem;
  margin: 0;
}

.veto-turn {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
}

.veto-turn--mine {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  box-shadow: var(--glow-green);
}

.veto-turn--theirs {
  background: var(--color-bg-sunken);
  color: var(--color-text-muted);
}

.veto-maps {
  display: grid;
  grid-gap: var(--space-3);
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.veto-map {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--neon-green) 14%, transparent), transparent 60%),
    radial-gradient(120% 140% at 100% 100%, color-mix(in srgb, var(--neon-cyan) 14%, transparent), transparent 60%),
    var(--color-bg-sunken);
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: default;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.veto-map--actionable {
  cursor: pointer;
}

.veto-map--actionable:hover:not(:disabled) {
  border-color: var(--color-danger);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.veto-map__hint {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px var(--space-2);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-danger) 18%, transparent);
  color: var(--color-danger);
  font-weight: 700;
}

/* A banned map: dimmed with a strike + who banned it. */
.veto-map--banned {
  opacity: 0.55;
  filter: grayscale(0.6);
  background: var(--color-bg-sunken);
  border-style: dashed;
}

.veto-map--banned .veto-map__name {
  text-decoration: line-through;
}

.veto-map--picked {
  border-color: var(--color-accent);
  box-shadow: var(--glow-green);
}

.veto-map__by {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.veto-map__badge {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px var(--space-2);
  border-radius: 999px;
}

.veto-map__badge--ban {
  background: color-mix(in srgb, var(--color-danger) 16%, transparent);
  color: var(--color-danger);
}

.veto-map__badge--pick {
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
  color: var(--color-accent-strong);
}

/* ---- Premier-style radial map veto (§10.2) --------------------------------- */
.veto2 {
  border: 1px solid #26262a;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 95% at 50% 28%, #1c1d23 0%, #0b0b0d 68%);
  color: #fff;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.veto2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.veto2__title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.veto2__stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

/* Central "box" that shows the current phase / count. */
.veto2__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 1 / 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03);
  transition: opacity 0.5s ease;
}

.veto2__center-action,
.veto2__center-label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-green);
  font-weight: 800;
}

.veto2__center-count {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.veto2__center-of {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.veto2.is-complete .veto2__center {
  opacity: 0;
}

/* Radially-placed map tiles (left/top set inline). */
.veto2-tile {
  position: absolute;
  width: 27%;
  transform: translate(-50%, -50%);
  padding: 0;
  border: none;
  background: none;
  cursor: default;
  z-index: 2;
  transition:
    left 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    top 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.35s ease,
    opacity 0.5s ease;
}

.veto2-tile__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, #2a2b31, #151519);
}

.veto2-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.veto2-tile__name {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* Actionable (your turn). */
.veto2-tile.is-actionable {
  cursor: pointer;
}
.veto2-tile.is-actionable .veto2-tile__media {
  border-color: rgba(224, 41, 74, 0.45);
  animation: veto2-pulse 1.9s ease-in-out infinite;
}
.veto2-tile.is-actionable:hover {
  transform: translate(-50%, -50%) scale(1.07);
  z-index: 4;
}
.veto2-tile.is-actionable:hover .veto2-tile__media {
  border-color: var(--color-live);
  box-shadow: 0 0 0 2px var(--color-live), 0 12px 26px rgba(0, 0, 0, 0.55);
  animation: none;
}

/* Banned. */
.veto2-tile.is-banned .veto2-tile__media img {
  filter: grayscale(0.85) brightness(0.42);
}
.veto2-tile.is-banned .veto2-tile__media {
  border-color: rgba(224, 41, 74, 0.5);
}
.veto2-tile__x {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-live);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  animation: veto2-x-pop 0.4s cubic-bezier(0.2, 1.5, 0.4, 1);
}

/* Tag pill at the bottom of a tile. */
.veto2-tile__tag {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: 92%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.veto2-tile__tag--ban {
  background: var(--color-live);
  color: #fff;
}
.veto2-tile__tag--hint {
  background: rgba(224, 41, 74, 0.85);
  color: #fff;
}
.veto2-tile__tag--pick {
  background: var(--neon-green);
  color: #06130a;
}

/* Final: the picked map grows in the centre, the rest fade out. */
.veto2-tile.is-picked {
  width: 44%;
  z-index: 6;
}
.veto2-tile.is-picked .veto2-tile__media {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 2px var(--neon-green), 0 0 48px rgba(15, 219, 43, 0.45);
}
.veto2-tile.is-picked .veto2-tile__media img {
  filter: none;
}
.veto2-tile.is-picked .veto2-tile__name {
  font-size: 1.15rem;
  margin-top: 10px;
}
.veto2-tile.is-out {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  pointer-events: none;
}

@keyframes veto2-x-pop {
  from {
    transform: translate(-50%, -50%) scale(0.2) rotate(-25deg);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes veto2-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 41, 74, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(224, 41, 74, 0.3);
  }
}

/* Active tournament cards (§7): equal height per row (grid stretch + flex body)
   with the date/CTA pinned to the bottom so they line up across cards. */
.tournament-card .card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tournament-card__footer {
  margin-top: auto;
  padding-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.tournament-card__cta {
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Tournament archive (§7): compact, lower-weight rows. */
.tournament-archive__title {
  margin-bottom: var(--space-4);
}

.tournament-archive {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: var(--space-2);
  gap: var(--space-2);
}

.archive-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.archive-card:hover {
  border-color: color-mix(in srgb, var(--color-cyan) 40%, transparent);
  background: var(--color-bg-sunken);
}

.archive-card__status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 2px var(--space-2);
  border-radius: 999px;
  background: var(--color-bg-sunken);
  color: var(--color-text-muted);
  flex: none;
}

.archive-card__status--cancelled {
  color: var(--color-danger);
}

.archive-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-card__date {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  flex: none;
}

.tournament-archive__more {
  margin-top: var(--space-4);
  text-align: center;
}

/* Donation/Transparenz info card (§21): left-aligned to the body text (same
   left edge), kept narrow so it doesn't stretch across the whole column; the
   820px column itself stays centered on the page. */
.donate-info-card {
  max-width: none;
  margin: 0 0 var(--space-10);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-6);
}

.donate-info-card__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* The former tiny badge — now a legible cyan callout at body-text size (§21). */
.donate-info-card__note {
  margin: 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-cyan) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-cyan) 30%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
}

/* Streamer profile editor with live preview (§11). */
.streamer-editor {
  display: grid;
  grid-template-columns: 1fr 240px;
  grid-gap: var(--space-8);
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-4);
}

.streamer-editor__form {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.streamer-editor__checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  cursor: pointer;
}

.streamer-editor__preview {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.streamer-card--static {
  cursor: default;
}

@media (max-width: 720px) {
  .streamer-editor {
    grid-template-columns: 1fr;
  }

  .streamer-editor__preview {
    position: static;
    max-width: 240px;
    margin-inline: auto;
  }
}

/* Public streamer cards (§10): vertical portrait format, responsive grid. */
.streamer-grid {
  display: grid;
  grid-gap: var(--space-6);
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.streamer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.streamer-card:not(.streamer-card--static):hover {
  border-color: color-mix(in srgb, var(--color-cyan) 45%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), var(--glow-cyan);
  transform: translateY(-3px);
}

/* Gradient banner header. */
.streamer-card__banner {
  position: relative;
  width: 100%;
  height: 84px;
  background:
    radial-gradient(120% 160% at 0% 0%, color-mix(in srgb, var(--neon-green) 45%, transparent), transparent 60%),
    radial-gradient(120% 160% at 100% 0%, color-mix(in srgb, var(--neon-cyan) 45%, transparent), transparent 60%),
    var(--color-bg-sunken);
}

/* Circular avatar overlapping the banner. position/z-index keep it above the
   positioned banner (which would otherwise paint over the circle's top). */
.streamer-card__avatar {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin-top: -44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-sunken);
  border: 3px solid var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.streamer-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamer-card__fallback {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-muted);
}

.streamer-card__status {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px var(--space-2);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  color: var(--color-text-muted);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.streamer-card__status.is-live {
  background: var(--color-live);
  color: #fff;
}

.streamer-card__body {
  padding: var(--space-3) var(--space-5) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1 1;
}

.streamer-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: var(--space-2) 0 0;
  word-break: break-word;
}

.streamer-card__desc {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.streamer-card__twitch {
  margin-top: var(--space-1);
  font-size: 0.78rem;
  font-weight: 700;
  color: #a970ff;
  letter-spacing: 0.02em;
}

/* GitBook-style rules layout (§19). */
.rules-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-gap: var(--space-8);
  gap: var(--space-8);
  align-items: start;
}

.rules-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.rules-sidebar__toggle {
  display: none;
  width: 100%;
  font: inherit;
  font-weight: 600;
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  cursor: pointer;
}

.rules-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  border-left: 1px solid var(--color-border);
}

.rules-sidebar__link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  padding: var(--space-2) var(--space-4);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.rules-sidebar__link:hover {
  color: var(--color-text);
}

.rules-sidebar__link.is-active {
  color: var(--color-cyan);
  border-left-color: var(--color-cyan);
  font-weight: 600;
}

.rules-content {
  min-width: 0;
  max-width: 760px;
}

.rules-chapter {
  scroll-margin-top: 90px;
  padding-bottom: var(--space-12);
}

.rules-chapter__title {
  font-size: 1.6rem;
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 760px) {
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .rules-sidebar {
    position: static;
  }

  .rules-sidebar__toggle {
    display: block;
  }

  .rules-sidebar__nav {
    display: none;
    border-left: none;
    margin-top: var(--space-2);
    padding: var(--space-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }

  .rules-sidebar__nav.is-open {
    display: flex;
  }
}

/* Account "my teams" list (§25). */
.account-teams {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.account-teams__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.account-teams__name {
  font-weight: 600;
  text-decoration: none;
}

.account-teams__name:hover {
  color: var(--color-cyan);
}

/* Team management (§26). */
.team-create {
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.team-create__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.team-create__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.team-create__row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.team-summary-card {
  flex-direction: row;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
}

.team-summary-card__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  font-weight: 800;
  color: var(--color-text-muted);
}

.team-summary-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-summary-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1 1;
}

.team-summary-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* OGC Division page (§13). */
.ogc-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-12);
}

.ogc-logo img {
  width: clamp(140px, 30vw, 200px);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.ogc-about {
  max-width: 760px;
  margin-inline: auto;
  padding: var(--space-8);
  text-align: center;
}

.ogc-cta {
  margin-top: var(--space-12);
}

/* Stat band + CTA band (home) */
.stat-band {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-bg-elevated), var(--color-bg-sunken));
  padding: var(--space-12) var(--space-8);
  text-align: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
}

.stat__value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.stat__value--green {
  color: var(--neon-green);
}

.stat__value--cyan {
  color: var(--color-cyan);
}

.stat__label {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.section__link {
  color: var(--color-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.section__link:hover {
  color: var(--neon-green);
}

.feature-grid {
  display: grid;
  grid-gap: var(--space-6);
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  padding: var(--space-6);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.feature:hover {
  border-color: color-mix(in srgb, var(--color-cyan) 40%, transparent);
  transform: translateY(-3px);
}

/* Home tiles are links (§6) — inherit text colour, no underline, show pointer. */
.feature--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.feature--link:hover .feature__title {
  color: var(--color-cyan);
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent-contrast);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
}

.feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.feature__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* About / timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-gap: var(--space-4);
  gap: var(--space-4);
}

.timeline__year {
  color: var(--color-cyan);
  font-weight: 800;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}

.timeline__body {
  border-left: 2px solid var(--color-border);
  padding: 0 0 var(--space-8) var(--space-6);
  position: relative;
}

.timeline__body::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: var(--glow-green);
}

.timeline__item:last-child .timeline__body {
  padding-bottom: 0;
}

.timeline__title {
  font-size: 1.05rem;
  margin: 0 0 var(--space-1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.15rem var(--space-2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-bg-sunken);
  color: var(--color-text-muted);
}

.badge--live {
  background: var(--color-live);
  color: #fff;
}

.badge--live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.badge--accent {
  background: color-mix(in srgb, var(--color-cyan) 16%, transparent);
  color: var(--color-cyan);
}

.empty-state {
  color: var(--color-text-muted);
  padding: var(--space-8) 0;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-16);
  padding-block: var(--space-12);
  color: var(--color-text-muted);
}

.site-footer__grid {
  display: grid;
  grid-gap: var(--space-8);
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: var(--space-8);
}

.site-footer__heading {
  color: var(--color-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__links a {
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer__links a:hover {
  color: var(--color-accent);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.85rem;
}

/* Compact system-status strip in the footer (§23). */
.system-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.status-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  background: var(--color-text-muted);
  box-shadow: 0 0 0 3px transparent;
}

.status-dot--up {
  background: var(--color-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-accent) 60%, transparent);
}

.status-dot--down {
  background: var(--color-danger);
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-danger) 55%, transparent);
}

.status-dot--unknown {
  background: #f0a020;
  box-shadow: 0 0 8px rgba(240, 160, 32, 0.5);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  max-width: 560px;
  margin-inline: auto;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

.rich-text :first-child {
  margin-top: 0;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.4em;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 420px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-left: 2px solid var(--color-border);
  padding-left: var(--space-6);
}

.timeline__item {
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-6) - 5px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline__year {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* --- Notifications (Phase 6 UI) ------------------------------------------- */
.notif {
  position: relative;
  display: inline-flex;
}

.notif__toggle {
  position: relative;
}

.notif__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--color-live);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.notif__panel {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  width: min(340px, 90vw);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-2);
  z-index: 50;
}

.notif__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
}

.notif__link-btn {
  border: none;
  background: none;
  color: var(--color-accent-strong);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.notif__link-btn:hover {
  text-decoration: underline;
}

.notif__empty {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  padding: var(--space-4) var(--space-3);
  text-align: center;
}

.notif__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 60vh;
  overflow-y: auto;
}

.notif__item {
  border-radius: var(--radius-sm);
}

.notif__item--unread {
  background: var(--color-bg-sunken);
}

.notif__item-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  color: var(--color-text);
}

.notif__item-main:hover {
  background: var(--color-bg-sunken);
  border-radius: var(--radius-sm);
}

.notif__type {
  font-size: 0.85rem;
  font-weight: 600;
}

.notif__time {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.notif__viewall {
  display: block;
  text-align: center;
  padding: var(--space-2);
  margin-top: var(--space-1);
  border-top: 1px solid var(--color-border);
  color: var(--color-accent-strong);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.notif__viewall:hover {
  text-decoration: underline;
}

/* Full inbox page */
.notif-inbox {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.notif-inbox__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
}

.notif-inbox__item--unread {
  border-left: 3px solid var(--color-accent);
}

.notif-inbox__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* --- Demos (Phase 9 UI) --------------------------------------------------- */
.demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.demo-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-sunken);
}

.demo-list__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.demo-list__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* --- Judge / Protests (Phase 7 UI) ---------------------------------------- */
.field {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: 0.9rem;
  font-family: inherit;
}

.field:focus {
  outline: none;
  border-color: var(--color-accent);
}

.stack-row {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
}

.subhead {
  font-size: 0.9rem;
  margin: var(--space-4) 0 var(--space-2);
  color: var(--color-text-muted);
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.plain-list--tight {
  gap: var(--space-1);
  margin: var(--space-2) 0;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.protest-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.protest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.protest-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: var(--color-bg-sunken);
}

.protest-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.protest-card__decision {
  margin: var(--space-2) 0;
  font-size: 0.9rem;
}

.protest-card__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin: var(--space-2) 0;
}

.protest-card__sub {
  margin-top: var(--space-2);
}

/* Public spectator (watch) page — §17.2 */
.watch-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: var(--space-4);
  gap: var(--space-4);
}

.watch-team {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.watch-team:last-child {
  flex-direction: row-reverse;
  text-align: right;
}

.watch-team__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.watch-team__name {
  font-size: 1.4rem;
  font-weight: 700;
}

.watch-score {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.watch-score__num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.watch-score__num--win {
  color: var(--color-accent);
}

.watch-score__sep {
  font-size: 2rem;
  opacity: 0.4;
}

.watch-stream {
  margin-bottom: var(--space-5);
}

.watch-stream iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
}

/* Admin ops dashboard — §25.1 */
.ops-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.ops-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 96px;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-sunken);
}

.ops-metric__value {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.ops-metric__value--danger {
  color: var(--color-danger);
}

.ops-metric__label {
  margin-top: var(--space-1);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* OBS browser-source overlay — §18.2. Self-contained (fixed colours, no theme
   tokens) so it renders identically regardless of the site theme, and anchored
   bottom-centre where a scorebar usually sits over a CS2 feed. */
.overlay-root {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans, system-ui, sans-serif);
  color: #fff;
  pointer-events: none;
}

.overlay-scorebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: 24px;
  gap: 24px;
  min-width: 620px;
  padding: 14px 28px;
  background: rgba(9, 14, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.overlay-team {
  display: flex;
  align-items: center;
  gap: 12px;
}

.overlay-team--left {
  justify-content: flex-end;
}

.overlay-team--right {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.overlay-team__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.overlay-team__name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.overlay-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.overlay-scores {
  display: flex;
  align-items: center;
  gap: 10px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.overlay-score {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  min-width: 48px;
  text-align: center;
}

.overlay-score__sep {
  font-size: 1.6rem;
  opacity: 0.35;
}

.overlay-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.overlay-tag {
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
}

.overlay-tag--live {
  background: #e02f2f;
}

.overlay-tag--pause {
  background: #d99a1b;
}

.overlay-tournament {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.overlay-sponsors {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 16px;
  background: rgba(9, 14, 20, 0.75);
  border-radius: 8px;
}

.overlay-sponsors__logo {
  height: 26px;
  object-fit: contain;
}

/* Sponsor strip on the public spectator page — §18.2 */
.watch-sponsors {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) 0;
}

.watch-sponsors__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.watch-sponsors__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
}

.watch-sponsors__logo {
  height: 40px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}

.watch-sponsors__logo:hover {
  filter: none;
  opacity: 1;
}

/* --- Compact header: dropdowns, user menu, ghost controls --- */
.icon-btn--ghost {
  border-color: transparent;
  background: transparent;
  color: var(--color-text-muted);
  padding: var(--space-2);
}

.icon-btn--ghost:hover {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 6%, transparent);
  border-color: transparent;
}

.nav-more {
  position: relative;
  display: none;
}

@media (min-width: 900px) {
  .nav-more {
    display: inline-flex;
  }
}

.header-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 210px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-2);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform-origin: top right;
  animation: menu-pop 0.16s ease;
}

@keyframes menu-pop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animated hamburger that morphs into an X — triggers the header "more" menu. */
.burger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.burger-btn:hover,
.burger-btn.is-open {
  border-color: var(--color-accent);
}

.burger-box {
  position: relative;
  width: 18px;
  height: 14px;
}

.burger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

.burger-bar:nth-child(1) {
  top: 0;
}
.burger-bar:nth-child(2) {
  top: 6px;
}
.burger-bar:nth-child(3) {
  top: 12px;
}

.burger-btn.is-open .burger-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.burger-btn.is-open .burger-bar:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open .burger-bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .header-menu {
    animation: none;
  }
  .burger-bar {
    transition: none;
  }
}

.menu-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.menu-link:hover {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 6%, transparent);
}

.menu-link--accent {
  color: var(--color-cyan);
}

.menu-link--danger {
  color: var(--color-danger);
}

.menu-sep {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-1) 0;
}

.menu-label {
  padding: var(--space-1) var(--space-3);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.user-menu {
  position: relative;
}

.user-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  cursor: pointer;
  color: var(--color-text);
}

.user-menu__btn:hover {
  border-color: var(--color-border);
}

.user-menu__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.user-menu__fallback {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-accent-contrast);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
}

.user-menu__name {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .user-menu__name {
    display: inline;
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[2].use[1]!../../node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[2].use[2]!../../node_modules/next/font/google/target.css?{"path":"src/app/[locale]/layout.tsx","import":"Inter","arguments":[{"subsets":["latin"],"weight":["400","500","600","700","800","900"],"variable":"--font-inter","display":"swap"}],"variableName":"inter"} ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Inter Fallback';src: local("Arial");ascent-override: 90.44%;descent-override: 22.52%;line-gap-override: 0.00%;size-adjust: 107.12%
}.__className_d0be19 {font-family: 'Inter', 'Inter Fallback';font-style: normal
}.__variable_d0be19 {--font-inter: 'Inter', 'Inter Fallback'
}

