:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --line: #e7edf5;
  --primary-soft: #eaf2ff;
}
body {
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  min-height: 100vh;
}
.card-soft {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.hero-panel {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(31, 74, 141, 0.08);
}
.btn, .form-control, .form-select, .form-control[type="file"] {
  border-radius: 14px;
}
.btn-primary {
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.18);
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-box {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  height: 100%;
}
.metric-label {
  color: #6c757d;
  margin-bottom: 4px;
}
.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
}
.leaderboard-list .list-group-item {
  border-radius: 16px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}
.table > :not(caption) > * > * {
  padding: 0.9rem;
}
.tournament-banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
}
.schedule-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.96);
}
.score-pill {
  min-width: 64px;
  text-align: center;
  font-weight: 800;
  border-radius: 999px;
  background: #eef5ff;
  padding: 8px 12px;
}
.tournament-side-sticky {
  position: sticky;
  top: 92px;
}
@media (max-width: 991px) {
  .tournament-side-sticky {
    position: static;
  }
}
/* Стил за логото */
.logo-img {
    height: 40px; /* Регулирай височината според хедъра си */
    width: auto;
    transition: transform 0.3s ease; /* Анимация при посочване */
}

/* Ефект при посочване (hover) */
.navbar-brand:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

/* Стил за текста */
.brand-text {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase; /* По желание за по-спортен вид */
}

/* Тънък детайл за Flow частта */
.brand-text span {
    font-weight: 400; /* Прави "Flow" по-тънко за визуален контраст */
}