.runecraft-footer {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px 60px;
  }

  /* ══ IMAGE DE FOND ══ */
  .rc-bg {
    position: absolute;
    inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    /*
      REMPLACE src PAR TON IMAGE DE FOND :
      src="/assets/img/runecraft-bg.jpg"
    */
  }

  /* Dégradé sombre sur les bords */
  .rc-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.5) 100%);
  }

  /* ══ CONTENU ══ */
  .rc-content {
    position: relative; z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* Logo */
  .rc-logo {
    margin-bottom: 24px;
    animation: rcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
  }
  .rc-logo img {
    height: clamp(36px, 5.8vw, 64px);
    width: auto; display: block;
    /*
      REMPLACE src PAR TON LOGO :
      src="/assets/logo/runecraft-logo.png"
    */
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.15));
  }
  /* Fallback texte si pas d'image */
  .rc-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 10vw, 110px);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(255,255,255,0.2);
    line-height: 1;
  }

  /* Sous-titre */
  .rc-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    animation: rcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
  }

  /* Bouton CTA — style 2XKO : fond sombre + bordure blanche */
  .rc-cta {
    display: inline-flex; align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #fff;
    background: rgba(10,10,10,0.75);
    border: 1.5px solid rgba(255,255,255,0.8);
    padding: 16px 44px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    margin-bottom: 64px;
    animation: rcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
    backdrop-filter: blur(6px);
  }
  .rc-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
  }

  /* Plateforme */
  .rc-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: rcFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s both;
  }
  .rc-platform-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }

  /* Badge PC */
  .rc-pc {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff;
  }
  .rc-pc svg {
    width: clamp(28px, 3.5vw, 40px);
    height: auto;
    fill: #fff;
    opacity: 0.9;
  }

  /* Séparateur vertical style 2XKO */
  .rc-pc-sep {
    display: inline-block;
    width: 1.5px;
    height: clamp(22px, 3vw, 32px);
    background: rgba(255,255,255,0.4);
    margin: 0 4px;
    vertical-align: middle;
  }

  /* ══ BARRE LÉGALE EN BAS ══ */
  .rc-legal {
    position: absolute;
    bottom: 24px; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 40px;
    z-index: 10;
  }
  .rc-legal a, .rc-legal span {
    font-family: 'Barlow', sans-serif;
    font-size: 11px; font-weight: 300;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .rc-legal a:hover { color: rgba(255,255,255,0.6); }
  .rc-legal-sep { opacity: 0.3; }

  @keyframes rcFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 540px) {
    .runecraft-footer { padding: 60px 24px 80px; min-height: 90vh; }
    .rc-cta { padding: 14px 32px; margin-bottom: 48px; }
    .rc-legal { gap: 12px; bottom: 16px; }
  }
