:root {
  --red: #af1315;
  --red-deep: #8a0f11;
  --orange: #c74200;
  --gold: #e8ad0a;
  --gold-bright: #e6c318;
  --ink: #0b1220;
  --ink-2: #141c2e;
  --cream: #fff8e8;
  --muted: #9aa3b5;
  --line: rgba(232, 173, 10, 0.35);
  --card: rgba(20, 28, 46, 0.88);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Bebas Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@keyframes mrc-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
html:not(.i18n-ready) [data-i18n] {
  color: transparent !important;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(232, 173, 10, 0.16) 45%,
    rgba(255, 255, 255, 0.06) 90%
  );
  background-size: 200% 100%;
  animation: mrc-skel 1.15s ease-in-out infinite;
  border-radius: 6px;
  min-width: 4.8em;
  min-height: 0.92em;
  pointer-events: none;
}
html:not(.i18n-ready) .legal-bar [data-i18n],
html:not(.i18n-ready) p[data-i18n],
html:not(.i18n-ready) .section-head [data-i18n],
html:not(.i18n-ready) .prose [data-i18n],
html:not(.i18n-ready) .page-hero p[data-i18n],
html:not(.i18n-ready) .hero p[data-i18n],
html:not(.i18n-ready) .footer-bottom[data-i18n] {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 46rem;
}
html:not(.i18n-ready) .legal-bar [data-i18n] {
  margin: 0 auto;
  max-width: 52rem;
  min-height: 1.1em;
}
html:not(.i18n-ready) .hero h1 [data-i18n],
html:not(.i18n-ready) .page-hero h1[data-i18n],
html:not(.i18n-ready) h2[data-i18n] {
  display: block;
  min-height: 1.15em;
  min-width: 8rem;
  max-width: 18rem;
}
html:not(.i18n-ready) .btn[data-i18n] {
  min-width: 7.5rem;
  min-height: 2.4rem;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.legal-bar {
  background: linear-gradient(90deg, rgba(175,19,21,.95), rgba(10,12,16,.92));
  border-bottom: 2px solid var(--gold);
  text-align: center;
  padding: .65rem 1rem;
  font-size: clamp(.72rem, 1.5vw, .88rem);
  font-weight: 600;
}
.legal-bar strong { color: var(--gold-bright); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: .35rem 0 .45rem;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cream);
  flex-shrink: 0;
}
.brand img { width: 96px; height: auto; }
.brand span {
  font-family: var(--display);
  letter-spacing: .08em;
  font-size: 1.75rem;
  color: var(--gold-bright);
}

.nav-wrap {
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .15rem;
  padding-top: .35rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .1rem .05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav > li { position: relative; }
.nav > li > a,
.nav > li > button.has-sub {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .55rem;
  color: rgba(255,248,232,.88);
  font-size: .78rem;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.nav > li > a:hover,
.nav > li > button.has-sub:hover,
.nav > li.active > a,
.nav > li.open > button.has-sub {
  color: var(--gold-bright);
}
.nav .chev { font-size: .7rem; opacity: .8; }
.dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: .55rem .4rem .4rem;
  margin: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 40;
  transition: opacity .18s ease, visibility .18s ease;
  transition-delay: .2s;
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 18px;
}
.nav > li.open > .dropdown,
.nav > li:hover > .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.dropdown a {
  display: block;
  padding: .65rem .8rem;
  border-radius: 8px;
  color: var(--cream);
  font-size: .88rem;
  font-weight: 500;
}
.dropdown a:hover { background: rgba(232,173,10,.12); color: var(--gold-bright); }
.dropdown-logos {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .55rem .5rem .65rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: .25rem;
}
.nav-brand-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: .45rem .55rem !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,.35);
}
.nav-brand-logo:hover {
  background: #fff !important;
}
.nav-brand-logo img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  margin-left: auto;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: .4rem .65rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .78rem;
  font-family: inherit;
}
.lang-switch button.active {
  background: var(--gold);
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: .2s ease;
  font-family: inherit;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-bright); color: var(--ink); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-outline:hover { background: rgba(232,173,10,.12); color: #fff; }
.btn-red {
  background: var(--red);
  color: var(--gold-bright);
  border-color: var(--red);
}
.btn-red:hover { background: var(--orange); color: #fff; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #040505;
}
.hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.08);
  border: 0; pointer-events: none;
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,18,32,.78), rgba(11,18,32,.45) 45%, rgba(11,18,32,.88)),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(175,19,21,.28), transparent 70%);
}
.hero-inner { text-align: center; padding: 3rem 0; width: min(900px, calc(100% - 2rem)); }
.hero-kicker {
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .85rem;
  margin-bottom: .8rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: .95;
  letter-spacing: .04em;
  margin: 0 0 1rem;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--gold-bright), #fff3b0, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  color: rgba(255,248,232,.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }

.section { padding: 4rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(20,28,46,.55), transparent); }
.section-head { margin-bottom: 2rem; max-width: 720px; }
.section-head .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .78rem;
  margin-bottom: .5rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .04em;
  margin: 0 0 .6rem;
  line-height: 1;
}
.section-head p { margin: 0; color: var(--muted); }

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--line); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(232,173,10,.12);
  color: var(--gold-bright);
  font-size: 1.35rem;
  margin-bottom: .9rem;
}
.card h3 {
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: #fff;
}
.card p { margin: 0; color: var(--muted); font-size: .92rem; }

.card-aim {
  padding: 0;
  overflow: hidden;
}
.card-aim .aim-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.card-aim .aim-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-aim .aim-body { padding: 1.15rem 1.2rem 1.35rem; }
.card-aim .aim-ico {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(175,19,21,.35);
  color: var(--gold-bright);
  margin-bottom: .65rem;
  font-size: 1rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(175,19,21,.25), transparent 55%),
    linear-gradient(180deg, rgba(20,28,46,.7), transparent);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: .04em;
  margin: 0 0 .5rem;
  line-height: 1;
}
.page-hero p { margin: 0; color: var(--muted); max-width: 46rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-size: .82rem; color: var(--muted); margin-bottom: .8rem;
}
.breadcrumb a { color: var(--gold); }

.prose {
  max-width: 820px;
}
.prose h2, .prose h3 { color: var(--gold-bright); margin-top: 1.6rem; }
.prose p, .prose li { color: rgba(255,248,232,.88); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: .4rem 0; }

.calendar-poster {
  margin: 0 auto;
  max-width: 720px;
}
.calendar-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
}
.calendar-empty {
  text-align: center;
  color: rgba(255,248,232,.72);
  padding: 2rem 1rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
th, td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
th {
  background: rgba(232,173,10,.1);
  color: var(--gold-bright);
  font-size: .82rem;
  letter-spacing: .04em;
}
td { color: rgba(255,248,232,.9); font-size: .94rem; }
tr:hover td { background: rgba(255,255,255,.02); }

.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.sport-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  background:
    linear-gradient(160deg, rgba(175,19,21,.2), rgba(20,28,46,.92) 55%),
    var(--card);
  border: 1px solid rgba(232,173,10,.28);
  border-radius: 16px;
  padding: .85rem .85rem 1.1rem;
  text-align: center;
  color: var(--cream);
  transition: .2s ease;
}
.sport-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.sport-card .sport-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .75rem;
  background: #0a0a0a;
  border: 1px solid rgba(232,173,10,.25);
}
.sport-card .sport-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sport-card h3,
.sport-card .sport-name {
  margin: 0;
  font-family: var(--display);
  letter-spacing: .06em;
  font-size: 1.2rem;
  line-height: 1.05;
  color: #fff;
  font-weight: 400;
}
.sport-card .lvl {
  display: inline-block;
  margin-top: .55rem;
  font-size: .72rem;
  color: var(--ink);
  background: var(--gold);
  padding: .15rem .55rem;
  border-radius: 999px;
  font-weight: 700;
}
.sport-card .sport-cta {
  display: inline-block;
  margin-top: .75rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(232, 173, 10, .65);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: .04em;
  background: rgba(232, 173, 10, .1);
}
.sport-card:hover .sport-cta {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.sport-hero-thumb {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 1rem;
  border: 1px solid rgba(232,173,10,.35);
  box-shadow: var(--shadow);
  background: #0a0a0a;
}
.sport-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rules-block {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.6rem;
}
.rules-block h2 { margin-top: 0; }
.rules-text { max-width: 52rem; }
.rules-text h3 { font-size: 1.05rem; margin: 1.35rem 0 .55rem; }
.rules-text h3:first-of-type { margin-top: .55rem; }
.rules-text p { margin: .45rem 0; line-height: 1.55; }
.rules-text ul { margin: .35rem 0 .8rem; }
.rules-text a { color: var(--gold); }
.rules-source { margin-top: 1.4rem; font-size: .85rem; color: var(--muted); }
.rules-source-lead {
  margin: 0 0 .55rem;
  padding: .75rem .9rem;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--cream);
  background: rgba(232, 173, 10, .12);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.rules-source-lead.rules-reg { margin-bottom: 1.15rem; }
.rules-source.rules-reg { margin-top: .45rem; }
.rules-media {
  margin: 1rem 0 1.25rem;
  padding: 0;
}
.rules-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: #fff;
}
.rules-media figcaption {
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--muted);
}
.rules-video {
  position: relative;
  margin: 1rem 0 1.25rem;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.rules-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-band {
  margin: 1rem 0 0;
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(175,19,21,.85), rgba(199,66,0,.75));
  border: 1px solid rgba(232,173,10,.4);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: .04em;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1;
}
.cta-band p { margin: .4rem 0 0; color: rgba(255,248,232,.9); }

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #080d18;
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.site-footer h4 {
  margin: 0 0 .7rem;
  color: var(--gold-bright);
  font-size: .95rem;
}
.site-footer p, .site-footer a { color: var(--muted); font-size: .9rem; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: .35rem 0; }
.footer-partners {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.footer-logo:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.footer-global {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.footer-global a {
  color: var(--gold-bright);
  font-weight: 700;
}
.partner-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.country-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.partner-card,
.country-card {
  background: var(--card);
  border: 1px solid rgba(232,173,10,.22);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.partner-card:hover,
.country-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.partner-flag,
.country-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: .65rem;
  margin-bottom: .85rem;
  min-height: 96px;
  border: 1px solid rgba(255,255,255,.35);
}
.partner-flag img,
.country-flag img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}
.country-flag img { max-width: 180px; }
.partner-country,
.country-card h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  color: var(--gold-bright);
  letter-spacing: .02em;
}
.partner-org {
  margin: 0;
  color: rgba(255,248,232,.88);
  font-size: .88rem;
  line-height: 1.45;
}
.partner-org.muted { color: var(--muted); }

