@font-face {
  font-family: "Indonesian";
  src: url("../fonts/Indonesian.woff2") format("woff2"),
       url("../fonts/Indonesian.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "GeosansLight";
  src: url("../fonts/GeosansLight.woff2") format("woff2"),
       url("../fonts/GeosansLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Apalu";
  src: url("../fonts/Apalu.woff2") format("woff2"),
       url("../fonts/Apalu.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --text: #56475c;
  --text-soft: #7a687f;
  --text-strong: #433247;

  --border: #e8dde9;
  --border-strong: #dbcadd;

  --bg-top: #f3edf5;
  --bg-bottom: #f6f1f7;

  --white: #ffffff;

  --brand-1: #4b1f57;
  --brand-2: #87508c;
  --brand-accent: #ff7dbe;

  --shadow-soft: 0 16px 40px rgba(70, 31, 75, 0.10);
  --shadow-card: 0 18px 50px rgba(58, 24, 63, 0.10);
  --shadow-card-hover: 0 20px 48px rgba(58, 24, 63, 0.14);

  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 900px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "GeosansLight", sans-serif;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #351740;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* HERO */

.hero {
	position: relative;
	min-height: 105svh;
	overflow: hidden;
	z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.76)),
    linear-gradient(to right, rgba(80,30,80,0.30), rgba(120,60,120,0.18));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 25, 0) 0%,
    rgba(20, 10, 25, 0.55) 58%,
    var(--bg-bottom) 100%
  );
  z-index: 1;
}

.hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  transition: color 0.18s ease;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: #ffffff;
}

.lang-switch a.is-active,
.lang-switch a[aria-current="page"] {
  color: var(--brand-accent);
  font-weight: 600;
}

.lang-switch span {
  color: rgba(255,255,255,0.45);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 20px 160px;
}

.hero__signature {
  margin: 0;
  font-family: "Indonesian", cursive;
  font-size: clamp(2.5rem, 7vw, 3rem);
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
  font-weight: normal;
}

.hero__subtitle {
  margin-top: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero__subtitle span {
  color: #ff82c3;
}

.hero__intro {
  margin: 22px auto 0;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  text-wrap: balance;
}

/* CARD */

.card-wrap {
	position: relative;
	z-index: 3;
	max-width: var(--container);
	margin: -50svh auto 0;
	padding: 0 20px 40px;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f6eff6 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 30px 20px;
}

.card__lead {
  margin: 0 0 20px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  text-wrap: balance;
}

.card__actions {
  display: grid;
  gap: 14px;
}

.action {
  display: block;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-card-hover);
}

.action--primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  border-color: rgba(95, 45, 102, 0.35);
}

.action--primary:hover,
.action--primary:focus-visible {
  background: linear-gradient(135deg, #44204f, #804a86);
  border-color: rgba(95, 45, 102, 0.55);
}

.action__title {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
}

.action__text {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 6px;
  opacity: 0.88;
}

/* EDITORIAL */

.editorial {
	max-width: var(--container);
	margin: 140px auto 60px;
	padding: 0 24px;
	text-align: center;
}

.editorial__title {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 5px;
  color: #b29ab7;
}

.editorial p {
  margin: 0 auto;
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* GALLERY */

.maudulations-gallery {
  max-width: var(--container);
  margin: 22px auto 70px;
  padding: 0 20px;
}

.maudulations-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.maudulation-card:nth-child(1) {
  grid-row: 1 / span 2;
}

.maudulation-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.maudulation-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.maudulation-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,239,246,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.maudulation-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}

.maudulation-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maudulation-card:nth-child(1) .maudulation-card__media img {
  aspect-ratio: 3 / 4;
}

.maudulation-card:nth-child(2) .maudulation-card__media img,
.maudulation-card:nth-child(3) .maudulation-card__media img {
  aspect-ratio: 3 / 2;
}

.maudulation-card__body {
  padding: 14px 14px 16px;
}

.maudulation-card__kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b29ab7;
}

.maudulation-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-strong);
  font-weight: 600;
}

