/* začetek ros26 (stran selekcije: header, igralci, strokovni štab, KZS pasica, izbirnik) css kode */
.ros26-wrap {
  --ros26-navy: #060f2b;
  --ros26-crimson: #c81249;
  --ros26-white: #ffffff;
  --ros26-space-sm: 10px;
  --ros26-space-base: 70px;
  --ros26-space-lg: 110px;
  background: var(--ros26-navy) !important;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  padding: var(--ros26-space-base) 20px;
  box-sizing: border-box;
}
.ros26-wrap * { box-sizing: border-box; }

/* --- Header + selection dropdown --- */
.ros26-header {
  max-width: 1300px;
  margin: 0 auto calc(var(--ros26-space-base) * 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 24px;
}
.ros26-header-text { max-width: 700px; }
.ros26-eyebrow {
  color: var(--ros26-crimson) !important;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.ros26-title {
  color: var(--ros26-white) !important;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.ros26-sub {
  color: rgba(255,255,255,0.6) !important;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.ros26-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}
.ros26-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px !important;
}
.ros26-select-label {
  display: block !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 2px !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}
.ros26-select-box {
  position: relative;
}
.ros26-select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--ros26-crimson);
  transform: translateY(-50%);
  pointer-events: none;
}
.ros26-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #0b1638 !important;
  color: var(--ros26-white) !important;
  border: 1px solid rgba(200,18,73,0.4);
  border-radius: 10px;
  padding: 12px 38px 12px 16px !important;
  margin: 0 !important;
  font-size: 15px;
  font-weight: 700;
  min-width: 200px;
  cursor: pointer;
  display: block;
  line-height: 1.3 !important;
}
.ros26-select:hover { border-color: var(--ros26-crimson); }
.ros26-select--season {
  min-width: 140px;
}

/* --- Player grid --- */
.ros26-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.ros26-card {
  background: #0b1638 !important;
  border: 1px solid rgba(200,18,73,0.25);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.ros26-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #050c22;
}
.ros26-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ros26-photo-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  letter-spacing: 0.5px;
}
.ros26-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(6,15,43,0.95) 10%, rgba(6,15,43,0) 100%);
}
.ros26-info { padding: 14px 16px 18px; }
.ros26-name {
  color: var(--ros26-white) !important;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}
.ros26-surname { color: var(--ros26-crimson) !important; }
.ros26-position {
  color: rgba(255,255,255,0.55) !important;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0 0;
}

/* --- Section heading (used above players / coach staff) --- */
.ros26-section-heading {
  max-width: 1300px;
  width: 100%;
  margin: var(--ros26-space-lg) auto calc(var(--ros26-space-base) * 0.5);
  padding-top: var(--ros26-space-lg);
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
}
.ros26-section-heading--first {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 28px;
}
.ros26-section-title {
  color: var(--ros26-white) !important;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.5px;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* --- Coach / staff grid (left-aligned, same rhythm as players) --- */
.ros26-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 28px;
  max-width: 1300px;
  margin: 24px auto 0;
  justify-content: start;
}
.ros26-staff-card {
  background: #0b1638 !important;
  border: 1px solid rgba(200,18,73,0.25);
  border-radius: 18px;
  overflow: hidden;
}
.ros26-staff-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050c22;
}
.ros26-staff-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ros26-staff-info { padding: 14px 16px 18px; text-align: left; }
.ros26-staff-name {
  color: var(--ros26-white) !important;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.ros26-staff-surname { color: var(--ros26-crimson) !important; }
.ros26-staff-role {
  color: rgba(255,255,255,0.55) !important;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0 0;
}

/* --- KZS banner --- */
.ros26-kzs-banner {
  max-width: 1300px;
  margin: var(--ros26-space-lg) auto 0;
  background: linear-gradient(120deg, #0b1638 0%, #16234f 100%) !important;
  border: 1px solid rgba(200,18,73,0.3);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ros26-kzs-text { max-width: 640px; }
.ros26-kzs-title {
  color: var(--ros26-white) !important;
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.ros26-kzs-desc {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.ros26-kzs-btn {
  background: var(--ros26-crimson) !important;
  color: var(--ros26-white) !important;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.ros26-kzs-btn:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .ros26-header { flex-direction: column; align-items: flex-start; }
  .ros26-controls { width: 100%; }
  .ros26-kzs-banner { flex-direction: column; align-items: flex-start; }
}
/* konec ros26 (stran selekcije: header, igralci, strokovni štab, KZS pasica, izbirnik) css kode */
