:root {
  --navy-950: #02152b;
  --navy-900: #04244a;
  --card: #013263;
  --brand: #014b96;
  --accent-blue: #2a82d6;
  --gold: #f5b301;
  --text: #eef4fb;
  --muted: #9fb6d4;
  --border: rgba(159, 182, 212, .18);
  --heading: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 8, 25, .25);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(42,130,214,.09), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(1,75,150,.12), transparent 28%);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, input { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading); }

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  background: rgba(2, 21, 43, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(2, 21, 43, .99); box-shadow: 0 10px 35px rgba(0,0,0,.22); }
.navbar { min-height: 102px; padding-block: 5px; }
.navbar-brand {
  min-width: 88px;
  min-height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}
.navbar-brand img {
  display: block;
  width: auto;
  height: 88px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.08));
}
.navbar-nav { gap: 4px; }
.navbar .nav-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 13px !important;
  color: #c5d5e7;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: #fff; background: rgba(42,130,214,.13); }
.navbar .nav-link.active::after { content: ""; width: 5px; height: 5px; margin-left: 7px; border-radius: 50%; background: var(--gold); }
.navbar-toggler {
  width: 46px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--border);
  box-shadow: none !important;
}
.navbar-toggler-icon { filter: invert(1); }
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-brand { background: var(--brand); color: #fff; border: 1px solid var(--accent-blue); }
.btn-brand:hover { background: var(--accent-blue); color: #fff; }
.btn-login { min-width: 108px; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #081a2e;
  box-shadow: 0 10px 25px rgba(245,179,1,.2);
  animation: goldBreath 3.2s ease-in-out infinite;
}
.btn-gold:hover { background: #ffc31c; border-color: #ffc31c; color: #081a2e; }
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 34%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transform: rotate(24deg) translateX(-260%);
  animation: buttonShimmer 4.8s ease-in-out infinite;
}
@keyframes buttonShimmer {
  0%, 58% { transform: rotate(24deg) translateX(-260%); }
  82%, 100% { transform: rotate(24deg) translateX(560%); }
}
@keyframes goldBreath {
  50% { box-shadow: 0 12px 34px rgba(245,179,1,.42), 0 0 18px rgba(245,179,1,.2); }
}
.btn-outline-light { border-color: rgba(238,244,251,.32); font-size: .88rem; gap: 10px; }
.btn-outline-light:hover { background: var(--brand); border-color: var(--accent-blue); }
.mobile-drawer {
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  display: flex;
  visibility: hidden;
  flex-direction: column;
  overflow-y: auto;
  background: linear-gradient(165deg, #063565, #02152b 72%);
  color: var(--text);
  box-shadow: -22px 0 60px rgba(0,0,0,.38);
  opacity: 0;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.22,.75,.25,1), opacity .28s ease, visibility 0s .32s;
}
.mobile-drawer.menu-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: transform .32s cubic-bezier(.22,.75,.25,1), opacity .28s ease, visibility 0s 0s;
}
.menu-lock { overflow: hidden; }
.mobile-menu-backdrop {
  position: fixed;
  z-index: 1050;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 8, 24, .72);
  backdrop-filter: blur(3px);
  animation: backdropIn .25s ease both;
}
@keyframes backdropIn { from { opacity: 0; } }
.mobile-drawer-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-logo { width: auto; height: 88px; object-fit: contain; }
.mobile-drawer-body { flex: 1; padding: 20px 18px; }
.mobile-drawer .navbar-nav { gap: 4px; }
.mobile-drawer .nav-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 9px;
  color: #d7e3ef;
  font-weight: 600;
}
.mobile-drawer .nav-link:hover,
.mobile-drawer .nav-link.active { background: rgba(42,130,214,.16); color: #fff; }
.mobile-drawer .nav-link.active::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--gold);
}

