:root {
  color-scheme: light;
  --ink: #102018;
  --muted: #607268;
  --line: #dce9e1;
  --surface: #f2f7f1;
  --white: #ffffff;
  --green: #00a86b;
  --green-dark: #063f2a;
  --lime: #d9ff2f;
  --blue: #2667ff;
  --orange: #ff6b35;
  --coral: #ff3d6e;
  --court: #16c784;
  --night: #071b15;
  --shadow: 0 22px 60px rgba(12, 34, 25, .14);
  --shadow-hover: 0 28px 70px rgba(8, 31, 22, .20);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 255, 47, .16), transparent 30%),
    linear-gradient(180deg, #f8fff4 0%, var(--surface) 42%, #edf7ff 100%);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(15, 64, 42, .12);
  box-shadow: 0 10px 30px rgba(15, 45, 32, .06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: .2px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  min-width: 0;
}

.brand-name {
  font-size: 16px;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(38, 103, 255, .88) 0 18%, transparent 18% 82%, rgba(255, 61, 110, .9) 82%),
    radial-gradient(circle at 70% 28%, rgba(217, 255, 47, .34), transparent 30%),
    linear-gradient(135deg, #00a86b, #08765a 58%, #0e4f77);
  box-shadow: 0 10px 22px rgba(0, 168, 107, .28);
  clip-path: polygon(25% 4%, 75% 4%, 98% 50%, 75% 96%, 25% 96%, 2% 50%);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 8px;
  clip-path: polygon(25% 4%, 75% 4%, 98% 50%, 75% 96%, 25% 96%, 2% 50%);
}

.brand-paddle {
  position: absolute;
  left: 9px;
  top: 8px;
  width: 16px;
  height: 21px;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 11px 11px 9px 9px;
  background: rgba(255, 255, 255, .16);
  transform: rotate(-24deg);
}

.brand-paddle::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -10px;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
}

.brand-ball {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 4px 4px, rgba(6, 63, 42, .50) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 10px 5px, rgba(6, 63, 42, .38) 0 1.3px, transparent 1.7px),
    radial-gradient(circle at 7px 10px, rgba(6, 63, 42, .42) 0 1.4px, transparent 1.8px),
    linear-gradient(145deg, var(--lime), #f2ff74);
  box-shadow: 0 3px 8px rgba(6, 63, 42, .22);
}

.brand-trail {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  transform: rotate(-28deg);
}

.brand-trail::before,
.brand-trail::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 12px;
  height: 3px;
  border-radius: inherit;
  background: rgba(255, 255, 255, .58);
}

.brand-trail::before {
  top: -6px;
  transform: translateX(-5px);
}

.brand-trail::after {
  top: 6px;
  transform: translateX(4px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #42564b;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 24px rgba(6, 63, 42, .08);
}

.language-switch button {
  position: relative;
  z-index: 1;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.language-switch button.active {
  background:
    radial-gradient(circle at 10px 10px, rgba(6, 63, 42, .42) 0 2px, transparent 2.7px),
    radial-gradient(circle at 24px 10px, rgba(6, 63, 42, .34) 0 2px, transparent 2.7px),
    radial-gradient(circle at 11px 24px, rgba(6, 63, 42, .30) 0 2px, transparent 2.7px),
    radial-gradient(circle at 24px 24px, rgba(6, 63, 42, .36) 0 2px, transparent 2.7px),
    linear-gradient(145deg, #ecff45 0%, var(--lime) 54%, #aee81d 100%);
  color: var(--green-dark);
  box-shadow: 0 7px 14px rgba(6, 63, 42, .18), inset -4px -5px 9px rgba(6, 63, 42, .10), inset 4px 5px 9px rgba(255, 255, 255, .36);
}

.language-switch button:hover {
  transform: scale(1.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #007aee);
  color: white;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(0, 130, 104, .26);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 130, 104, .32);
  filter: saturate(1.06);
}

.button.secondary {
  background: rgba(255, 255, 255, .9);
  color: var(--green-dark);
  border: 1px solid rgba(6, 63, 42, .14);
  box-shadow: none;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(115deg, rgba(248, 255, 244, .98) 0%, rgba(248, 255, 244, .86) 42%, rgba(248, 255, 244, .12) 100%),
    linear-gradient(180deg, rgba(6, 63, 42, .10), rgba(38, 103, 255, .12)),
    url("/assets/images/pickleball-hero.jpg") center 68%/cover;
  border-bottom: 1px solid rgba(6, 63, 42, .12);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(0, 168, 107, .26);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(6, 63, 42, .08);
}

h1 {
  margin: 18px 0 16px;
  max-width: 780px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p,
.lead {
  max-width: 670px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #405349;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-stats > span > span {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  backdrop-filter: none;
}

.hero-stats strong {
  color: var(--green-dark);
}

.home-visual {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 27, 21, .04), rgba(7, 27, 21, .18)),
    url("/assets/images/pickleball-players.jpg") center 54%/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 18px;
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 14px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 18px 38px rgba(7, 27, 21, .20);
  backdrop-filter: blur(12px);
}

.visual-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.05;
}

.visual-card.main {
  left: 24px;
  right: auto;
  bottom: 20px;
  max-width: 330px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .94);
}