.maudulation-card__text {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5f5066;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .maudulations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .maudulation-card:nth-child(1),
  .maudulation-card:nth-child(2),
  .maudulation-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .maudulation-card:nth-child(1) .maudulation-card__media img,
  .maudulation-card:nth-child(2) .maudulation-card__media img,
  .maudulation-card:nth-child(3) .maudulation-card__media img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 500px;
  }

  .hero__topbar {
    padding: 18px 16px 0;
  }

  .lang-switch {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero__content {
    padding: 110px 20px 140px;
  }

  .hero__intro {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .card-wrap {
    margin: -120px auto 0;
    padding: 0 14px 30px;
  }

  .card {
    padding: 20px 16px;
    border-radius: 28px;
  }

  .card__lead {
    font-size: 0.98rem;
  }

  .editorial {
    margin: 26px auto 44px;
    padding: 0 18px;
  }

  .editorial__title {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }

  .editorial p {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .maudulations-gallery {
    padding: 0 14px;
    margin-bottom: 50px;
  }
}

/* =========================================================
   EXPLORER PAGE
========================================================= */

.page--explorer {
  padding-bottom: 60px;
}

.explorer-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.explorer-hero__media {
  position: absolute;
  inset: 0;
}

.explorer-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.explorer-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 10, 25, 0.18) 0%, rgba(20, 10, 25, 0.36) 35%, rgba(20, 10, 25, 0.88) 100%),
    linear-gradient(to right, rgba(75, 31, 87, 0.24) 0%, rgba(135, 80, 140, 0.10) 100%);
}

.explorer-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 20px 28px;
  text-align: center;
}

.explorer-hero__title {
  margin: 0;
  font-family: "Apalu", cursive;
  font-size: clamp(2.3rem, 6vw, 3.3rem);
  line-height: 1.05;
  color: #fff;
  font-weight: normal;
  text-shadow: 0 4px 16px rgba(0,0,0,0.20);
}

.explorer-hero__intro {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  text-wrap: balance;
}

.explorer-hero__cta {
  margin: 22px auto 0;
  max-width: 620px;
  padding: 20px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,239,246,0.98) 100%);
  border: 1px solid rgba(232, 221, 233, 0.95);
  box-shadow: 0 18px 45px rgba(58, 24, 63, 0.16);
}

.cta-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #433247;
  font-weight: 600;
}

.cta-text {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #6f5b76;
}

.cta-warning {
  margin: 12px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7fa0;
}

/* cartes liens */

.explorer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.explorer-link-card {
  display: block;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.explorer-link-card:hover,
.explorer-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}

.explorer-link-card__title {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--text-strong);
}

.explorer-link-card__text {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 6px;
  color: var(--text-soft);
}

.explorer-link-card--primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-color: rgba(95, 45, 102, 0.35);
}

.explorer-link-card--primary:hover,
.explorer-link-card--primary:focus-visible {
  background: linear-gradient(135deg, #44204f, #804a86);
  border-color: rgba(95, 45, 102, 0.55);
}

.explorer-link-card--primary .explorer-link-card__title,
.explorer-link-card--primary .explorer-link-card__text {
  color: #fff;
}

.explorer-link-card--primary .explorer-link-card__text {
  opacity: 0.88;
}

.explorer-content {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 0 20px;
}

.explorer-box {
  padding: 28px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f4eef6 100%);
  border: 1px solid #e6dbe8;
  box-shadow: 0 18px 45px rgba(80, 40, 90, 0.08);
}

.explorer-box h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3f2b45;
}

.explorer-box p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #6f5b76;
}


/* BASE */
.explorer-link-card {
  border-radius: 14px;
  padding: 16px;
  display: block;
  text-decoration: none;
  transition: 0.2s ease;
}

