/* =========================
   VARIABLES
========================= */
:root {
  --bg-main: #0f1115;
  --bg-secondary: #10151d;
  --bg-card: #141b25;
  --bg-card-hover: #1a2230;

  --text-main: #e6e9ef;
  --text-muted: #9aa4b2;

  --accent-green: #2ecc71;
  --accent-green-dark: #1e9e57;
  --accent-blue: #3fa9f5;

  --border-soft: rgba(255,255,255,0.55);
}

/* =========================
   GLOBAL
========================= */
body {
  background: var(--bg-main);
  background-color: #0f1115;
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h2 {
  font-size: 20px;
}

h1 {
  font-size: 20px;
}

.paragraph-intro {
  margin-top:1rem!important;
  margin-left:1rem;
  margin-right:1rem;
}

.text-seo {
  color: #9aa4b2;
}

/* =========================
   HEADER / HERO
========================= */
.hero {
  position: relative;
  height: 400px;
  background: url("../img/banner.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,20,0.1),
    rgba(11,15,20,0.9)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
}

.form-header {
  margin-right:auto;
  display: flex;
  gap: 0.6rem;
}

.hero-content {
  height: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 320px;
}

.hero-logo {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-top {
  justify-content: space-between;
  align-items: center;
}

.hero-counter {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e6c76a;
  background: rgba(11, 15, 20, 0.3); /* noir transparent */
  border: 1px solid #e6c76a;
  border-radius: 12px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

/* Masqué sur mobile */
@media (max-width: 768px) {
  .hero-counter {
    display: none;
  }
}



/* =========================
   SECTION TITLE
========================= */
.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================
   SERVER CARD
========================= */
.server-card {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: all 0.25s ease;
  height: 100%;
  cursor:pointer;
}

.server-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.server-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.server-content {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.server-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.server-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   TAGS
========================= */
.server-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.server-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}

/* =========================
   ACTION BUTTONS
========================= */
.server-actions {
  display: flex;
  gap: 0.4rem;
}

.btn-server {
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-main);
  transition: all 0.2s ease;
    font-weight: 500;
  background: rgba(11, 15, 20, 0.3); /* noir transparent */
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.btn-server:hover {
  background: rgba(255,255,255,0.05);
}

.btn-server.green {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.btn-server.blue {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

/* =========================
   FORM
========================= */
.form-card {
  background: var(--bg-secondary);
  border-radius: 14px;
  padding: 2rem;
}

.form-control,
textarea {
  background: var(--bg-card);
  border:none;
  color: var(--text-main);
  border-radius:12px;
}

.form-control::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.form-control:focus,
textarea:focus {
  background: var(--bg-card-hover);
  border-color: var(--accent-green);
  box-shadow: none;
  color: var(--text-main);
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-dark)
  );
  border: none;
  color: #fff;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  padding-left:35px;
  padding-right:35px;
}


/* =========================
   PREMIUM SLOTS
========================= */
.premium-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 220px;
  border: 2px dashed rgba(255, 215, 100, 0.35);
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.15)
  );

  text-align: center;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.premium-slot:hover {
  border-color: #f5c16c;
  background: linear-gradient(
    180deg,
    rgba(245,193,108,0.08),
    rgba(0,0,0,0.25)
  );
  box-shadow: 0 0 0 1px rgba(245,193,108,0.35),
              0 12px 30px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

/* + icon */
.premium-plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Texts */
.premium-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.premium-cta {
  font-size: 0.85rem;
  color: #f5c16c;
}

/* =========================
   SERVER FOOTER (STATUS + VOTES)
========================= */
.server-footer {
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT : ONLINE */
.server-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2ecc71;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.8);
}

/* RIGHT : VOTES */
.server-votes {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #ff5a5f;
}

.server-votes i {
  font-size: 0.85rem;
}

/* =========================
   MODAL
========================= */
/* =========================
   MODAL
========================= */
/* =========================
   MODAL
========================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

/* BASE : Desktop */
.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  z-index: 10001;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  margin: 1rem;
}

/* MOBILE : Plein écran */
@media (max-width: 767px) {
  .modal-box {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
}

.modal-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-contentt {
  padding: 1.2rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.modal-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  word-wrap: break-word;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0,0,0,0.7);
}

.vote-row {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 0.8rem;
}

.vote-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  color: var(--text-main);
  font-size: 0.9rem;
}

.vote-input::placeholder {
  color: var(--text-muted);
}

.vote-input:focus {
  outline: none;
  border-color: var(--accent-green);
  background: var(--bg-card-hover);
}

.vote-row .btn-submit {
  white-space: nowrap;
  padding: 0.75rem 1rem;
}

.vote-success {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  text-align: center;
  font-weight: 600;
}

.vote-already {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  text-align: center;
  font-weight: 600;
}

.footer-hero {
  position: relative;
  background: url("../img/banner.jpg") center / cover no-repeat;
  padding: 2.5rem 0;
  color: #cfd6df;
  font-size: 0.9rem;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,15,20,0.1),
    rgba(11,15,20,0.9)
  );
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Ligne 1 */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 500;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Ligne 2 */
.footer-desc {
  opacity: 0.85;
}