.visual-card.main strong {
  font-size: clamp(24px, 2.7vw, 32px);
}

.visual-card.floating {
  display: none;
  max-width: 178px;
}

.visual-card.floating.one {
  top: 22px;
  left: 24px;
}

.visual-card.floating.two {
  top: 22px;
  right: 24px;
}

.radar-panel,
.panel,
.card,
.login-panel,
.player-panel {
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.card,
.panel,
.club-card,
.benefit,
.step,
.paddle {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover,
.panel:hover,
.club-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 107, .28);
  box-shadow: var(--shadow-hover);
}

.radar-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, .7);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(6, 63, 42, .11);
  font-weight: 850;
  background: linear-gradient(90deg, rgba(217, 255, 47, .20), rgba(38, 103, 255, .08));
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--green);
}

.map {
  position: relative;
  height: 290px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .34) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .34) 1px, transparent 1px),
    linear-gradient(135deg, #16c784, #2667ff);
  background-size: 42px 42px;
  overflow: hidden;
}

.court {
  position: absolute;
  min-width: 132px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 14px 28px rgba(7, 27, 21, .18);
  font-size: 13px;
  font-weight: 800;
}

.court span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.court::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid white;
  box-shadow: 0 0 0 2px rgba(217, 255, 47, .38);
}

.court.one { left: 42px; top: 42px; }
.court.two { right: 38px; top: 78px; }
.court.three { left: 118px; bottom: 40px; }

.panel-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(6, 63, 42, .10);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
}

.session strong { display: block; }
.session small { color: var(--muted); font-weight: 700; }

.tag {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(217, 255, 47, .24);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}

section,
.page {
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
}

.home-actions {
  background: white;
}

.home-actions .section-head {
  margin-bottom: 18px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.action-grid .card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .14), transparent 36%),
    linear-gradient(160deg, var(--night), #05345f 64%, #082117);
  color: white;
}

.home-feature .eyebrow {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  color: var(--lime);
  box-shadow: none;
}

.home-feature p {
  max-width: 540px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.feature-copy .button {
  margin-top: 10px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-cards .card {
  min-height: 190px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
}

.feature-cards .card h3 {
  color: var(--ink);
}

.feature-cards .card .source-link {
  color: #007a54;
}

.home-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .22), transparent 42%),
    #f8fff4;
}

.home-cta h2 {
  max-width: 760px;
}

.home-cta p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 840px;
  margin-bottom: 26px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  text-wrap: balance;
}

.section-head p,
.page p {
  color: var(--muted);
}

.grid,
.feature-grid,
.benefits,
.badge-grid,
.steps,
.page-grid {
  display: grid;
  gap: 16px;
}

.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid,
.benefits,
.page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.badge-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.quick-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-overview .panel {
  min-height: 138px;
  padding: 16px;
}

.quick-overview h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.quick-overview p {
  color: var(--muted);
  font-size: 15px;
}

.quick-overview .source-link {
  margin-top: 14px;
}

.definition-panel {
  max-width: 1120px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .20), transparent 42%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.definition-panel.compact {
  padding: 22px;
}

.definition-panel h2 {
  max-width: 760px;
}

.definition-panel p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
}

