:root {
  --bg: #06030d;
  --card: rgba(14, 8, 28, 0.62);
  --card-solid: #120b22;
  --card-hover: rgba(24, 13, 48, 0.78);
  --border: rgba(168, 85, 247, 0.18);
  --border-bright: rgba(168, 85, 247, 0.45);
  --text: #f4f0ff;
  --muted: #9b8db8;
  --accent: #a855f7;
  --accent-dark: #7c3aed;
  --gradient: linear-gradient(135deg, #7c3aed, #c026d3);
  --glow: rgba(168, 85, 247, 0.45);
  --green: #4ade80;
  --red: #f87171;
  --blue: #60a5fa;
  --radius: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 25%, rgba(139, 92, 246, 0.22), transparent 65%),
    radial-gradient(ellipse 55% 50% at 80% 65%, rgba(168, 85, 247, 0.16), transparent 65%),
    radial-gradient(ellipse 45% 40% at 55% 90%, rgba(109, 40, 217, 0.2), transparent 65%),
    radial-gradient(ellipse 40% 35% at 12% 85%, rgba(124, 58, 237, 0.18), transparent 65%);
  background-size: 250% 250%, 250% 250%, 220% 220%, 220% 220%;
  background-repeat: no-repeat;
  animation: bgShift 20s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(168, 85, 247, 0.08) 2px,
    rgba(168, 85, 247, 0.08) 3px
  );
}

@keyframes bgShift {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%, 100% 100%; }
  33% { background-position: 50% 50%, 30% 20%, 0% 100%, 50% 0%; }
  66% { background-position: 100% 80%, 0% 40%, 100% 0%, 0% 50%; }
  100% { background-position: 40% 100%, 70% 60%, 40% 60%, 80% 20%; }
}

::selection {
  background: rgba(168, 85, 247, 0.45);
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes textShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.65), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--outline {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-bright);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.08);
}

.btn--outline:hover {
  background: rgba(168, 85, 247, 0.18);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.25), inset 0 0 16px rgba(168, 85, 247, 0.12);
}

.btn--danger {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: var(--red);
  box-shadow: inset 0 0 12px rgba(248, 113, 113, 0.08);
}

.btn--danger:hover {
  background: rgba(248, 113, 113, 0.22);
  box-shadow: 0 0 24px rgba(248, 113, 113, 0.25);
}

.btn--block { width: 100%; }
.btn--small { padding: 8px 18px; font-size: 13.5px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 3, 13, 0.75);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--gradient);
  color: #fff;
  animation: logoFloat 3.4s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.55);
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.55);
  }
  50% {
    transform: translateY(-6px) rotate(4deg);
    box-shadow: 0 0 38px rgba(168, 85, 247, 0.9);
  }
}

.logo__text {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #ffffff 0%, #d8b4fe 20%, #a855f7 40%, #c026d3 60%, #d8b4fe 80%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 3.5s linear infinite;
}

.logo__text .text-gradient {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
  padding: 4px;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border);
}

.nav__link {
  padding: 9px 20px;
  border-radius: 100px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: 0.25s;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.view {
  display: none;
  padding: 56px 0 100px;
}

.view.active {
  display: block;
  animation: viewIn 0.45s ease;
}

@keyframes viewIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-head {
  margin-bottom: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease var(--d, 0s), transform 0.6s ease var(--d, 0s);
}

.reveal-item.in {
  opacity: 1;
  transform: translateY(0);
}

.page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page__title {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 20px rgba(168, 85, 247, 0.25);
}

.page__subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px;
}

.page > .container > .page__subtitle {
  margin-bottom: 30px;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.season-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, box-shadow 0.35s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.season-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--border-bright);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.35), 0 0 30px rgba(168, 85, 247, 0.18), inset 0 1px 0 rgba(255,255,255,0.1);
}

.season-card__image {
  position: absolute;
  inset: 0;
}

.season-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.season-card:hover .season-card__image img {
  transform: scale(1.08);
}

.season-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 3, 13, 0.15) 0%, rgba(6, 3, 13, 0.65) 60%, rgba(6, 3, 13, 0.95) 100%);
}

.season-card__title {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.season-card__subtitle {
  color: var(--muted);
  font-size: 14.5px;
}

.season-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--gradient);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.55);
}

.season-card__order {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.55);
}

.season-card__body {
  position: relative;
  padding: 22px;
  width: 100%;
}

.season-card__body--with-order {
  padding-left: 80px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.table th {
  text-align: left;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: rgba(168, 85, 247, 0.05);
}

.table td {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr {
  transition: background 0.2s;
}

.table tr:hover td {
  background: rgba(168, 85, 247, 0.08);
}

.muted { color: var(--muted); }

.member {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.member__avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.35);
}

.member__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.role {
  padding: 5px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.04);
}

.role--player {
  background: rgba(143, 132, 173, 0.16);
  color: var(--muted);
}

.role--moderator {
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.15), inset 0 0 8px rgba(255,255,255,0.04);
}

.role--admin {
  background: rgba(248, 113, 113, 0.18);
  color: var(--red);
  box-shadow: 0 0 14px rgba(248, 113, 113, 0.15), inset 0 0 8px rgba(255,255,255,0.04);
}

.role--helper {
  background: rgba(96, 165, 250, 0.18);
  color: var(--blue);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.15), inset 0 0 8px rgba(255,255,255,0.04);
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--muted);
  min-width: 280px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search:focus-within {
  border-color: var(--border-bright);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.18);
}

.search input {
  flex: 1;
  padding: 13px 0;
  border: none;
  background: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  outline: none;
}

