:root {
  --bg: #07111f;
  --bg-soft: #0d1a30;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #eef4ff;
  --muted: #a9b6d0;
  --line: rgba(255, 255, 255, 0.1);

  --accent: #ef2c7a;
  --accent-dark: #c81f63;
  --secondary: #0e336c;
  --secondary-light: #194f9f;
  --gold: #ffd166;

  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1240px;
  --header-height: 92px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(239, 44, 122, 0.18), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(25, 79, 159, 0.2), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #0b1830 35%, #07111f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: -2;
}

.bg-blur {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.bg-blur-1 {
  top: -100px;
  left: -100px;
  background: var(--accent);
}

.bg-blur-2 {
  right: -120px;
  top: 120px;
  background: #2563eb;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 8px;
  border-radius: 999px;
}

.main-nav a,
.mobile-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover,
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-switcher {
  position: relative;
}

.team-switch-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.team-switch-btn:hover,
.team-switcher.open .team-switch-btn {
  background: linear-gradient(135deg, rgba(239,44,122,0.18), rgba(25,79,159,0.22));
  border-color: rgba(255,255,255,0.18);
}

.team-switch-btn span:first-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.team-switch-btn strong {
  font-size: 0.98rem;
}

.team-switch-arrow {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.team-switcher.open .team-switch-arrow {
  transform: rotate(180deg);
}

.team-switch-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(10, 21, 39, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.team-switcher.open .team-switch-menu {
  display: flex;
}

.team-option {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.team-option:hover,
.team-option.active {
  background: linear-gradient(135deg, var(--accent), var(--secondary-light));
  color: #fff;
}

.lang-switcher,
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  font-size: 1.05rem;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent), var(--secondary-light));
  box-shadow: var(--shadow);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 10px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.burger span + span {
  margin-top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
}

.mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0 4px;
}

.mobile-lang-title {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero {
  padding-top: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.hero-content,
.hero-visual,
.table-card,
.match-card,
.news-card,
.player-card,
.coach-card,
.service-card,
.achievements-card,
.elite-coach-card {
  backdrop-filter: blur(14px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 780px;
}

.hero-text,
.section-desc,
.footer-brand p,
.footer-sponsor p,
.footer-copy p,
.footer-madeby small,
.elite-coach-card p,
.coach-card p,
.service-card p,
.service-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 26px rgba(239, 44, 122, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  width: min(100%, 560px);
  position: relative;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(239, 44, 122, 0.14), transparent 45%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(239,44,122,0.08), transparent 30%),
    linear-gradient(225deg, rgba(25,79,159,0.14), transparent 35%);
  pointer-events: none;
  z-index: 2;
}

.hero-team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  transform: scale(1.01);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  pointer-events: none;
}

.elite-coach-card {
  background: linear-gradient(135deg, rgba(239,44,122,0.12), rgba(25,79,159,0.14));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.elite-coach-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}

.elite-coach-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section-desc {
  max-width: 560px;
}

.section-team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239,44,122,0.18), rgba(25,79,159,0.22));
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  font-weight: 800;
}

.news-row,
.squad-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.news-row::-webkit-scrollbar,
.squad-scroller::-webkit-scrollbar {
  height: 10px;
}

.news-row::-webkit-scrollbar-thumb,
.squad-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent), var(--secondary-light));
  border-radius: 999px;
}

.news-row::-webkit-scrollbar-track,
.squad-scroller::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.news-card {
  min-width: 320px;
  max-width: 320px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  scroll-snap-align: start;
}

.news-card:hover,
.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(239, 44, 122, 0.38);
}

.news-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card-body {
  padding: 18px;
}

.news-card-date {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.news-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.news-card-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.achievements-card,
.table-card,
.match-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.achievements-head,
.achievement-row,
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr;
  align-items: center;
  gap: 16px;
}

.achievements-head,
.table-head {
  color: var(--muted);
  font-weight: 700;
  padding: 0 8px 12px;
  border-bottom: 1px solid var(--line);
}

.achievement-row {
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.achievement-row:last-child {
  border-bottom: none;
}

.achievement-team {
  font-weight: 800;
  color: #ffb84d;
}

.achievement-result {
  font-weight: 800;
}

.table-head,
.table-row {
  grid-template-columns: 70px minmax(0, 1fr) 120px;
}

.table-body {
  padding-top: 10px;
}

.table-row {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}

.table-club {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.club-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  padding: 3px;
}

.club-name {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.points-badge {
  justify-self: end;
  min-width: 76px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239,44,122,0.18), rgba(25,79,159,0.22));
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
}

.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.match-side,
.match-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.match-team-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.match-team-info strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.match-team-info span,
.match-meta {
  color: var(--muted);
}

.match-center {
  flex-direction: column;
  min-width: 180px;
  text-align: center;
}

