﻿:root {
  --forest-dark: #08100c;
  --forest-mid: #0f2619;
  --forest-green: #0ad35e;
  --forest-lime: #3cff90;
  --earth: #1b120e;
  --text: #e6f5e9;
  --muted: #9eb6a7;
  --card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --glow: 0 0 0 1px rgba(10, 211, 94, 0.4), 0 10px 40px rgba(10, 211, 94, 0.25);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 24%, rgba(60, 255, 144, 0.08), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(10, 211, 94, 0.12), transparent 28%),
    linear-gradient(140deg, var(--forest-dark), #03150d 60%, var(--earth));
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(120deg, var(--forest-green), var(--forest-lime));
  box-shadow: 0 0 20px rgba(60, 255, 144, 0.8);
  z-index: 20;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(4, 14, 9, 0.8);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(10, 211, 94, 0.35));
}

.brand-text { line-height: 1.1; }
.brand-text .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-lime);
}

.brand-text strong {
  font-family: 'Bebas Neue', 'Space Grotesk', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
}

nav { display: flex; gap: 14px; flex: 1; }
nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms, background 180ms, transform 180ms;
}
nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.cta-group { display: flex; gap: 10px; align-items: center; }
.btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 11px 15px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms, box-shadow 180ms, background 180ms, border 180ms;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--forest-green), var(--forest-lime));
  color: #041009;
  border: 1px solid rgba(60, 255, 144, 0.8);
  box-shadow: var(--glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(60, 255, 144, 0.6);
  color: var(--forest-lime);
}

.hero {
  padding: 64px 28px 36px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 60%, rgba(10, 211, 94, 0.14), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(60, 255, 144, 0.14), transparent 30%);
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: rgba(60, 255, 144, 0.12);
  border: 1px solid rgba(60, 255, 144, 0.3);
  color: var(--forest-lime);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: glow-pulse 2.6s ease-in-out infinite;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.05;
  font-family: 'Bebas Neue', 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
}

p.lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 10px; }

.chip-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest-lime);
  box-shadow: 0 0 12px rgba(60, 255, 144, 0.9);
}

.hero-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
}

.metric {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(60, 255, 144, 0.12);
  border: 1px solid rgba(60, 255, 144, 0.35);
  color: var(--forest-lime);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.badge-soft {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 8px;
}
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(120deg, var(--forest-green), var(--forest-lime));
  width: 50%;
  border-radius: 999px;
}

.logo-shell {
  background: linear-gradient(160deg, rgba(10, 211, 94, 0.08), rgba(4, 12, 8, 0.5));
  border: 1px solid rgba(60, 255, 144, 0.35);
  border-radius: 22px;
  padding: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-shell img { max-height: 200px; }

.section { padding: 44px 28px; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section-header h2,
.section-header h3 {
  margin: 0;
  letter-spacing: 0.01em;
}
.section-header p { margin: 4px 0 0; color: var(--muted); }

.tabs {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.tab-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms, color 180ms, transform 180ms;
}
.tab-btn:hover { color: var(--text); transform: translateY(-2px); }
.tab-btn.is-active {
  background: linear-gradient(120deg, rgba(10, 211, 94, 0.12), rgba(60, 255, 144, 0.18));
  color: var(--forest-lime);
  box-shadow: var(--glow);
}

.tab-panel { display: none; animation: fade-up 320ms ease forwards; }
.tab-panel.is-active { display: block; }

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

.timeline { display: grid; gap: 12px; }
.timeline-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--forest-green);
  box-shadow: var(--glow);
}

.board {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  min-height: 200px;
}

.team-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.team-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 4px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(60, 255, 144, 0.12);
  color: var(--forest-lime);
  border: 1px solid rgba(60, 255, 144, 0.3);
  font-weight: 700;
  font-size: 13px;
}

.form-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 14px;
}