.hero-section { position: relative; overflow: hidden; }
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 290px;
  height: 290px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .32;
  background: radial-gradient(circle, rgba(42,130,214,.48), transparent 68%);
  animation: heroOrb 10s ease-in-out infinite alternate;
}
.hero-section::before { top: -120px; right: 12%; }
.hero-section::after { bottom: -180px; left: 33%; width: 390px; height: 390px; animation-delay: -4s; }
@keyframes heroOrb {
  0% { transform: translate3d(-20px, -8px, 0) scale(.88); opacity: .22; }
  50% { opacity: .58; }
  100% { transform: translate3d(55px, 34px, 0) scale(1.22); opacity: .3; }
}
.carousel-item { height: clamp(510px, 61vw, 700px); background: var(--navy-900); }
.hero-image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.carousel-item.active .hero-image { animation: heroDrift 8s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { transform: scale(1.035) translate3d(-5px, -3px, 0); }
  to { transform: scale(1.095) translate3d(7px, 4px, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,21,43,.97) 0%, rgba(2,21,43,.77) 48%, rgba(2,21,43,.22) 100%),
    linear-gradient(0deg, var(--navy-950) 0%, transparent 25%);
}
.carousel-caption { inset: 0; padding: 0; text-align: left; }
.carousel-caption .container { height: 100%; display: flex; align-items: center; }
.hero-content { width: min(720px, 78%); padding-bottom: 18px; }
.eyebrow, .section-kicker {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(245,179,1,.25);
  border-radius: 999px;
  background: rgba(245,179,1,.08);
}
.hero-content h1, .hero-content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.25rem, 5.1vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.hero-content h1 span, .hero-content h2 span { color: var(--accent-blue); }
.hero-content p { max-width: 600px; margin-bottom: 28px; color: #c9d7e8; font-size: clamp(.98rem, 1.5vw, 1.15rem); }
.hero-content .btn { padding: 13px 20px; font-size: .94rem; }
.carousel-control-prev, .carousel-control-next { width: 8%; opacity: 1; }
.control-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(2,21,43,.5);
  backdrop-filter: blur(8px);
}
.carousel-indicators { bottom: 24px; gap: 7px; margin-bottom: 0; }
.carousel-indicators [data-bs-target] { width: 8px; height: 8px; margin: 0; border: 0; border-radius: 10px; background: #fff; transition: width .25s ease; }
.carousel-indicators .active { width: 30px; background: var(--gold); }

.sponsors-section { position: relative; overflow: hidden; padding: 34px 0 30px; background: var(--navy-900); border-block: 1px solid var(--border); }
.sponsors-section::before {
  content: "";
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -25%;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(42,130,214,.11), transparent);
  filter: blur(10px);
  transform: skewX(-18deg);
  animation: sponsorSectionSweep 7s linear infinite;
}
@keyframes sponsorSectionSweep { to { left: 120%; } }
.sponsor-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.sponsor-controls { display: flex; gap: 8px; }
.sponsor-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(1,50,99,.75);
  color: var(--text);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sponsor-controls button:hover { transform: translateY(-2px); border-color: var(--accent-blue); background: var(--brand); }
.sponsor-viewport {
  overflow-x: auto;
  padding: 8px 3px 14px;
  outline: none;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sponsor-viewport:active { cursor: grabbing; }
.sponsor-viewport:focus-visible { border-radius: 12px; box-shadow: 0 0 0 3px rgba(42,130,214,.3); }
.sponsor-viewport::-webkit-scrollbar { display: none; }
.sponsor-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: scroll-position;
}
.sponsor-group { display: flex; flex: none; gap: 18px; }
.sponsor-logo {
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(170px, 16vw, 205px);
  display: grid;
  min-height: 74px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: rgba(1,50,99,.45);
  box-shadow: 0 0 18px rgba(42,130,214,.1);
  animation: sponsorBreath 3.6s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sponsor-logo::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -140%;
  background: conic-gradient(from 0deg, transparent 0 72%, var(--accent-blue) 80%, var(--gold) 87%, transparent 94%);
  animation: beamRotate 4.5s linear infinite;
}
.sponsor-logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(145deg, #063c70, #01264d);
}
.sponsor-logo:nth-child(2n)::before { animation-delay: -1.5s; }
.sponsor-logo:nth-child(3n)::before { animation-delay: -3s; }
.sponsor-logo:nth-child(2n) { animation-delay: -1.2s; }
.sponsor-logo:nth-child(3n) { animation-delay: -2.4s; }
@keyframes beamRotate { to { transform: rotate(1turn); } }
@keyframes sponsorBreath {
  0%, 100% { box-shadow: 0 0 14px rgba(42,130,214,.09), 0 0 0 rgba(245,179,1,0); }
  50% { box-shadow: 0 0 34px rgba(42,130,214,.28), 0 0 16px rgba(245,179,1,.11); }
}
.sponsor-logo:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 0 34px rgba(42,130,214,.25), 0 0 18px rgba(245,179,1,.1); }
.sponsor-logo img { position: relative; z-index: 1; max-width: 132px; opacity: .74; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease, transform .25s ease; }
.sponsor-logo:hover img { opacity: 1; filter: none; }