.definition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.article-card .source-link {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 640px) minmax(240px, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.honeypot {
  display: none !important;
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.captcha-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: center;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(217, 255, 47, .24);
  color: var(--green-dark);
  font-weight: 850;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

[data-form-status].success,
.success {
  color: #007a4d;
  font-weight: 800;
}

[data-form-status].error,
.error {
  color: #b42318;
  font-weight: 800;
}

.article-meta {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(217, 255, 47, .28);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}

.card,
.panel,
.benefit,
.step {
  padding: 20px;
}

.card h3,
.panel h3,
.benefit strong {
  margin: 0 0 8px;
}

.card p,
.benefit p,
.step p {
  margin: 0;
  color: var(--muted);
}

.search-intent {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(38, 103, 255, .10);
  color: #174ccc;
  font-size: 12px;
  font-weight: 850;
}

.rules-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rule-highlight {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .18), transparent 40%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.rule-highlight strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 18px;
}

.rule-highlight span {
  color: var(--ink);
  font-weight: 850;
}

.rules-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rule-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.score-example {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(217, 255, 47, .24), rgba(38, 103, 255, .08));
}

.score-example strong {
  color: var(--green-dark);
  font-size: 28px;
}

.score-example span {
  color: var(--muted);
  font-weight: 750;
}

.rules-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.rules-table div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-bottom: 1px solid rgba(6, 63, 42, .10);
}

.rules-table div:nth-child(odd) {
  border-right: 1px solid rgba(6, 63, 42, .10);
}

.rules-table div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.rules-table strong {
  color: var(--green-dark);
}

.rules-table span {
  color: var(--muted);
}

.account,
.france {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 255, 248, .96));
  border-top: 1px solid rgba(6, 63, 42, .10);
  border-bottom: 1px solid rgba(6, 63, 42, .10);
}

.account-layout,
.france-layout,
.assistant {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.login-panel { padding: 18px; }
.login-panel p { margin: 0 0 16px; color: var(--muted); }

.social-logins {
  display: grid;
  gap: 10px;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 103, 255, .35);
}

.social-button span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(38, 103, 255, .10);
  color: var(--blue);
  font-weight: 950;
}

.login-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.player-panel { overflow: hidden; }

.player-top {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .12), transparent 40%),
    linear-gradient(135deg, var(--night), #073b69);
  color: white;
}

.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #8cffc2);
  color: var(--green-dark);
  font-weight: 950;
  font-size: 20px;
}

.player-top p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .72);
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216, 243, 95, .18);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.benefits { padding: 16px; }
.benefit {
  border: 1px solid rgba(6, 63, 42, .10);
  border-radius: 10px;
  background: linear-gradient(180deg, white, #f6fbf8);
}

.badges { padding: 0 16px 16px; }
.badges h3 { margin: 0 0 10px; }

.badge {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(6, 63, 42, .10);
  border-radius: 10px;
  background: white;
  text-align: center;
}

.badge.locked {
  color: var(--muted);
  background: #f5f7f5;
  filter: grayscale(.55);
}

.badge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #82ffc0);
  color: var(--green-dark);
  font-weight: 950;
}

.source-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: #007a54;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.club-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.club-actions .source-link.primary {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 168, 107, .12);
  color: var(--green-dark);
  text-decoration: none;
}

.club-actions .source-link.correction {
  color: #5d6a60;
}

.directory-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.map-shell {
  overflow: hidden;
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.map-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(6, 63, 42, .10);
  background:
    linear-gradient(90deg, rgba(217, 255, 47, .18), rgba(38, 103, 255, .07)),
    rgba(255, 255, 255, .88);
}

.map-tools input,
.map-tools select {
  margin-bottom: 0;
}

.map-checkbox {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 0 12px;
  border: 1px solid rgba(6, 63, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  user-select: none;
}

.map-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(6, 63, 42, .10);
  background: rgba(255, 255, 255, .76);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 3px 7px rgba(6, 63, 42, .18);
}

.map-dot.club {
  background: var(--lime);
}

.map-dot.coach {
  border-radius: 4px;
  background: #f02d7d;
  transform: rotate(45deg);
}

.club-map {
  min-height: 560px;
  background: #e9f4ed;
  z-index: 1;
}

.map-marker {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 168, 107, .18);
}