/* Ligne 3 */
.footer-copy {
  font-size: 0.8rem;
  opacity: 0.65;
}

/* =========================
   PREMIUM FORM
========================= */

.premium-slot {
  cursor:pointer;
}

.premium-slot.active {
  border-style: solid;
}

.premium-form {
  padding: 1rem;
}

.premium-select {
  width: 100%;
  background: #0e1014;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.7rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.premium-select:focus {
  outline: none;
  border-color: #f5c16c;
  background: #171a21;
}

.premium-btn {
padding-left:25px;
padding-right:25px;
}

.premium-sponsored {
  position: relative;
}

.premium-sponsored::after {
  content: "★ PREMIUM";
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f5c16c;
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
}

/* =========================
   FLASH MESSAGES
========================= */

.flash-message {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;

  display: flex;
  align-items: center;
  gap: 0.75rem;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  animation: flashFadeIn 0.35s ease;
}

/* Icône */
.flash-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Icône */
.flash-icon2 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Texte */
.flash-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Texte */
.flash-text-annonce {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

/* SUCCESS */
.flash-success {
  border: 1px solid rgba(46, 204, 113, 0.35);
}

.flash-success .flash-icon {
  background: rgba(46, 204, 113, 0.15);
  color: var(--accent-green);
}

.flash-success .flash-text {
  color: var(--accent-green);
}

.flash-success .flash-text-annonce {
  color: var(--text-muted);
}


/* ANNONCE */
.flash-annonce {
  border: none;
}

.flash-annonce .flash-icon {
  background: rgba(88, 101, 242, 0.15);
  color: #5865F2;
}

.flash-annonce .flash-icon2 {
  background: rgba(46, 204, 113, 0.15);
  color: var(--accent-green);
}


.flash-annonce .flash-text {
  color: var(--accent-green);
}

.flash-annonce .flash-text-annonce {
  color: var(--text-muted);
}

/* ERROR */
.flash-error {
  border: 1px solid rgba(231, 76, 60, 0.35);
}

.flash-error .flash-icon {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.flash-error .flash-text {
  color: #e74c3c;
}

/* Animation */
@keyframes flashFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SERVER SEARCH
========================= */
.server-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.server-search i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.server-search input {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.2rem;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  border:none;
}

.server-search input::placeholder {
  color: var(--text-muted);
}

.server-search input:focus {
  outline: none;
  border-color: var(--border-soft);
  background: var(--bg-card-hover);
}

/* =========================
   PAGINATION
========================= */
.servers-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.servers-pagination button {
  background: #141b25;
  border:none;
  color: var(--text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.servers-pagination button:hover {
  background: #1a2230;
}

.servers-pagination button.active {
  border: none;
  color: var(--text-main);
}

/* =========================
   SPONSORED CARD — OVERLAY
   ========================= */

.server-card.premium-sponsored {
  position: relative;
  padding: 0;
  height: auto;
}

/* Image = base visuelle */
.server-card.premium-sponsored .server-image {
  width: 100%;
  height: 220px; /* hauteur réduite */
  object-fit: cover;
  display: block;
}

/* Gradient de lisibilité (concentré en bas) */
.server-card.premium-sponsored::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 30%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.0) 75%
  );
  pointer-events: none;
}

/* Contenu superposé — FORCÉ EN BAS */
.server-card.premium-sponsored .server-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 0.9rem 1.1rem 1rem;
  z-index: 2;

  background: none;
}

/* Nom du serveur */
.server-card.premium-sponsored .server-name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: -10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Footer (status + votes) */
.server-card.premium-sponsored .server-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Status */
.server-card.premium-sponsored .server-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b8ffb8;
  text-transform: uppercase;
}

/* Point en ligne */
.server-card.premium-sponsored .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff6f;
  box-shadow: 0 0 6px rgba(61,255,111,0.8);
}

/* Votes */
.server-card.premium-sponsored .server-votes {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff5a5f;
}

.server-card.premium-sponsored .server-votes i {
  font-size: 0.9rem;
}

/* =========================
   HYVOTIFIER CARD
========================= */

.hyvotifier-card {
  margin-top: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.15)
  );
  border: 1px solid rgba(63,169,245,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.hyvotifier-header {
  margin-bottom: 1.2rem;
}

.hyvotifier-header h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hyvotifier-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Accent visuel léger à gauche */
.hyvotifier-card {
  position: relative;
}

.hyvotifier-card::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-blue),
    rgba(63,169,245,0.2)
  );
}

/* =========================
   SEO CONTENT BLOCK 
========================= */

