/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #050505;
  --color-black-soft: #0E0E0E;
  --color-white: #F5F2EA;
  --color-gray-light: #B8B3A7;
  --color-gray-dark: #2A2A2A;
  --color-gold: #B88746;
  --color-gold-hover: #D0A15F;
  --color-copper: #7A4A28;
  
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Film Grain Noise */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Header Centré */
.main-header {
  padding-top: 40px;
  padding-bottom: 20px;
  z-index: 100;
  position: relative;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
  cursor: default;
  position: relative;
}

/* Shiny Gold Text Effect */
.animated-shiny-text {
  background: linear-gradient(to right, #ffffff 20%, var(--color-gold) 40%, var(--color-gold-hover) 60%, #ffffff 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 6s linear infinite;
  text-shadow: 0 0 40px rgba(184, 135, 70, 0.1);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-light);
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 0 64px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: clamp(900px, 75vw, 1100px);
  height: auto;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000000; /* Devient noir pur pour correspondre à l'arrière-plan de la photo */
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: wrapper-fade-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Masque progressif sur le conteneur complet pour fondre l'ensemble dans le fond noir du site */
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
}

@keyframes wrapper-fade-in {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  will-change: transform; /* Force l'accélération matérielle par le GPU */
  animation: cinematic-zoom 24s ease-in-out infinite alternate;
  /* Masque de fusion progressif direct sur la photo pour adoucir ses propres bords */
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 98%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 98%);
}

@keyframes cinematic-zoom {
  0% {
    transform: scale(1.00);
  }
  100% {
    transform: scale(1.07); /* Amplitude augmentée à 7% pour une respiration visible mais élégante */
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-wrapper {
    animation: none;
    opacity: 1;
    filter: none;
  }
  .hero-image {
    animation: none;
    transform: scale(1.00);
  }
}

/* Cinematic Blending Overlays */
.hero-overlay-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Utilise du noir pur #000000 pour fusionner parfaitement avec la photo */
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 80%, #000000 100%);
  pointer-events: none;
}

.hero-overlay-linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  /* Dégradé progressif vers le noir pur #000000 en bas */
  background: linear-gradient(to top, #000000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
}

/* Welcome Phrase */
.welcome-text {
  text-align: center;
  max-width: 800px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray-light);
  margin-top: 40px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* Premium Wix-like Complete Audio Player */