.section-space { padding: clamp(68px, 8vw, 112px) 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: clamp(28px, 4vw, 45px); }
.section-heading h2 { margin: 6px 0 0; font-size: clamp(1.75rem, 3.6vw, 2.75rem); font-weight: 700; letter-spacing: -.035em; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: #c7d6e8; font-size: .9rem; font-weight: 700; white-space: nowrap; }
.text-link:hover { color: var(--gold); }

.tournament-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.tournament-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: .26;
  background: radial-gradient(340px circle at var(--spot-x) var(--spot-y), rgba(42,130,214,.22), transparent 48%);
  animation: cardGlowBreath 4.2s ease-in-out infinite;
  transition: opacity .25s ease;
}
.tournament-card:hover::before { opacity: 1; }
.tournament-card:nth-child(2n)::before { animation-delay: -2.1s; }
@keyframes cardGlowBreath {
  0%, 100% { opacity: .18; filter: saturate(.85); }
  50% { opacity: .48; filter: saturate(1.3); }
}
.tournament-card .card-body,
.tournament-card .card-image-wrap { position: relative; z-index: 1; }
.tournament-card:hover { transform: translateY(-7px); border-color: rgba(42,130,214,.6); }
.card-image-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tournament-card:hover .card-image-wrap img { transform: scale(1.045); }
.card-image-wrap::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(1,50,99,.92)); }
.status-badge { position: absolute; z-index: 1; top: 14px; left: 14px; padding: 6px 10px; border-radius: 7px; font-size: .7rem; font-weight: 800; letter-spacing: .02em; }
.status-live { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #07192c; }
.status-live span, .score-status span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.4s infinite; }
.status-soon { background: var(--accent-blue); color: #fff; }
.status-ended { background: rgba(2,21,43,.85); color: #b7c8dc; border: 1px solid rgba(255,255,255,.2); }
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.tournament-card .card-body { padding: 22px; }
.tournament-level { margin-bottom: 8px; color: var(--accent-blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.tournament-card h3 { min-height: 53px; margin-bottom: 16px; font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.35; }
.card-meta { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 20px; color: var(--muted); font-size: .78rem; }
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.card-meta i { color: var(--gold); }

.teams-section { background: var(--navy-900); }
.teams-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  position: relative;
  min-width: 0;
  padding: 28px 16px 22px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(1,75,150,.24), rgba(1,50,99,.7));
  transition: transform .25s ease, border-color .25s ease;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(42,130,214,.32);
  filter: blur(26px);
  transform: translateX(-50%);
  animation: teamGlow 3.4s ease-in-out infinite;
}
.team-card:nth-child(2n)::before { animation-delay: -1.7s; }
@keyframes teamGlow {
  0%, 100% { opacity: .16; transform: translateX(-50%) scale(.82); }
  50% { opacity: .52; transform: translateX(-50%) scale(1.35); }
}
.team-card:hover { transform: translateY(-5px); border-color: rgba(42,130,214,.6); }
.team-card img { position: relative; width: 82px; height: 82px; margin-bottom: 17px; object-fit: cover; border: 4px solid rgba(42,130,214,.25); border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,.22); transition: transform .35s ease, filter .35s ease; }
.team-card:hover img { transform: rotate(-4deg) scale(1.08); filter: drop-shadow(0 0 12px rgba(245,179,1,.38)); }
.team-card h3 { overflow: hidden; margin-bottom: 5px; font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.team-card p { margin-bottom: 8px; color: var(--muted); font-size: .78rem; }
.team-card span { color: var(--accent-blue); font-size: .72rem; font-weight: 700; }

.score-strip { border-block: 1px solid rgba(245,179,1,.22); background: linear-gradient(90deg, #052c55, #014b96, #052c55); }
.score-strip { position: relative; overflow: hidden; background-size: 200% 100%; animation: scoreFlow 9s ease-in-out infinite; }
.score-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.08) 48%, transparent 61%);
  transform: translateX(-100%);
  animation: scoreSweep 5s ease-in-out infinite;
}
@keyframes scoreFlow { 50% { background-position: 100% 0; } }
@keyframes scoreSweep { 55%, 100% { transform: translateX(100%); } }
.score-inner { min-height: 102px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: clamp(12px, 3vw, 40px); }
.score-status { display: flex; align-items: center; gap: 7px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.score-status span { background: var(--gold); }
.score-team { display: flex; flex-direction: column; }
.score-team strong { font-family: var(--heading); font-size: clamp(.8rem, 2vw, 1.05rem); }
.score-team small { color: #a9c2db; font-size: .7rem; }
.score { font-family: var(--heading); color: var(--gold); font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; white-space: nowrap; }
.score em { padding-inline: 6px; color: rgba(255,255,255,.45); font-style: normal; }
.score-inner > a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.score-inner > a:hover { background: var(--gold); color: var(--navy-950); }

.news-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr); gap: 26px; }
.featured-news {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 0 0 rgba(42,130,214,0);
  animation: newsGlowBreath 5s ease-in-out infinite;
}
@keyframes newsGlowBreath {
  50% { box-shadow: 0 0 42px rgba(42,130,214,.14); }
}
.featured-news .news-image { position: absolute; inset: 0; }
.featured-news .news-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,21,43,.98) 7%, rgba(2,21,43,.25) 76%); }
.featured-news img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.featured-news:hover img { transform: scale(1.035); }
.featured-content { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: clamp(24px, 5vw, 42px); }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 9px; color: var(--muted); font-size: .7rem; }
.news-meta span { color: var(--gold); font-weight: 800; letter-spacing: .1em; }
.featured-content h3 { max-width: 700px; margin-bottom: 12px; font-size: clamp(1.35rem, 3.3vw, 2.15rem); line-height: 1.24; }
.featured-content h3 a:hover, .small-news h3 a:hover { color: var(--accent-blue); }
.featured-content p { max-width: 640px; margin-bottom: 18px; color: #b7c8dc; font-size: .9rem; }
.read-more { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-size: .82rem; font-weight: 800; }
.small-news-list { display: flex; flex-direction: column; gap: 18px; }
.small-news {
  flex: 1;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  transition: transform .2s ease, border-color .2s ease;
}
.small-news:hover { transform: translateX(-4px); border-color: rgba(42,130,214,.6); }
.news-thumb { overflow: hidden; border-radius: 9px; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb img { transition: transform .45s ease, filter .45s ease; }
.small-news:hover .news-thumb img { transform: scale(1.08); filter: saturate(1.18); }
.small-news > div { align-self: center; }
.small-news h3 { margin: 0 0 7px; font-size: clamp(.9rem, 1.5vw, 1.05rem); line-height: 1.35; }
.small-news p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.site-footer { padding-top: clamp(64px, 7vw, 90px); background: #010e1e; border-top: 1px solid var(--border); color: var(--muted); }
.footer-logo {
  width: auto;
  height: 150px;
  max-width: 180px;
  margin: -24px 0 10px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255,255,255,.08));
}
.footer-about { max-width: 330px; font-size: .88rem; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--border); border-radius: 10px; color: var(--text); }
.social-links a:hover { background: var(--brand); border-color: var(--accent-blue); }
.site-footer h2 { margin-bottom: 20px; color: var(--text); font-size: .96rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 10px; }
.site-footer li a { display: inline-flex; min-height: 30px; align-items: center; font-size: .84rem; }
.site-footer li a:hover, .contact-mail:hover { color: var(--gold); }
.site-footer p { font-size: .85rem; }
.newsletter-form { position: relative; margin: 18px 0 13px; }
.newsletter-form input { width: 100%; min-height: 52px; padding: 0 62px 0 16px; border: 1px solid var(--border); border-radius: 10px; outline: 0; background: var(--navy-900); color: var(--text); }
.newsletter-form input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(42,130,214,.15); }
.newsletter-form button { position: absolute; top: 4px; right: 4px; width: 44px; height: 44px; border: 0; border-radius: 8px; background: var(--gold); color: var(--navy-950); }
.form-message { min-height: 18px; margin-top: 6px; font-size: .72rem; }
.contact-mail { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; font-size: .84rem; }
.footer-bottom { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 60px; border-top: 1px solid var(--border); font-size: .74rem; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--text); }
.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  visibility: hidden;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  opacity: 0;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transform: translateY(12px);
  transition: .2s ease;
}
.back-to-top.show { visibility: visible; opacity: 1; transform: none; }