.map-marker span {
  width: 18px;
  height: 18px;
  border: 3px solid white;
  border-radius: 50%;
  background:
    radial-gradient(circle at 6px 6px, rgba(6, 63, 42, .42) 0 1.6px, transparent 2px),
    radial-gradient(circle at 12px 7px, rgba(6, 63, 42, .36) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 9px 13px, rgba(6, 63, 42, .38) 0 1.5px, transparent 1.9px),
    var(--lime);
  box-shadow: 0 7px 14px rgba(6, 63, 42, .22);
}

.map-marker.coach span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 6px 6px, rgba(255, 255, 255, .46) 0 1.6px, transparent 2px),
    radial-gradient(circle at 14px 7px, rgba(255, 255, 255, .38) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 10px 14px, rgba(255, 255, 255, .42) 0 1.5px, transparent 1.9px),
    #f02d7d;
  box-shadow: 0 8px 16px rgba(240, 45, 125, .34);
  transform: rotate(45deg);
}

.map-marker.coach {
  background: rgba(240, 45, 125, .20);
}

.map-popup {
  display: grid;
  gap: 5px;
  min-width: 190px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.map-popup strong {
  color: var(--green-dark);
  font-size: 15px;
}

.map-popup span,
.map-popup small {
  color: var(--muted);
}

.map-popup a {
  width: fit-content;
  margin-top: 4px;
  color: #007a54;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-tools input,
.directory-tools select {
  margin-bottom: 0;
}

.directory-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.club-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.club-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 255, 250, .96));
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.club-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.club-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.club-card .club-meta {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.directory-more {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(6, 63, 42, .20);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, .76);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 255, 47, .28), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 255, 250, .96));
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.product-card.featured {
  border-color: rgba(0, 168, 107, .28);
  box-shadow: 0 18px 42px rgba(0, 168, 107, .16);
}

.product-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: .98;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.product-card li {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.product-card .affiliate {
  width: fit-content;
  margin-top: auto;
}

.tournament-list {
  display: grid;
  gap: 14px;
}

.tournament-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

.tournament-card h2 {
  margin: 8px 0 6px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
}

.tournament-card p {
  margin: 0;
  color: var(--muted);
}

.tournament-card.contribution {
  border-style: dashed;
  background:
    radial-gradient(circle at 92% 10%, rgba(217, 255, 47, .24), transparent 28%),
    rgba(255, 255, 255, .94);
}

.tournament-date {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(6, 63, 42, .06);
  color: var(--green-dark);
}

.tournament-date span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tournament-date strong {
  font-size: 18px;
  line-height: 1.05;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-badge.upcoming {
  background: rgba(0, 168, 107, .13);
  color: #006b45;
}

.status-badge.past {
  background: rgba(96, 114, 104, .14);
  color: #506158;
}

.status-badge.tbc {
  background: rgba(255, 107, 53, .14);
  color: #a5451e;
}

.quiz {
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
}

label {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

select,
input,
textarea {
  width: 100%;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 1px solid rgba(6, 63, 42, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font: inherit;
}

select:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(38, 103, 255, .14);
  border-color: rgba(38, 103, 255, .45);
}

textarea {
  min-height: 110px;
  padding-top: 10px;
}

.recommendation {
  min-height: 100%;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 45, 32, .08);
  overflow: hidden;
}

.rec-top {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .13), transparent 36%),
    linear-gradient(135deg, var(--night), #073b69);
  color: white;
}

.rec-top p { margin: 6px 0 0; color: rgba(255, 255, 255, .76); }

.paddles {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.paddle {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(6, 63, 42, .11);
  border-radius: 10px;
  background: white;
}

.paddle-art {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, .75) 0 2px, transparent 2.5px),
    radial-gradient(circle at 28px 14px, rgba(255, 255, 255, .62) 0 1.8px, transparent 2.3px),
    radial-gradient(circle at 20px 29px, rgba(255, 255, 255, .68) 0 2px, transparent 2.5px),
    linear-gradient(135deg, var(--blue), var(--coral));
  clip-path: polygon(25% 4%, 75% 4%, 98% 50%, 75% 96%, 25% 96%, 2% 50%);
  position: relative;
  margin: auto;
  box-shadow: 0 10px 18px rgba(38, 103, 255, .18);
}