.search input::placeholder {
  color: #6b6080;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}

.pagination__btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.06);
  color: var(--muted);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.pagination__btn:hover:not(:disabled) {
  border-color: var(--border-bright);
  color: var(--text);
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.15);
}

.pagination__btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.45);
}

.pagination__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.pagination__dots {
  color: var(--muted);
  padding: 0 4px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  text-decoration: none;
  color: var(--text);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.link-card:hover {
  border-color: var(--border-bright);
  background: var(--card-hover);
  transform: translateX(10px) scale(1.01);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.3), 0 0 24px rgba(168, 85, 247, 0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}

.link-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 15px;
  background: rgba(168, 85, 247, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.2);
}

.link-card__info {
  flex: 1;
  min-width: 0;
}

.link-card__name {
  font-size: 17px;
  font-weight: 800;
}

.link-card__desc {
  color: var(--muted);
  font-size: 14px;
}

.link-card__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: 0.25s;
}

.link-card:hover .link-card__arrow {
  color: var(--accent);
  transform: translateX(6px);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  display: flex;
  gap: 22px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.news-card:hover {
  border-color: var(--border-bright);
  background: var(--card-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.28), 0 0 24px rgba(168, 85, 247, 0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.news-card__image {
  width: 200px;
  height: 136px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.08);
}

.news-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.news-card__text {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

.news-card__date {
  color: #6b6080;
  font-size: 12.5px;
  margin-top: 10px;
}

.empty {
  text-align: center;
  padding: 52px 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.gear-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gear-btn:hover {
  opacity: 1;
  color: var(--accent);
  border-color: var(--border-bright);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.35);
}

.input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 4, 15, 0.55);
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.input:focus {
  border-color: var(--accent);
  background: rgba(8, 4, 15, 0.75);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15), 0 0 22px rgba(168, 85, 247, 0.15);
}

.input::placeholder {
  color: #5c5470;
}

textarea.input {
  resize: vertical;
  min-height: 90px;
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238f84ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

select.input option {
  background: var(--card-solid);
}

input[type="date"].input,
input[type="number"].input {
  color-scheme: dark;
}

.bg-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-stars__star {
  position: absolute;
  color: #a855f7;
  opacity: 0.12;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
  animation: starFloat linear infinite;
}

.bg-stars__star--1 { top: 10%; left: 7%; width: 30px; height: 30px; animation-duration: 10s; }
.bg-stars__star--2 { top: 20%; right: 11%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: -3s; }
.bg-stars__star--3 { top: 70%; left: 13%; width: 18px; height: 18px; animation-duration: 13s; animation-delay: -6s; }
.bg-stars__star--4 { top: 82%; right: 8%; width: 26px; height: 26px; animation-duration: 11s; animation-delay: -2s; }
.bg-stars__star--5 { top: 45%; left: 90%; width: 14px; height: 14px; animation-duration: 14s; animation-delay: -8s; }
.bg-stars__star--6 { top: 4%; right: 38%; width: 16px; height: 16px; animation-duration: 15s; animation-delay: -5s; }

@keyframes starFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(14px, -18px) rotate(12deg); }
  50% { transform: translate(-10px, -36px) rotate(24deg); }
  75% { transform: translate(-24px, -14px) rotate(12deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(18, 11, 34, 0.98) 0%, rgba(6, 3, 13, 1) 70%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.loader__star {
  position: relative;
  width: 72px;
  height: 72px;
  animation: loaderSpin 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.95));
  z-index: 2;
}

.loader__star::before {
  content: '';
  position: absolute;
  inset: -22px;
  border: 2px dashed rgba(168, 85, 247, 0.35);
  border-radius: 50%;
  animation: loaderRing 9s linear infinite;
}

.loader__star::after {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 50%;
  animation: loaderPulse 2.2s ease-in-out infinite;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg) scale(0.85); opacity: 0.6; }
  50% { transform: rotate(180deg) scale(1); opacity: 1; }
  100% { transform: rotate(360deg) scale(0.85); opacity: 0.6; }
}

@keyframes loaderRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.25; }
  50% { transform: scale(1.15); opacity: 0.55; }
}

.loader__title {
  margin-top: 22px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff 0%, #d8b4fe 20%, #a855f7 40%, #c026d3 60%, #d8b4fe 80%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 3s linear infinite;
}

.loader__title em {
  font-style: normal;
}

body.loading {
  overflow: hidden;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header__inner {
    height: 62px;
  }

  .nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 6px;
    background: rgba(6, 3, 13, 0.98);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 24px 20px;
    display: none;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav__link { text-align: center; padding: 12px; }
  .burger { display: flex; }

  .view {
    padding: 36px 0 70px;
  }

  .page__head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .search {
    width: 100%;
    min-width: 0;
  }

  .news-card { flex-direction: column; }
  .news-card__image { width: 100%; height: 170px; }

  .gear-btn {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .pagination__btn {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .seasons-grid {
    grid-template-columns: 1fr;
  }

  .season-card {
    min-height: 300px;
  }

  .logo__text {
    font-size: 18px;
  }

  .table th,
  .table td {
    padding: 12px 14px;
  }

  .member {
    font-size: 14px;
  }

  .link-card {
    padding: 18px 20px;
    gap: 14px;
  }

  .link-card__icon {
    width: 44px;
    height: 44px;
  }

  .page__title {
    font-size: 28px;
  }

  .news-card__image {
    height: 140px;
  }

  .loader__star {
    width: 56px;
    height: 56px;
  }
  .loader__star::before {
    inset: -18px;
  }
  .loader__star::after {
    inset: -32px;
  }
  .loader__title {
    font-size: 20px;
  }
}