/* Bölümler ekrana girerken yumuşak ve kademeli görünür. */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-item.is-visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
  .navbar-toggler { position: relative; z-index: 1070; display: block !important; }
  .navbar-collapse { display: none !important; }
  .navbar { min-height: 88px; }
  .navbar-brand { min-width: 72px; min-height: 76px; }
  .navbar-brand img { height: 76px; }
  .carousel-item { height: clamp(500px, 75vw, 630px); }
  .hero-content { width: 82%; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .sponsor-viewport { margin-inline: calc(var(--bs-gutter-x) * -.5); padding-inline: calc(var(--bs-gutter-x) * .5); scroll-padding-left: calc(var(--bs-gutter-x) * .5); scroll-snap-type: x mandatory; }
  .sponsor-logo { flex-basis: 160px; }
  .sponsor-logo { scroll-snap-align: start; }
  .teams-track::-webkit-scrollbar { display: none; }
  .teams-track { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .featured-news { min-height: 500px; }
  .small-news-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .small-news { grid-template-columns: 1fr; }
  .news-thumb { aspect-ratio: 16 / 10; }
  .small-news p { display: none; }
}


@media (max-width: 767.98px) {
  .container { --bs-gutter-x: 2rem; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,21,43,.96), rgba(2,21,43,.67)), linear-gradient(0deg, var(--navy-950), transparent 30%); }
  .hero-content { width: 94%; padding-bottom: 28px; }
  .eyebrow { margin-bottom: 14px; }
  .hero-content p { margin-bottom: 24px; }
  .section-heading { align-items: center; }
  .section-heading .text-link { font-size: 0; }
  .section-heading .text-link i { font-size: 1.15rem; }
  .teams-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 64vw);
    overflow-x: auto;
    margin-inline: calc(var(--bs-gutter-x) * -.5);
    padding: 4px calc(var(--bs-gutter-x) * .5) 16px;
    scroll-padding-left: calc(var(--bs-gutter-x) * .5);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .team-card { scroll-snap-align: start; }
  .score-inner { grid-template-columns: auto 1fr auto 1fr; gap: 10px; padding-block: 16px; }
  .score-inner > a { display: none; }
  .score-status { grid-column: 1 / -1; justify-content: center; }
  .small-news-list { grid-template-columns: 1fr; }
  .small-news { grid-template-columns: 36% 1fr; min-height: 142px; }
  .small-news p { display: block; }
  .featured-news { min-height: 470px; }
  .footer-bottom { flex-direction: column; justify-content: center; padding-block: 22px; text-align: center; }
  .footer-bottom div { gap: 15px; }
}

@media (max-width: 479.98px) {
  .container { --bs-gutter-x: 1.5rem; }
  .navbar-brand { min-width: 68px; min-height: 72px; }
  .navbar-brand img { width: auto; height: 72px; }
  .mobile-drawer-header { min-height: 98px; }
  .mobile-drawer-logo { height: 78px; }
  .carousel-item { height: 520px; }
  .hero-content { width: 100%; }
  .hero-content h1, .hero-content h2 { font-size: clamp(2rem, 11vw, 2.7rem); }
  .hero-content .btn { width: 100%; }
  .carousel-indicators { bottom: 16px; }
  .sponsor-heading { align-items: flex-end; }
  .sponsor-controls button { width: 42px; height: 42px; }
  .section-heading { margin-bottom: 25px; }
  .tournament-card .card-body { padding: 18px; }
  .card-meta { font-size: .72rem; }
  .score-team strong { max-width: 82px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .score { font-size: 1.5rem; }
  .featured-news { min-height: 440px; }
  .featured-content p { display: none; }
  .small-news { grid-template-columns: 112px 1fr; gap: 12px; padding: 10px; }
  .small-news p { display: none; }
  .news-meta { gap: 6px; font-size: .62rem; }
}