.music-player-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.music-player-wix {
  width: 100%;
  max-width: 900px; /* Largeur de type Wix */
  background: rgba(14, 14, 14, 0.95); /* Fond noir profond solide */
  border: 1px solid rgba(184, 135, 70, 0.35); /* Bordure fine bronze visible */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.music-player-wix:hover {
  border-color: rgba(184, 135, 70, 0.6);
  box-shadow: 0 25px 60px rgba(184, 135, 70, 0.08);
}

.player-top-section {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-cover-large {
  width: 180px; /* Grande pochette */
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.player-cover-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-content-right {
  margin-left: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 180px; /* Alignement parfait avec la hauteur de la pochette */
  justify-content: space-between;
}

/* Ligne Meta & Actions */
.player-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.meta-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-artist {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.track-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.track-album {
  font-size: 14px;
  color: var(--color-gray-light);
  font-style: italic;
  margin-top: 2px;
}

.meta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon-btn {
  background: transparent;
  border: none;
  color: var(--color-gray-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.action-icon-btn svg {
  width: 18px;
  height: 18px;
}

.action-icon-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background-color: rgba(184, 135, 70, 0.05);
}

.cta-single-btn {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-single-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Ligne Commandes & Progression */
.player-controls-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.playback-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.control-btn-wix {
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.control-btn-wix.prev-btn,
.control-btn-wix.next-btn {
  width: 40px;
  height: 40px;
  color: var(--color-gray-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn-wix.prev-btn:hover,
.control-btn-wix.next-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.control-btn-wix svg {
  width: 20px;
  height: 20px;
}

.play-btn-large {
  width: 60px; /* Gros bouton Play circulaire */
  height: 60px;
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
  box-shadow: 0 4px 15px rgba(184, 135, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-large svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.play-btn-large:hover {
  background-color: var(--color-gold-hover);
  transform: scale(1.05);
}

/* Barre de progression */
.progress-bar-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 12px;
}

.time-display {
  font-size: 12px;
  font-family: monospace;
  color: var(--color-gray-light);
  width: 38px;
}

.progress-bar-track {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-gold);
  border-radius: 2px;
}

/* Utilitaires (Volume & Liste) */
.utility-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-btn {
  background: transparent;
  border: none;
  color: var(--color-gray-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease;
}

.utility-btn svg {
  width: 18px;
  height: 18px;
}

.utility-btn:hover {
  color: var(--color-gold);
}

/* Playlist / Tracklist en bas */
.player-bottom-tracklist {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-row {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.track-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
}

.track-row.active {
  background-color: rgba(184, 135, 70, 0.1);
  color: var(--color-gold);
  font-weight: 500;
}

.track-num {
  width: 32px;
  font-weight: 600;
}

.track-name-full {
  flex-grow: 1;
}

.track-length {
  font-family: monospace;
}

/* Instagram Section */
.instagram-feed-section {
  width: 100%;
  max-width: 900px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.instagram-profile-block {
  width: 100%;
  background: rgba(14, 14, 14, 0.2); /* Fond plus fondu dans le noir */
  border: 1px solid rgba(184, 135, 70, 0.06); /* Bordure bronze extrêmement subtile */
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.insta-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Ligne de séparation très discrète */
  padding-bottom: 24px;
}

.insta-avatar-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.insta-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-identity-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.insta-pseudo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insta-pseudo {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
}

.insta-verified-badge {
  color: #3897f0; /* Bleu de certification officiel */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.insta-verified-badge svg {
  width: 100%;
  height: 100%;
}

.insta-stats {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--color-gray-light);
}

.stat-item strong {
  color: var(--color-white);
  font-weight: 600;
}

.insta-action-btn-container {
  flex-shrink: 0;
}

.insta-subscribe-btn {
  display: inline-block;
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.insta-subscribe-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.insta-profile-bio {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.bio-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.bio-text {
  color: var(--color-gray-light);
}

.bio-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: color 0.3s ease;
}

.bio-link:hover {
  color: var(--color-white);
}

.insta-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.insta-post-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

.insta-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.insta-post-overlay svg {
  width: 24px;
  height: 24px;
}

.insta-post-card:hover .insta-post-img {
  transform: scale(1.05);
}

.insta-post-card:hover .insta-post-overlay {
  opacity: 1;
}

.instagram-post--center-subject {
  object-position: 90% center; /* Recadrage fort vers la droite */
  transform: scale(1.12); /* Zoom de base pour éliminer le grand vide à gauche */
}

.insta-post-card:hover .insta-post-img.instagram-post--center-subject {
  transform: scale(1.18); /* Zoom de survol fluide et coordonné */
}

/* Classes spécifiques pour ajuster le cadrage de la grille Instagram */
.instagram-post--top-focus {
  object-position: center top;
}

.instagram-post--face-focus {
  object-position: center 20%;
}

.instagram-post--portrait-focus {
  object-position: center 15%;
}

.instagram-post--post3-focus {
  object-position: center top;
}

.instagram-post--post6-focus {
  object-position: center 10%;
}

.insta-more-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.insta-more-btn {
  display: inline-block;
  background: transparent;
  color: var(--color-gray-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.insta-more-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(184, 135, 70, 0.05);
}

/* Footer */
.main-footer {
  width: 100%;
  background-color: var(--color-black);
  border-top: 1px solid rgba(184, 135, 70, 0.12); /* Ligne de séparation très fine avec touche bronze */
  padding: 60px 20px 40px 20px; /* Padding généreux */
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px; /* Espacement équilibré */
}

.social-link-btn {
  color: var(--color-white);
  opacity: 0.5; /* Opacité par défaut affinée (0.45 à 0.55) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-link-btn svg {
  width: 24px; /* Taille réduite à 24px sur desktop */
  height: 24px;
}

.social-link-btn:hover {
  color: var(--color-gold); /* Hover bronze #B88746 */
  opacity: 1; /* Opacité 1 au survol */
  transform: translateY(-1.5px); /* Translation verticale très subtile */
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-email {
  font-size: 13px; /* Réduit et moins dominant */
  font-weight: 400;
  color: var(--color-gray-light);
  text-decoration: none;
  text-transform: lowercase; /* Moins agressif que les majuscules */
  letter-spacing: 0.08em; /* Letter-spacing réduit pour le premium */
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--color-gold);
}

.footer-copyright {
  font-size: 11px; /* Plus discret */
  color: var(--color-gray-light);
  opacity: 0.35; /* Opacité réduite */
  letter-spacing: 0.02em;
}

/* Smooth Page Load Animation */
body {
  opacity: 0;
  animation: fadeInBody 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBody {
  to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding-top: 24px;
    padding-bottom: 10px; /* Réduit l'espace sous le header */
  }
  
  .header-container {
    gap: 8px; /* Réduit l'espace entre DEBSITO et le menu */
  }
  
  .brand-title {
    font-size: 28px; /* Taille réduite pour éviter d'être compressé ou coupé */
    letter-spacing: 0.06em;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .main-nav ul {
    gap: 12px; /* Respiration du menu sans déborder */
    padding: 4px 0;
  }
  
  .main-nav a {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  
  .hero-container {
    padding: 0 16px; /* Agrandit l'espace utile et réduit les bandes noires */
  }
  
  .image-wrapper {
    height: auto; /* Supprime la hauteur fixe obsolète pour plus de fluidité */
    margin-top: 12px; /* Réduit l'espace entre le menu et l'image */
    max-width: 100%;
  }

  .hero-image {
    max-height: 55vh; /* Augmente la hauteur maximale de l'image du trône */
    object-fit: contain;
  }
  
  .welcome-text {
    font-size: 13px; /* Taille réduite pour plus de discrétion */
    line-height: 1.45;
    text-align: center;
    max-width: 84%; /* Largeur restreinte pour le raffinement */
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px; /* Rapproche la phrase de l'image (de 16px à 10px) */
    margin-bottom: 28px; /* Pousse le lecteur audio vers le bas pour laisser respirer le hero */
    color: rgba(245, 242, 234, 0.7); /* Couleur gris doux (blanc crème à opacité 0.7) */
    padding: 0;
  }
  
  /* Lecteur Mobile Responsive */
  .music-player-wix {
    max-width: 100%;
    height: auto;
    flex-direction: column;
    padding: 18px 16px; /* Réduit le padding global du lecteur */
    gap: 12px; /* Réduit l'espace entre la partie haute et la tracklist */
  }
  
  .player-top-section {
    flex-direction: column;
    align-items: center;
    gap: 14px; /* Réduit l'espace sous la pochette */
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
  }
  
  .player-content-right {
    margin-left: 0;
    height: auto;
    width: 100%;
    gap: 12px; /* Réduit l'espace entre le bouton CTA et les commandes */
    align-items: center;
  }
  
  .player-meta-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; /* Réduit l'espace entre titre et CTA */
  }
  
  .player-controls-row {
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Réduit l'espace entre commandes, timeline et volume */
    width: 100%;
  }
  
  .progress-bar-container {
    width: 100%;
  }
  
  .player-bottom-tracklist {
    padding-top: 8px; /* Réduit l'espace avant la tracklist */
  }
  
  .track-row {
    padding: 6px 12px; /* Rend la liste de morceaux plus compacte */
  }
  
  /* Footer Mobile */
  .social-link-btn svg {
    width: 26px; /* Taille mobile 26px */
    height: 26px;
  }
  
  .footer-social-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Instagram Mobile */
  .instagram-feed-section {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  
  .instagram-profile-block {
    padding: 16px; /* Réduit le padding interne global (précédemment 20px) */
  }
  
  .insta-profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .insta-avatar-wrapper {
    width: 64px;
    height: 64px;
  }
  
  .insta-stats {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }
  
  .insta-action-btn-container {
    width: 100%;
  }
  
  .insta-subscribe-btn {
    width: 100%;
    text-align: center;
  }
  
  .insta-profile-bio {
    padding: 10px 0; /* Réduit le padding vertical de la bio (précédemment 20px 0) */
  }
  
  .insta-posts-grid {
    gap: 8px;
  }
  
  .insta-more-container {
    margin-top: 20px; /* Réduit l'espace avant le bouton Voir plus (précédemment 32px) */
  }
}