.match-vs {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coaches-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coach-card,
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.coach-card {
  cursor: pointer;
  transition: var(--transition);
}

.coach-license {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
}

.coach-card h3,
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.coach-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.player-card {
  min-width: 280px;
  max-width: 280px;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.player-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.1) 0%, rgba(7,17,31,0.42) 50%, rgba(7,17,31,0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}

.player-number {
  position: absolute;
  left: 20px;
  bottom: 112px;
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
}

.player-name {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.player-position {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: 0.35s ease;
}

.player-card:hover .player-stats {
  opacity: 1;
  transform: translateY(0);
}

.player-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.player-stat small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 0.8rem;
}

.player-stat strong {
  font-size: 1rem;
}

.service-point {
  margin-top: 16px;
}

.service-point strong,
.schedule-group strong {
  display: block;
  margin-bottom: 6px;
}

.schedule-group + .schedule-group {
  margin-top: 18px;
}

.schedule-group ul {
  padding-left: 18px;
  margin-top: 8px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line a {
  font-weight: 800;
  color: var(--gold);
}

.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 30px;
}

.footer-classic {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.footer-classic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(239, 44, 122, 0.08), transparent 30%),
    radial-gradient(circle at right bottom, rgba(25, 79, 159, 0.08), transparent 30%);
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-sponsor,
.footer-madeby,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  max-width: 620px;
}

.footer-brand h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.footer-club-logo,
.footer-sponsor-logo,
.footer-verix-logo {
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.footer-club-logo {
  width: 70px;
  height: 70px;
}

.footer-sponsor-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.footer-verix-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-sponsor strong,
.footer-madeby strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.footer-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  font-weight: 700;
  transition: var(--transition);
}

.footer-link-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(239,44,122,0.18), rgba(25,79,159,0.22));
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  margin: 24px 0 20px;
  position: relative;
  z-index: 1;
}

.footer-copy p {
  font-size: 0.95rem;
}

.footer-madeby {
  text-align: left;
}

.news-modal,
.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-modal.active,
.coach-modal.active {
  display: flex;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.74);
  backdrop-filter: blur(8px);
}

.news-modal-card,
.coach-modal-card {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #101d35, #0b1527);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: modalIn 0.35s ease;
}

.news-modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.news-modal-content,
.coach-modal-content {
  padding: 26px;
}

.news-modal-date,
.coach-modal-label {
  color: var(--gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.news-modal-content h3,
.coach-modal-content h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.news-modal-content p,
.coach-modal-content p {
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-line;
}

.coach-modal-meta {
  margin-bottom: 14px;
  font-weight: 700;
}

.news-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7,17,31,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.8rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.floating {
  animation: floating 4.5s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .coaches-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 860px) {
  .lang-switcher {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-menu.open {
    display: flex;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .table-head,
  .table-row {
    grid-template-columns: 50px minmax(0, 1fr) 100px;
  }

  .achievements-head,
  .achievement-row {
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
  }

  .match-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .match-side,
  .match-center {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top,
  .footer-bottom,
  .footer-brand,
  .footer-sponsor,
  .footer-madeby,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-classic {
    padding: 22px 18px;
  }

  .footer-club-logo {
    width: 58px;
    height: 58px;
  }

  .footer-sponsor-logo {
    width: 54px;
    height: 54px;
  }

  .footer-verix-logo {
    width: 38px;
    height: 38px;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .team-switch-btn {
    padding: 0 12px;
    min-height: 40px;
    gap: 8px;
  }

  .team-switch-btn span:first-child {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .news-card,
  .player-card {
    min-width: 86vw;
    max-width: 86vw;
  }

  .news-modal-image {
    height: 220px;
  }

  .news-modal-content h3,
  .coach-modal-content h3 {
    font-size: 1.5rem;
  }

  .achievements-head,
  .achievement-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .achievement-row {
    padding: 14px 8px;
  }
}

.insta-line{
  margin-top:8px;
}

.insta-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.insta-icon{
  width:24px;
  height:24px;
  object-fit:contain;
}

.insta-link{
  font-weight:800;
  color:#ff4d94;
  transition:.3s;
}

.insta-link:hover{
  color:#ffffff;
  transform:translateX(3px);
}

@media (max-width: 1080px) {
  .hero-photo-wrap {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .hero-photo-frame {
    border-radius: 22px;
  }

  .hero-photo-frame::after {
    border-radius: 22px;
  }

  .hero-team-photo {
    aspect-ratio: 4 / 3;
  }
}

.coach-card {
  padding: 0;
  overflow: hidden;
}

.coach-photo-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.coach-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.coach-card:hover .coach-photo {
  transform: scale(1.06);
}

.coach-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7,17,31,0.75) 100%),
    linear-gradient(135deg, rgba(239,44,122,0.12), transparent 40%);
  pointer-events: none;
}

.coach-card-body {
  padding: 22px;
}

@media (max-width: 560px) {
  .coach-photo-wrap {
    height: 220px;
  }
}

.training-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239,44,122,0.1), rgba(25,79,159,0.12));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.training-video-frame {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
  background: #000;
}

.training-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .training-video-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .training-video-frame {
    justify-self: center;
    max-width: 420px;
  }
}