/* OnlyFans */
.explorer-link-card--of {
  background: linear-gradient(135deg, #00aff0, #008cc4);
  color: #fff;
}

/* OnlyFans Free (plus soft) */
.explorer-link-card--of-free {
  background: linear-gradient(135deg, #cfefff, #a6e0ff);
  color: #003a55;
}

/* MYM */
.explorer-link-card--mym {
  background: linear-gradient(135deg, #1a1a1a, #000000);
  color: #fff;
}

/* Club perso (ton univers) */
.explorer-link-card--club {
  background: linear-gradient(135deg, #7a3e7f, #4b2454);
  color: #fff;
}

/* TEXTE */
.explorer-link-card span {
  display: block;
}

.explorer-link-card span:first-child {
  font-weight: 600;
  font-size: 1.1rem;
}

.explorer-link-card span:last-child {
  font-size: 1rem;
  opacity: 0.9;
}

/* HOVER */
.explorer-link-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .explorer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .explorer-hero {
    min-height: 100svh;
  }

  .explorer-hero__content {
    padding: 92px 14px 18px;
  }

  .explorer-hero__title {
    font-size: 3.2rem;
  }

  .explorer-hero__intro {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .explorer-hero__cta {
    margin-top: 18px;
    padding: 18px 14px;
    border-radius: 24px;
  }

  .cta-title {
    font-size: 1rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .explorer-content {
    margin-top: 18px;
    padding: 0 14px;
  }

  .explorer-box {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .explorer-box h2 {
    font-size: 1.22rem;
  }
}

.explorer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.explorer-stat {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.explorer-stat__value {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text-strong);
}

.explorer-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.explorer-single-cta {
  display: inline-block;
  width: 100%;
  margin-top: 16px;
  padding: 15px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 14px 35px rgba(70, 30, 80, 0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.explorer-single-cta:hover,
.explorer-single-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(70, 30, 80, 0.20);
}

.explorer-box__extra {
  margin-top: 14px !important;
}

@media (max-width: 760px) {
  .explorer-stats {
    gap: 10px;
    margin-bottom: 16px;
  }

  .explorer-stat {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .explorer-stat__value {
    font-size: 1.2rem;
  }

  .explorer-stat__label {
    font-size: 0.75rem;
  }
}

/* =========================================================
   LEGAL PAGE
========================================================= */

.page--legal {
  padding-bottom: 60px;
}

.legal-topbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 20px 0;
}

.page--legal .lang-switch {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.page--legal .lang-switch a {
  color: var(--text-soft);
}

.page--legal .lang-switch a:hover,
.page--legal .lang-switch a:focus-visible {
  color: var(--text-strong);
}

.page--legal .lang-switch a.is-active,
.page--legal .lang-switch a[aria-current="page"] {
  color: var(--brand-2);
}

.page--legal .lang-switch span {
  color: #b8a7bc;
}

.legal-wrap {
  max-width: var(--container);
  margin: 18px auto 0;
  padding: 0 20px;
}

.legal-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6eff6 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 30px 22px;
}

.legal-header {
  text-align: center;
  margin-bottom: 26px;
}

.legal-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: var(--text-strong);
  font-weight: 600;
}

.legal-intro {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
  text-wrap: balance;
}

.legal-section + .legal-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text-strong);
  font-weight: 600;
}

.legal-section p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.legal-section p + p {
  margin-top: 10px;
}

.legal-actions {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .legal-topbar {
    padding: 18px 14px 0;
  }

  .legal-wrap {
    padding: 0 14px;
    margin-top: 14px;
  }

  .legal-card {
    padding: 24px 16px;
    border-radius: 28px;
  }

  .legal-header {
    margin-bottom: 22px;
  }

  .legal-intro {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .legal-section + .legal-section {
    margin-top: 20px;
    padding-top: 20px;
  }

  .legal-section h2 {
    font-size: 1rem;
  }

  .legal-section p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .legal-actions {
    margin-top: 24px;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    margin-top: -30px;
  }

.action {
	padding: 10px 16px 10px 16px;
}
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: 60px;
  padding: 26px 20px 34px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.site-footer__nav a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--text-strong);
}

.site-footer__meta {
  font-size: 0.75rem;
  color: #9b8da3;
}

/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.social-link-card:hover,
.social-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-card-hover);
}

.social-link-card__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 28px;
}

.social-link-card__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-card__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-link-card__text {
  display: flex;
  align-items: center;
  min-height: 28px;
}

.social-link-card__title {
  display: block;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-strong);
}

/* Variante secondaire si tu veux la garder */
.social-link-card--secondary {
  background: rgba(255,255,255,0.78);
}

/* =========================
   REDIRECT PAGE
========================= */

.page--redirect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f3edf5 0%, #f6f1f7 100%);
}

.redirect {
  width: 100%;
  padding: 20px;
}

.redirect__box {
  max-width: 420px;
  margin: auto;
  padding: 36px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6eff6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.redirect__box h1 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: #3c2b40;
}

.redirect__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6e5b73;
  margin-bottom: 24px;
}

.redirect__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.redirect__fallback {
  font-size: 0.8rem;
  color: #9a8aa0;
}

.redirect__fallback a {
  color: #6c3c72;
  text-decoration: none;
}

.redirect__fallback a:hover {
  text-decoration: underline;
}