   /* Reset & base styles */
   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }

   html {
     font-size: 100%;
     /* 16px default */
   }

   body {
     font-family: system-ui, -apple-system, sans-serif;
     line-height: 1.3;
     color: #ebe8e8;
     background-color: #33a203;
     min-height: 100vh;
   }

   .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
   }

   /* Header / Navigation */
   header {
     background: #049f06;
     color: #e2e8f0;
     /*border-bottom: 1px solid #e9ecef;*/
     padding: 1rem 0;
     position: sticky;
     top: 0;
     z-index: 10;
   }

   nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .logo {
     font-size: 3.0rem;
     font-weight: bold;
   }

   /* Main content */
   main {
     padding: 0rem 0;
   }

   main p,
   main ul,
   main ol {
     margin-bottom: 1.0rem;
   }

   main ul,
   main ol {
     padding-left: 1.5rem;
     /* indentation des puces */
     margin-left: 0;
     /* on enlève tout décalage gauche parasite */
   }

   main li {
     margin-bottom: 0.5rem;
   }

   h1 {
     font-size: clamp(1.5rem, 3vw, 2.0rem);
     margin-top: 1.0rem;
     margin-bottom: 0rem;
     line-height: 1.1;
   }

   .no-blue-link {
     color: inherit;
     /* or #333, inherit, whatever you want */
     text-decoration: none;
   }

   /* Social buttons */
   .social-links {
     text-align: center;
     margin: 4rem 0 2rem;
   }

   .social-links h2 {
     font-size: 1.4rem;
     margin-bottom: 1.5rem;
     color: #444;
   }

   .social-buttons {
     display: flex;
     justify-content: center;
     gap: 1.8rem;
     /* un peu réduit pour 5 boutons */
     flex-wrap: wrap;
   }

   .social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     text-decoration: none;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }

   .social-btn:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   }

   .social-btn svg {
     width: 32px;
     height: 32px;
   }

   /* Couleurs spécifiques */
   .tiktok {
     background: #000;
     color: #fff;
   }

   .instagram {
     background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
     color: #fff;
   }

   .youtube {
     background: #ff0000;
     color: #fff;
   }

   .whatsapp {
     background: #25D366;
     color: #fff;
   }

   /* Vert WhatsApp officiel */
   .email {
     background: #0066cc;
     color: #fff;
   }

   /* Responsive images */
   img {
     max-width: 100%;
     height: auto;
     display: block;
   }

   .hero-image {
     text-align: center;
     /*margin: 0 auto 3.5rem;*/
     /* more breathing room below */
     perspective: 800px;
     /* optional subtle 3D feel on hover if you want to add later */
   }

   .hero-image img {
     width: clamp(320px, 60vw, 500px);
     /* adjusted slightly larger min/max for Polaroid feel */
     height: clamp(320px, 60vw, 500);
     object-fit: cover;
     border: 12px solid #ffffff;
     /* thick white Polaroid border */
     border-bottom: 24px solid #ffffff;
     /* extra bottom space like real Polaroid */
     border-radius: 6px;
     /* gentle rounding */
     box-shadow:
       0 4px 12px rgba(0, 0, 0, 0.15),
       /* close contact shadow */
       0 12px 32px rgba(0, 0, 0, 0.12),
       /* medium drop */
       0 24px 48px rgba(0, 0, 0, 0.08);
     /* far soft shadow */
     background-color: #f8f9fa;
     /* subtle bg fallback + slight vintage tint if wanted */
     display: block;
     margin: 0 auto;
     margin-top: 20px;
   }

   footer {
     background: #049f06;
     color: #e2e8f0;
     text-align: center;
     padding: 1.0rem 1rem;
     margin-top: 2rem;
   }

   p {
     margin-top: 1rem;
   }

   footer p {
     margin-top: 0rem;
     font-size: 0.95rem;
     opacity: 1.0;
   }

   #songList {
     font-family: 'Roboto Condensed', Arial, sans-serif;
     font-size: 1.1rem;
     line-height: 1.2;
     max-width: 600px;
     margin-top: 20px;
     padding: 0;
     list-style: none;
   }

   .letter-header {
     font-family: 'Roboto Condensed', Arial, sans-serif;
     font-size: 2.0rem;
     font-weight: 700;
     padding: 0px 0px;
     text-transform: uppercase;
   }

   /* Mobile adjustments */
   @media (max-width: 640px) {
     nav {
       flex-direction: column;
       gap: 1rem;
     }

     .social-buttons {
       gap: 1.4rem;
     }

     .social-btn {
       width: 55px;
       height: 55px;
     }

     .social-btn svg {
       width: 28px;
       height: 28px;
     }
   }