/* ============================================================
   GLOBÁLNÍ POZADÍ (Z MAIN PAGE)
   ============================================================ */
html, body {
  overflow-x: hidden;
}

body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                    url('image (1).png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  margin: 0;
  font-family: 'Rubik', sans-serif;
}

/* ============================================================
   REZERVA PRO XP BAR & AKTIVNÍ NAVBAR
   ============================================================ */
.xp-bar-placeholder {
  width: 100%;
  height: 25px;
  background: transparent;
  position: relative;
  z-index: 999;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050 !important;
}

.navbar__link.active {
  color: var(--c-accent);
}
.navbar__link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--c-accent);
}

/* ============================================================
   HERO SEKCE ČLENI
   ============================================================ */
.cleni-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 30px;
  text-align: center;
  position: relative;
}

.cleni-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(120deg, #fff 30%, var(--c-accent-h) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cleni-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ============================================================
   ČLENI SEKCE
   ============================================================ */
.cleni-section {
  padding: 20px 0 90px;
}

/* ------ Sekce (Admin tým / Hráči) ------ */
.cleni-block {
  margin-bottom: 64px;
}
.cleni-block:last-child {
  margin-bottom: 0;
}

.cleni-block__title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(120deg, #fff 30%, var(--c-accent-h) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dekorativní linka pod nadpisem sekce */
.cleni-block__line {
  width: 80px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

/* Popisek sekce (pod nadpisem) */
.cleni-block__subtitle {
  max-width: 640px;
  margin: 0 auto 14px;
  text-align: center;
  color: var(--c-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
}

/* Kurzívová poznámka pod popiskem sekce */
.cleni-block__note {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--c-text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cleni-block__empty {
  text-align: center;
  color: var(--c-text-dim);
  font-style: italic;
}

/* ------ Mřížka karet (max 4 v řadě, centrované) ------ */
.cleni-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Varianta pro Admin tým: max 3 karty v řadě (3×2 u 6 karet).
   3×270 + 2×24 = 858 px → omezíme šířku, aby se víc než 3 nevešly. */
.cleni-grid--3col {
  max-width: 858px;
}

.cleni-card {
  flex: 0 1 270px;
  max-width: 280px;
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.cleni-card:focus-visible {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px var(--c-accent-glow);
}

.cleni-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px var(--c-accent-glow);
}

/* ------ Skin hráče ------ */
.cleni-card__skin {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.cleni-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Role badge styly jsou ve sdíleném players.css. */

/* ------ Popis ------ */
.cleni-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  height: 2.9em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

/* ------ Citace / quote box ------ */
.cleni-card__quote {
  width: 100%;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-text-dim);
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--c-accent);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: left;
}
.cleni-card__quote i {
  margin-right: 6px;
  color: var(--c-accent);
  font-style: normal;
  opacity: 0.7;
}

/* ============================================================
   ČASOMÍRA SEASON 6
   ============================================================ */
.season-timer {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--c-text);
  background: rgba(0, 94, 255, 0.1);
  border: 1px solid rgba(0, 94, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 94, 255, 0.18);
  letter-spacing: 0.01em;
}

/* Popup hráče + role badge styly jsou ve sdíleném players.css. */

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media (max-width: 600px) {
  .cleni-card {
    flex: 0 1 100%;
    max-width: 340px;
  }
}
