/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B2F6E;
  --navy2:   #152558;
  --navy3:   #0f1c42;
  --navy-light: #223a8a;
  --red:     #CC1F26;
  --red2:    #e02229;
  --white:   #ffffff;
  --off-white: #f4f6fa;
  --light:   #e8ecf5;
  --muted:   #8090b8;
  --border:  #d0d8ee;
  --card:    #ffffff;
  --text:    #1a2540;
  --text2:   #4a5878;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(27,47,110,0.12);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.dark-section { background: var(--navy3); }
.dark-section h2, .dark-section h3, .dark-section p { color: var(--white); }
.dark-section .muted { color: var(--muted); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
}
.dark-section .section-header h2 { color: var(--white); }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.center-btn { text-align: center; margin-top: 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red2); border-color: var(--red2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,31,38,0.35); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(27,47,110,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand img.logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links li { position: relative; }

.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a:hover { color: var(--navy); }

.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 0.45rem 1.3rem !important;
  margin-left: 0.5rem;
}
.btn-nav:hover { background: var(--red2) !important; color: var(--white) !important; }

.has-dropdown:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 170px;
  padding: 0.4rem 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.dropdown li a {
  padding: 0.55rem 1.1rem;
  display: block;
  font-size: 0.8rem;
  color: var(--text2);
}
.dropdown li a:hover { color: var(--red); background: #fdf0f0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 60%, #2a4aa0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-arc {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-red-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 3rem 0;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-content h1 span { color: var(--red); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-red { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 0.6rem; font-size: 1rem; position: relative; z-index: 1; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0.5rem 0 1.2rem;
  line-height: 1.1;
}
.about-text p { color: var(--text2); margin-bottom: 1rem; font-size: 0.95rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.stat-card:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; display: block; font-weight: 600; }

/* ===== ATHLETES GRID ===== */
.athletes-section { background: var(--off-white); }

.athletes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.athlete-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  box-shadow: 0 2px 8px rgba(27,47,110,0.06);
}
.athlete-card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.athlete-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.athlete-placeholder {
  width: 100%;
  height: 260px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border);
}
.athlete-placeholder.large { height: 360px; font-size: 5rem; }

.athlete-info { padding: 1rem 1.1rem; }
.athlete-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.4rem 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.athlete-info p { font-size: 0.8rem; color: var(--text2); }
.record { color: var(--navy) !important; font-weight: 700; }
.nationality { color: var(--muted) !important; }