.paddle-art::after {
  content: none;
}

.paddle h3 { margin: 0 0 4px; font-size: 18px; }
.paddle p { margin: 0; color: var(--muted); font-size: 14px; }

.affiliate {
  white-space: nowrap;
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.model {
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .12), transparent 32%),
    linear-gradient(160deg, var(--night), #052b4f 62%, #081f18);
  color: white;
}

.model .section-head p { color: rgba(255, 255, 255, .72); }

.step {
  border: 1px solid rgba(6, 63, 42, .10);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(15, 45, 32, .06);
}

.step strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.model .step {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.model .step strong { color: var(--lime); }

.footer {
  display: grid;
  gap: 14px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  color: var(--muted);
  border-top: 1px solid rgba(6, 63, 42, .10);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  padding: clamp(26px, 4vw, 44px) clamp(18px, 4vw, 56px) clamp(24px, 3.5vw, 38px);
  background:
    linear-gradient(135deg, rgba(217, 255, 47, .18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 249, 244, .96));
  border-bottom: 1px solid rgba(6, 63, 42, .10);
}

.page-hero h1 {
  max-width: 980px;
  margin: 12px 0 10px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .96;
}

.page-hero .lead {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(17px, 1.5vw, 20px);
}

.page-hero + section,
.page-hero + .page {
  padding-top: clamp(26px, 4vw, 44px);
}

.notice {
  padding: 14px;
  border: 1px solid #f4d29d;
  border-radius: 8px;
  background: #fff8ed;
  color: #6d481b;
}

.cookie-banner {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 40;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(6, 63, 42, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 70px rgba(7, 27, 21, .22);
  backdrop-filter: blur(18px);
}

.cookie-main p {
  margin: 10px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-options {
  display: none;
  grid-column: 1 / -1;
  gap: 10px;
}

.cookie-options.open {
  display: grid;
}

.cookie-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(6, 63, 42, .10);
  border-radius: 10px;
  background: rgba(248, 255, 244, .88);
}

.cookie-option input {
  margin-top: 4px;
  accent-color: var(--green);
}

.cookie-option.disabled {
  opacity: .82;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 650;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.cookie-save {
  display: none;
}

.cookie-save.show {
  display: inline-flex;
}

.cookie-manage {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 35;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(6, 63, 42, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-dark);
  box-shadow: 0 10px 26px rgba(7, 27, 21, .12);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .home-feature,
  .assistant,
  .account-layout,
  .france-layout {
    grid-template-columns: 1fr;
  }

  .grid,
  .action-grid,
  .steps,
  .product-grid,
  .feature-grid,
  .feature-cards,
  .benefits,
  .page-grid,
  .article-grid,
  .contact-layout,
  .quick-overview,
  .rules-summary,
  .rules-layout,
  .club-list {
    grid-template-columns: 1fr 1fr;
  }

  .directory-tools,
  .map-tools { grid-template-columns: 1fr; }
  .club-map { min-height: 460px; }
  .tournament-card { grid-template-columns: 1fr; }

  .badge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .nav {
    order: 3;
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; }
}

@media (max-width: 640px) {
  .grid,
  .action-grid,
  .steps,
  .product-grid,
  .feature-grid,
  .feature-cards,
  .benefits,
  .badge-grid,
  .page-grid,
  .article-grid,
  .contact-layout,
  .quick-overview,
  .rules-summary,
  .rules-layout,
  .rules-table,
  .club-list {
    grid-template-columns: 1fr;
  }

  .rules-table div,
  .rules-table div:nth-child(odd) {
    border-right: 0;
  }

  .rules-table div:nth-last-child(2) {
    border-bottom: 1px solid rgba(6, 63, 42, .10);
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .top-actions .button { display: none; }
  .cookie-card {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .button {
    flex: 1 1 140px;
  }
  .home-visual { min-height: 360px; }
  .visual-card.floating { display: none; }
  .player-top { grid-template-columns: 58px 1fr; }
  .status-pill { grid-column: 1 / -1; width: fit-content; }
  .paddle { grid-template-columns: 56px 1fr; }
  .affiliate { grid-column: 1 / -1; text-align: center; }
  .tournament-card .button,
  .tournament-card .source-link { width: fit-content; }
}