/* Container principal du bloc SEO */
.seo-content-block {
    margin: 0 auto;
    padding: 40px 40px;
    background: var(--bg-card); /* #141b25 */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Titres */
.seo-content-block h2 {
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    color: var(--text-main); /* #e6e9ef */
    font-weight: 600;
    font-family: Inter, sans-serif;
}

.seo-content-block h2:first-child {
    margin-top: 0;
}

.seo-content-block h3 {
    font-size: 1.4rem;
    margin: 28px 0 16px 0;
    color: #3fa9f5; /* Votre accent bleu */
    font-weight: 600;
    font-family: Inter, sans-serif;
}

.seo-content-block h4 {
    font-size: 1.15rem;
    margin: 22px 0 12px 0;
    color: #9aa4b2; /* Votre texte muted mais légèrement plus clair */
    font-weight: 600;
}

/* Paragraphes */
.seo-content-block p {
    line-height: 1.8;
    margin: 15px 0;
    color: var(--text-muted); /* #9aa4b2 */
    font-size: 0.95rem;
}

.seo-content-block p strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Listes */
.seo-content-block ul,
.seo-content-block ol {
    margin: 15px 0;
    padding-left: 25px;
    line-height: 1.8;
    color: var(--text-muted);
}

.seo-content-block li {
    margin: 10px 0;
    font-size: 0.95rem;
}

.seo-content-block li strong {
    color: var(--text-main);
}

/* Liens */
.seo-content-block a {
    color: var(--accent-blue); /* #3fa9f5 */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.seo-content-block a:hover {
    color: #5bb8f7;
    text-decoration: underline;
}

/* Table des matières */
.table-of-contents {
    background: rgba(63, 169, 245, 0.08); /* Bleu transparent */
    border-left: 4px solid var(--accent-blue);
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
}

.table-of-contents h3 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.table-of-contents ol {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.table-of-contents li {
    margin: 8px 0;
}

.table-of-contents a {
    color: var(--accent-blue);
    text-decoration: none;
}

.table-of-contents a:hover {
    color: #5bb8f7;
    text-decoration: underline;
}

/* Tableaux */
.seo-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-secondary); /* #10151d */
    border-radius: 12px;
    overflow: hidden;
}

.seo-content-block thead {
    background: rgba(63, 169, 245, 0.1);
}

.seo-content-block th {
    padding: 14px;
    border: 1px solid var(--border-soft);
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.seo-content-block td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.seo-content-block tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.seo-content-block td strong {
    color: var(--text-main);
}

/* Code inline */
.seo-content-block code {
    background: var(--bg-secondary);
    border: 1px solid var(--border-soft);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-family: 'Courier New', monospace;
}

/* Blocs de mise en avant (tips, alertes) */
.seo-content-block .tip-box,
.seo-content-block .alert-box {
    background: rgba(46, 204, 113, 0.08); /* Vert transparent */
    border-left: 4px solid var(--accent-green);
    padding: 16px 18px;
    margin: 25px 0;
    border-radius: 12px;
}

.seo-content-block .tip-box strong,
.seo-content-block .alert-box strong {
    color: var(--accent-green);
    display: block;
    margin-bottom: 8px;
}

.seo-content-block .tip-box p,
.seo-content-block .alert-box p {
    margin: 0;
    color: var(--text-muted);
}

/* Bloc bleu (info) */
.seo-content-block .info-box {
    background: rgba(63, 169, 245, 0.08);
    border-left: 4px solid var(--accent-blue);
    padding: 16px 18px;
    margin: 25px 0;
    border-radius: 12px;
}

.seo-content-block .info-box strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 8px;
}

.seo-content-block .info-box p {
    margin: 0;
    color: var(--text-muted);
}

/* FAQ structurée avec Schema.org */
.seo-content-block .faq-item {
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.seo-content-block .faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(63, 169, 245, 0.3);
}

.seo-content-block .faq-item h4 {
    margin: 0 0 10px 0;
    color: var(--text-main);
    font-size: 1.05rem;
}

.seo-content-block .faq-item p {
    margin: 0;
    color: var(--text-muted);
}

/* Call-to-action final */
.seo-content-block .cta-final {
    background: linear-gradient(135deg, rgba(63, 169, 245, 0.15), rgba(46, 204, 113, 0.1));
    border: 2px solid rgba(63, 169, 245, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0 0 0;
    text-align: center;
}

.seo-content-block .cta-final h3 {
    margin: 0 0 15px 0;
    font-size: 1.6rem;
    color: var(--text-main);
}

.seo-content-block .cta-final p {
    margin: 0 0 20px 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.seo-content-block .cta-final a {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.seo-content-block .cta-final a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(63, 169, 245, 0.3);
    text-decoration: none;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .seo-content-block {
        padding: 25px 15px;
        margin: 40px 0;
        border-radius: 0;
    }

    .seo-content-block h2 {
        font-size: 1.5rem;
    }

    .seo-content-block h3 {
        font-size: 1.2rem;
    }

    .seo-content-block h4 {
        font-size: 1rem;
    }

    .seo-content-block p,
    .seo-content-block li {
        font-size: 0.9rem;
    }

    .table-of-contents {
        padding: 15px;
    }

    /* Tableaux scrollables sur mobile */
    .seo-content-block table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .seo-content-block th,
    .seo-content-block td {
        padding: 10px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cta-final {
        padding: 20px 15px;
    }

    .cta-final h3 {
        font-size: 1.3rem;
    }

    .cta-final p {
        font-size: 0.95rem;
    }
}

/* Animation d'apparition subtile */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-content-block {
    animation: fadeInUp 0.5s ease-out;
}