:root {
  --cc-bg: #050913;
  --cc-panel: rgba(11, 20, 37, .94);
  --cc-panel2: rgba(15, 29, 53, .92);
  --cc-line: rgba(255,255,255,.10);
  --cc-text: #f7f9ff;
  --cc-muted: rgba(247,249,255,.70);
  --cc-muted2: rgba(247,249,255,.84);
  --cc-red: #ef2334;
  --cc-red2: #ff4056;
  --cc-blue: #8fb8ff;
  --cc-gold: #ffd78c;
  --cc-green: #2bd17e;
  --cc-shadow: 0 24px 70px rgba(0,0,0,.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(239,35,52,.16), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(58,126,214,.14), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #050913 58%, #04070f 100%);
  color: var(--cc-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

.cc-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(5, 11, 22, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cc-header,
.cc-header * {
  box-sizing: border-box;
}

.cc-header__wrap {
  width: min(1360px, 100%);
  max-width: 100vw;
  margin: 0 auto;
  padding: 11px clamp(12px, 3vw, 26px);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cc-header__brand {
  flex: 0 0 auto;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  font-weight: 950;
  font-size: 15px;
  line-height: 1;
}

.cc-header__logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 11px;
  padding: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.cc-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0 4px;
}

.cc-header__nav::-webkit-scrollbar {
  display: none;
}

.cc-header__nav a {
  flex: 0 0 auto;
  min-width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.cc-header__nav a.is-active,
.cc-header__nav a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--cc-red), var(--cc-red2));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 24px rgba(239,35,52,.34);
}

.cc-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 30px) clamp(10px, 3vw, 26px) 92px;
}

.cc-loading,
.cc-empty {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--cc-line);
  color: var(--cc-muted2);
  font-weight: 850;
}

.cc-page {
  display: grid;
  gap: 18px;
}

.cc-hero {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--cc-line);
  background:
    linear-gradient(90deg, rgba(5,9,18,.97), rgba(5,9,18,.60)),
    radial-gradient(circle at 18% 16%, rgba(239,35,52,.24), transparent 34%),
    radial-gradient(circle at 94% 0%, rgba(143,184,255,.16), transparent 40%),
    url('/hockey/assets/img/brand/media-train.jpg') center / cover no-repeat;
  box-shadow: var(--cc-shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
}

.cc-hero__main {
  padding: clamp(24px, 4.6vw, 52px);
}

.cc-kicker {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cc-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cc-red);
  box-shadow: 0 0 18px rgba(239,35,52,.88);
}

.cc-hero h1 {
  margin: 20px 0 14px;
  max-width: 860px;
  font-size: clamp(38px, 7vw, 82px);
  line-height: .90;
  letter-spacing: -.065em;
}

.cc-hero p {
  margin: 0;
  max-width: 820px;
  color: var(--cc-muted2);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 650;
  line-height: 1.55;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cc-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.cc-button.is-red {
  background: linear-gradient(135deg, var(--cc-red), var(--cc-red2));
  box-shadow: 0 14px 30px rgba(239,35,52,.28);
}

.cc-hero__side {
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--cc-line);
  display: grid;
  gap: 14px;
  align-content: center;
}

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

.cc-stat {
  min-height: 110px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.055);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cc-stat span {
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 850;
}

.cc-stat strong {
  font-size: 36px;
  line-height: .95;
  letter-spacing: -.04em;
}

.cc-toolbar {
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--cc-line);
  display: grid;
  gap: 12px;
}

.cc-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cc-filter {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
  cursor: pointer;
}

.cc-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--cc-red), var(--cc-red2));
}

.cc-search {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.065);
  color: #fff;
  outline: none;
  font-weight: 850;
}

.cc-search::placeholder {
  color: rgba(255,255,255,.46);
}

.cc-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.cc-section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.05em;
}

.cc-section-title span {
  color: var(--cc-muted);
  font-weight: 850;
}

.cc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cc-card {
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(143,184,255,.10), transparent 36%),
    linear-gradient(180deg, rgba(13,24,44,.96), rgba(7,13,26,.98));
  border: 1px solid var(--cc-line);
  box-shadow: var(--cc-shadow);
  display: grid;
}

.cc-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 20%, rgba(143,184,255,.16), transparent 42%),
    linear-gradient(180deg, rgba(15,29,53,.86), rgba(5,9,18,.98));
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.cc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cc-card__photo.is-logo img {
  object-fit: contain;
  padding: 70px;
  opacity: .72;
}

.cc-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239,35,52,.92), rgba(255,64,86,.84));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 10px 26px rgba(239,35,52,.24);
}

.cc-card__body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.cc-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.cc-card p {
  margin: 0;
  color: var(--cc-muted2);
  line-height: 1.5;
  font-weight: 650;
}

.cc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-chip {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
}

.cc-chip.is-gold {
  color: #15100a;
  background: linear-gradient(135deg, #ffe1a3, #ffc85e);
}

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

.cc-info {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.cc-info small {
  display: block;
  color: var(--cc-muted);
  font-weight: 850;
  margin-bottom: 6px;
}

.cc-info strong {
  display: block;
  font-size: 18px;
}

.cc-panel {
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(143,184,255,.09), transparent 36%),
    linear-gradient(180deg, rgba(13,24,44,.96), rgba(7,13,26,.98));
  border: 1px solid var(--cc-line);
  box-shadow: var(--cc-shadow);
  overflow: hidden;
}

.cc-panel__body {
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  gap: 14px;
}

.cc-news-list {
  display: grid;
  gap: 12px;
}

.cc-news-item {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  display: grid;
  gap: 7px;
}

.cc-news-item small {
  color: var(--cc-muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cc-news-item strong {
  font-size: 17px;
  line-height: 1.18;
}

@media (max-width: 1120px) {
  .cc-hero {
    grid-template-columns: 1fr;
  }

  .cc-hero__side {
    border-left: 0;
    border-top: 1px solid var(--cc-line);
  }

  .cc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cc-header__wrap {
    padding: 10px 10px 8px;
    gap: 9px;
  }

  .cc-header__brand {
    font-size: 13px;
  }

  .cc-header__logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .cc-header__nav {
    gap: 8px;
  }

  .cc-header__nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .cc-hero {
    border-radius: 28px;
  }

  .cc-hero__main,
  .cc-hero__side {
    padding: 20px;
  }

  .cc-stat-grid,
  .cc-grid,
  .cc-info-grid {
    grid-template-columns: 1fr;
  }

  .cc-card__photo {
    min-height: 360px;
  }
}