/* ===== ORG BADGES ===== */
.org-badge {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.org-ufc     { background: var(--navy); color: var(--white); }
.org-pfl     { background: #1565C0; color: #fff; }
.org-oktagon { background: var(--red); color: #fff; }
.org-bellator{ background: #6A1B9A; color: #fff; }
.org-one     { background: #1B5E20; color: #fff; }
.org-lfa     { background: #E65100; color: #fff; }
.org-other   { background: #546E7A; color: #fff; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  transition: all var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

/* ===== FIGHTS TABLE ===== */
.fights-table { display: flex; flex-direction: column; }

.fight-row {
  display: grid;
  grid-template-columns: 80px 110px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
  background: rgba(255,255,255,0.03);
}
.fight-row:hover { background: rgba(255,255,255,0.07); }

/* light context (on white bg) */
.section:not(.dark-section) .fight-row {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.section:not(.dark-section) .fight-row:hover { background: var(--off-white); }

.fight-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.fight-date .day {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}
.fight-date .month { font-size: 0.68rem; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; font-weight: 600; }

.fight-matchup {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.fight-matchup strong { color: var(--white); font-weight: 600; }
.section:not(.dark-section) .fight-matchup strong { color: var(--navy); }
.vs {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
}
.fight-class  { font-size: 0.78rem; color: var(--muted); }
.fight-method { font-size: 0.78rem; color: var(--muted); }

.fight-result {
  padding: 0.22rem 0.75rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.result-win      { background: #e8f5e9; color: #2E7D32; }
.result-loss     { background: #ffebee; color: var(--red); }
.result-draw,
.result-nc       { background: #eceff1; color: #546E7A; }
.result-upcoming { background: #e8eaf6; color: var(--navy); }

/* ===== ATHLETE HERO ===== */
.athlete-hero {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
  padding: 4rem 0;
  position: relative;
}
.athlete-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.athlete-hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.athlete-hero-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid rgba(255,255,255,0.15);
}
.athlete-hero-info h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin: 0.5rem 0 0.75rem;
}
.athlete-hero-info p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weight-class { font-size: 1rem; }
.record-big {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem !important;
  color: var(--red) !important;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1rem !important;
}

/* ===== NEWS GRID ===== */
.news-section { background: var(--off-white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  box-shadow: 0 2px 8px rgba(27,47,110,0.06);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--navy); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-placeholder {
  width: 100%;
  height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--border);
}
.news-card-body { padding: 1.25rem; }
.news-date { font-size: 0.72rem; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.news-card-body h3 { color: var(--navy); font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; margin: 0.4rem 0 0.5rem; line-height: 1.35; text-transform: uppercase; }
.news-card-body p { font-size: 0.85rem; color: var(--text2); }
.read-more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem; font-size: 0.78rem; color: var(--red); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.article-cover { width: 100%; border-radius: var(--radius); margin-bottom: 2rem; }
.content-narrow { max-width: 800px; }

/* ===== AGENTS ===== */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(27,47,110,0.06);
}
.agent-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); }
.agent-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.agent-info { padding: 1.5rem; }
.agent-info h3 { color: var(--navy); font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 600; text-transform: uppercase; }
.agent-title { color: var(--red); font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0.3rem 0 0.75rem; }
.agent-info p { color: var(--text2); font-size: 0.85rem; margin-bottom: 0.5rem; }
.agent-contact { display: flex; flex-direction: column; gap: 0.3rem; margin: 1rem 0; }
.agent-contact a { font-size: 0.82rem; color: var(--text2); display: flex; align-items: center; gap: 0.4rem; }
.agent-contact a:hover { color: var(--red); }
.agent-contact i { color: var(--navy); width: 16px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(27,47,110,0.06);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.service-card h3 { color: var(--navy); font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.75rem; }

/* ===== PARTNERS ===== */
.partners-section { background: var(--white); }

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  min-width: 160px;
  min-height: 80px;
}
.partner-logo:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-logo img { max-height: 50px; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.partner-logo:hover img { filter: none; opacity: 1; }
.partner-logo span { color: var(--navy); font-weight: 700; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.partners-logos.large .partner-logo { min-width: 200px; min-height: 100px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.contact-info h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); text-transform: uppercase; margin-bottom: 1rem; }
.contact-info p { color: var(--text2); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text2); font-size: 0.9rem; }
.contact-item i { color: var(--red); width: 20px; font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1rem; }

/* ===== SOCIAL ICONS ===== */
.social-icons { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.social-icons a {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 0.9rem;
  transition: all var(--transition);
  background: var(--white);
}
.social-icons a:hover { border-color: var(--navy); color: var(--white); background: var(--navy); }

/* hero social icons */
.athlete-hero-info .social-icons a {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.athlete-hero-info .social-icons a:hover { background: var(--red); border-color: var(--red); }

/* ===== RICH CONTENT ===== */
.rich-content { color: var(--text2); line-height: 1.85; }
.rich-content h2, .rich-content h3 { color: var(--navy); font-family: 'Oswald', sans-serif; margin: 1.5rem 0 0.75rem; text-transform: uppercase; }
.rich-content p { margin-bottom: 1rem; }
.rich-content img { border-radius: var(--radius); margin: 1rem 0; }
.rich-content a { color: var(--red); }

/* ===== MESSAGES ===== */
.messages-wrap { padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.alert-success { background: #e8f5e9; color: #2E7D32; border: 1.5px solid #c8e6c9; }
.alert-error   { background: #ffebee; color: var(--red); border: 1.5px solid #ffcdd2; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 5rem 0;
  color: var(--muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--border); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy3);
  border-top: 4px solid var(--red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand .logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 1rem; max-width: 300px; line-height: 1.7; }
.footer-links h4, .footer-social h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* footer social */
footer .social-icons a {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
footer .social-icons a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ===== DIVIDER ===== */
.red-divider {
  width: 50px;
  height: 4px;
  background: var(--red);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border);
  padding-left: 0.75rem;
}
.lang-switcher form {
  display: flex;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  color: var(--text2);
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.lang-btn:hover { border-color: var(--navy); color: var(--navy); }
.lang-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 1rem 0;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .lang-switcher { border-left: none; padding-left: 1.5rem; padding-top: 0.5rem; padding-bottom: 0.5rem; margin-left: 0; }
  .dropdown { position: static; border: none; box-shadow: none; padding: 0 0 0 1.5rem; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .athlete-hero-inner { grid-template-columns: 1fr; }
  .athlete-hero-photo img { max-width: 260px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fight-row { grid-template-columns: 60px 1fr; gap: 0.5rem; }
  .fight-promo, .fight-class, .fight-method, .fight-result { display: none; }
  .fight-matchup { flex-direction: column; align-items: flex-start; gap: 0.2rem; font-size: 0.85rem; }
  .hero-logo { display: none; }
}

@media (max-width: 480px) {
  .athletes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 3rem; }
  .section { padding: 3rem 0; }
  .news-grid { grid-template-columns: 1fr; }
}