.member-input {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.member-input input {
  flex: 1;
}

.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.member-pill button {
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.matchup {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.matchup h4 { margin: 0 0 6px; }
.matchup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.matchup li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-question {
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}
.faq-answer {
  padding: 0 14px 14px;
  color: var(--muted);
  display: none;
}
.faq-item.is-open .faq-answer { display: block; }

.footer {
  padding: 24px 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 340ms ease, transform 340ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-overlay,
.register-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.auth-card {
  background: rgba(12, 26, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  width: min(420px, 92vw);
  box-shadow: var(--shadow);
}

.auth-header h2 {
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.auth-muted {
  margin: 0 0 16px;
  color: var(--muted);
}

.auth-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60, 255, 144, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(60, 255, 144, 0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  nav { display: none; }
  .topbar { justify-content: space-between; }
}

@media (max-width: 640px) {
  .hero,
  .section { padding: 32px 18px; }
  .card { padding: 14px; }
  .team-row { grid-template-columns: 1fr 1fr; }
}

.d-none { display: none !important; }

.bracket-visual {
  background: radial-gradient(circle at 10% 10%, rgba(60, 80, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(192, 201, 216, 0.1), transparent 30%),
    linear-gradient(165deg, #070d16 0%, #070f12 100%);
  border: 1px solid rgba(151, 172, 199, 0.24);
  border-radius: 20px;
  padding: 16px;
  margin-top: 16px;
  display: none;
  position: relative;
  overflow: hidden;
}

.bracket-track-labels {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.bracket-track-pill {
  min-width: 220px;
  text-align: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border: 1px solid transparent;
}

.bracket-track-pill.silver {
  color: #e4ebf3;
  background: linear-gradient(120deg, rgba(153, 166, 182, 0.22), rgba(108, 120, 138, 0.16));
  border-color: rgba(203, 218, 236, 0.4);
}

.bracket-track-pill.blue {
  color: #d4ebff;
  background: linear-gradient(120deg, rgba(70, 111, 222, 0.32), rgba(30, 67, 148, 0.25));
  border-color: rgba(111, 153, 255, 0.45);
}

.bracket-swiper {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-color: rgba(130, 154, 189, 0.55) transparent;
}

.bracket-swiper-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(275px, 1fr);
  gap: 14px;
  min-width: 1380px;
  position: relative;
}

.bracket-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.bracket-slide:not(.is-last-stage)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: linear-gradient(120deg, rgba(152, 170, 202, 0.8), rgba(115, 132, 161, 0.2));
  z-index: 3;
}

.bracket-slide-head {
  background: rgba(12, 21, 33, 0.85);
  border: 1px solid rgba(151, 172, 199, 0.2);
  border-radius: 12px;
  padding: 9px 10px;
}

.bracket-slide-head h3 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #deebff;
}

.bracket-slide-head h4 {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 500;
  color: #92a8c6;
}

.bracket-slide-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bracket-match-card {
  background: linear-gradient(170deg, rgba(13, 24, 39, 0.95), rgba(8, 15, 26, 0.95));
  border: 1px solid rgba(157, 180, 211, 0.24);
  border-radius: 16px;
  padding: 9px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 2;
}

.bracket-match-card.lane-silver {
  border-color: rgba(200, 212, 229, 0.3);
}

.bracket-match-card.lane-blue {
  border-color: rgba(111, 153, 255, 0.32);
}

.bracket-match-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.bracket-match-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
  color: #d5e7ff;
  background: rgba(55, 82, 124, 0.42);
  border: 1px solid rgba(140, 166, 210, 0.3);
}

.bracket-match-body {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(179, 198, 224, 0.12);
}

.bracket-slot {
  background: rgba(12, 20, 33, 0.96);
  border: 0;
  color: #e1eeff;
  padding: 8px 9px;
  border-radius: 0;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.01em;
  min-height: 36px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.bracket-team-row:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bracket-team-row:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.bracket-team-row:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.bracket-team-meta {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bracket-team-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bracket-slot.empty {
  color: #7d8ea7;
  font-style: italic;
}

.bracket-slot.pending {
  background: rgba(16, 28, 43, 0.92);
}

.bracket-slot.winner,
.bracket-slot.win-path {
  background: linear-gradient(120deg, rgba(120, 133, 154, 0.42), rgba(38, 56, 82, 0.95));
  color: #f5fbff;
}

.bracket-slot.loser {
  background: rgba(35, 20, 22, 0.85);
  color: #d6aab0;
}

.bracket-slot.champion {
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 110, 0.68);
  background: linear-gradient(120deg, rgba(255, 215, 110, 0.24), rgba(83, 60, 20, 0.92));
  color: #fff8e0;
}

.bracket-slot.champion::before,
.bracket-slot.champion::after {
  content: "\1F3C6";
  font-size: 16px;
  margin: 0 6px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.bracket-slot.champion::before { margin-right: 8px; }
.bracket-slot.champion::after { margin-left: 8px; }

.bracket-slot img {
  height: 18px;
  width: 18px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.bracket-slot.has-members {
  position: relative;
}

.bracket-slot.clickable {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(146, 176, 225, 0.35);
}

.bracket-slot.clickable:hover {
  box-shadow: inset 0 0 0 1px rgba(178, 203, 245, 0.7), 0 4px 14px rgba(8, 17, 29, 0.7);
  transform: translateY(-1px);
}

.bracket-logo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.06;
  gap: 18px;
}

.bracket-logo img {
  max-width: 200px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.bracket-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.bracket-links path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.36));
  animation: bracket-trail 2.2s ease-in-out infinite;
}

.bracket-links path.lane-silver {
  stroke: rgba(214, 228, 245, 0.72);
}

.bracket-links path.lane-blue {
  stroke: rgba(120, 158, 255, 0.74);
}

.bracket-links path.lane-final {
  stroke: rgba(255, 216, 124, 0.8);
}

@keyframes bracket-trail {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 0.46; }
}

#adminMatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.admin-match.card {
  background: #0d1b14;
  border: 1px solid #1f3a29;
  padding: 14px;
}

.admin-match h4 {
  margin: 0 0 8px;
}

.admin-match .field {
  margin: 8px 0 0;
}

.admin-match select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(60, 255, 144, 0.3);
  background: rgba(6, 16, 12, 0.8);
  color: #e9f8ef;
}

.member-tooltip {
  position: absolute;
  background: rgba(6, 16, 12, 0.95);
  border: 1px solid rgba(60, 255, 144, 0.3);
  color: #e9f8ef;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  line-height: 1.35;
  white-space: pre-line;
  min-width: 220px;
  max-width: 320px;
  z-index: 30;
  pointer-events: none;
  display: none;
}

@media (max-width: 1100px) {
  .bracket-track-labels {
    justify-content: flex-start;
    min-width: 860px;
  }
}

@media (max-width: 640px) {
  .bracket-swiper-track {
    min-width: 1260px;
    grid-auto-columns: minmax(248px, 1fr);
  }

  .bracket-track-labels {
    min-width: 760px;
  }

  .bracket-track-pill {
    min-width: 170px;
    font-size: 11px;
  }

  .bracket-slot {
    font-size: 11px;
    min-height: 34px;
  }

  .bracket-logo {
    display: none;
  }
}