.team-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.team-card {
  background: var(--card);
  border: 1px solid rgba(232,173,10,.22);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 0 0 1.2rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.team-photo {
  aspect-ratio: 1;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-empty {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2.4rem;
}
.team-name {
  margin: 1rem 1rem .2rem;
  font-weight: 800;
  font-size: 1.08rem;
  color: #fff;
  line-height: 1.25;
}
.team-role {
  margin: 0 1rem;
  font-weight: 400;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.4;
}
.team-empty {
  margin: 0;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(232,173,10,.22);
  border-radius: 16px;
  padding: 1.2rem 1rem 1.1rem;
  text-align: center;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
a.brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.brand-logo {
  width: 100%;
  height: 120px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.94);
  border-radius: 12px;
  padding: .7rem;
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo-empty {
  color: var(--gold);
  font-size: 2rem;
  background: rgba(255,255,255,.06);
}
.brand-name {
  margin: .9rem 0 0;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}
.brand-empty {
  margin: 0;
  color: var(--muted);
}

/* Dil: yalnızca aktif dil görünsün (JS yüklenmeden de) */
.lang-en { display: none !important; }
.lang-tr { display: inline !important; }
html[lang="en"] .lang-en { display: inline !important; }
html[lang="en"] .lang-tr { display: none !important; }

@media (max-width: 900px) {
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: 1fr; }
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-wrap {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 88vw);
    height: 100vh;
    margin: 0;
    padding: 5rem 1rem 1.5rem;
    border: 0;
    border-left: 1px solid var(--line);
    background: var(--ink-2);
    transform: translateX(105%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .nav-wrap.open { transform: translateX(0); }
  .nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .nav > li > a,
  .nav > li > button.has-sub {
    width: 100%;
    justify-content: space-between;
    padding: .85rem .7rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .9rem;
  }
  .dropdown {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: rgba(0,0,0,.2);
    margin: .2rem 0 .5rem;
    padding: .2rem 0 .5rem;
    transition: none;
  }
  .dropdown::before { display: none; }
  .nav > li.open > .dropdown { display: block; }
  .nav > li:hover > .dropdown { display: none; }
  .nav > li.open:hover > .dropdown,
  .nav > li.open > .dropdown { display: block; }
  .header-actions { gap: .35rem; }
  .header-actions .btn-red { padding: .55rem .85rem; font-size: .78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: .65rem .9rem; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
