:root { /* ... */
  --muted: #6c757d; /* ← ajoute ça */
}

:root {
      --primary: #0066cc;
      --secondary: #00aaff;
      --accent: #ffdd57;
      --dark: #003049;
      --light: #f8f9fa;
      --success: #28a745;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background-color: var(--light);
      overflow-x: hidden;
    }

    /* Navigation */
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(20px);
      transition: all 0.3s ease;
      padding: 1rem 0;
      -webkit-backdrop-filter: blur(20px);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98) !important;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 0;
    }

    .navbar-brand {
      font-size: 1.8rem;
      color: var(--primary) !important;
      font-weight: 800;
    }

    .navbar-nav .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary) !important;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
    }
    
    /* Fix pour le bouton navbar-toggler mobile */
.navbar-toggler {
  border: none !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.375rem !important;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Sur mobile, assurer que le navbar toggler garde sa couleur normale */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1) !important;
  }
  
  .navbar-toggler:hover,
  .navbar-toggler:focus {
    background-color: rgba(0, 0, 0, 0.05) !important;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    margin-top: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

    .btn-auth {
      background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
      color: white !important;
      border-radius: 25px !important;
      padding: 0.5rem 1.5rem !important;
      font-weight: 600 !important;
    }

    .btn-auth:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
      color: white !important;
    }

    .auth-dropdown {
      border-radius: 15px !important;
      border: none !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
      padding: 1rem !important;
    }

    .auth-dropdown .dropdown-item {
      border-radius: 10px !important;
      padding: 0.8rem 1rem !important;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .auth-dropdown .dropdown-item:hover {
      background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
      color: white !important;
      transform: translateX(5px);
    }

    /* Join section buttons */
    .btn-join {
      border-radius: 25px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .btn-join:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Hero offset for fixed navbar */
    .hero {
      padding-top: 80px;
    }
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Hero section with glassmorphism */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #fff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from { filter: drop-shadow(0 0 20px rgba(255, 221, 87, 0.3)); }
      to { filter: drop-shadow(0 0 30px rgba(255, 221, 87, 0.6)); }
    }

    .hero p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      font-weight: 300;
      opacity: 0;
      animation: slideInUp 1s ease 0.5s forwards;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: slideInUp 1s ease 1s forwards;
    }

    .btn-modern {
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-primary-modern {
      background: linear-gradient(45deg, var(--accent), #ffc107);
      color: var(--dark);
    }

    .btn-primary-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 221, 87, 0.4);
    }

    .btn-outline-modern {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      backdrop-filter: blur(10px);
    }

    .btn-outline-modern:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    /* Floating donation widget */
    .donation-widget {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      z-index: 999;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      width: 200px;
      overflow: hidden;
      -webkit-backdrop-filter: blur(20px);
    }

    .donation-widget.collapsed {
      right: -150px;
      width: 70px;
      padding: 15px;
      border-radius: 50px 0 0 50px;
    }

    .donation-widget:hover:not(.collapsed) {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
    }

    .donation-toggle {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: var(--primary);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .donation-toggle:hover {
      color: var(--secondary);
      transform: scale(1.1);
    }

    .donation-content {
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1;
      transform: translateX(0);
    }

    .donation-widget.collapsed .donation-content {
      opacity: 0;
      transform: translateX(20px);
      pointer-events: none;
    }

    .collapsed-icon {
      display: none;
      text-align: center;
      margin-top: 5px;
    }

    .donation-widget.collapsed .collapsed-icon {
      display: block;
      animation: heartbeat 2s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .donation-amounts {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .amount-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      background: transparent;
      color: var(--primary);
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .amount-btn:hover, .amount-btn.active {
      background: var(--primary);
      color: white;
      transform: scale(1.1);
    }

    .donate-btn {
      width: 100%;
      background: linear-gradient(45deg, var(--success), #20c997);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .donate-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }

    /* Animated counter */
    .counter {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      text-align: center;
      margin: 2rem 0;
    }

    /* Card animations */
    .feature-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    }

    .feature-card:hover::before {
      left: 100%;
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 2rem;
      color: white;
      animation: pulse 2s infinite;
    }

    /* Scroll animations */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Modern section styling */
    .section {
      padding: 5rem 0;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Progress bar animation */
    .progress-bar-animated {
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      animation: progressSlide 2s ease-in-out;
    }

    @keyframes progressSlide {
      from { width: 0; }
      to { width: var(--progress-width); }
    }

    /* Footer with gradient */
    .footer {
      background: linear-gradient(135deg, var(--dark), #001a2e);
      color: white;
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: -50px;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      clip-path: polygon(0 50px, 100% 0, 100% 50px, 0 100px);
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      /* Mobile responsiveness - CORRIGÉ */
@media (max-width: 768px) {
  /* Widget de donation - repositionné pour ne pas gêner */
  .donation-widget {
    position: fixed !important;
    right: 10px !important;
    top: auto !important;
    bottom: 20px !important; /* Placé en bas à droite */
    transform: none !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    padding: 10px !important;
    z-index: 998 !important; /* En dessous de la navbar */
  }
  
  .donation-widget.collapsed {
    right: 10px !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    padding: 10px !important;
    bottom: 20px !important;
  }
  
  /* Cacher le contenu de donation sur mobile par défaut */
  .donation-widget .donation-content {
    display: none !important;
  }
  
  /* Montrer seulement l'icône sur mobile */
  .donation-widget .collapsed-icon {
    display: block !important;
    margin-top: 0 !important;
  }
  
  /* Toggle button caché sur mobile */
  .donation-toggle {
    display: none !important;
  }

  /* Widget agrandi quand cliqué sur mobile */
  .donation-widget.mobile-expanded {
    width: 280px !important;
    height: auto !important;
    border-radius: 20px !important;
    padding: 20px !important;
    bottom: 20px !important;
    right: 10px !important;
  }

  .donation-widget.mobile-expanded .donation-content {
    display: block !important;
  }

  .donation-widget.mobile-expanded .collapsed-icon {
    display: none !important;
  }

  .donation-widget.mobile-expanded .donation-toggle {
    display: block !important;
    color: var(--danger) !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-modern {
    width: 250px;
  }

  /* S'assurer que la navbar a la priorité */
  .navbar {
    z-index: 1050 !important;
  }

  /* Améliorer l'espacement sur mobile */
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 100px;
    min-height: 90vh;
  }

  .section-title {
    font-size: 2.5rem;
  }
}
    }

    @keyframes slideInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    /* Article Header */
    .article-header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 8rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .article-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    }

    .article-header .container {
      position: relative;
      z-index: 2;
    }

    .breadcrumb-modern {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 25px;
      padding: 0.5rem 1.5rem;
      margin-bottom: 2rem;
      display: inline-block;
    }

    .breadcrumb-modern a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .breadcrumb-modern a:hover {
      color: white;
    }

    .breadcrumb-modern .separator {
      margin: 0 0.8rem;
      opacity: 0.6;
    }

    .article-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      opacity: 0.9;
    }

    .category-tag {
      background: var(--accent);
      color: var(--dark);
      padding: 0.3rem 1rem;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Article Content */
    .article-content {
      padding: 4rem 0;
    }

    .article-main {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
    }

    .featured-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 15px;
      margin: 2rem 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .article-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    .article-text h2 {
      color: var(--dark);
      font-weight: 700;
      margin: 2rem 0 1rem;
      font-size: 1.8rem;
    }

    .article-text h3 {
      color: var(--primary);
      font-weight: 600;
      margin: 1.5rem 0 1rem;
      font-size: 1.4rem;
    }

    .article-text p {
      margin-bottom: 1.5rem;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 170, 255, 0.1));
      border-left: 4px solid var(--primary);
      padding: 1.5rem;
      border-radius: 10px;
      margin: 2rem 0;
    }

    .quote-box {
      background: rgba(255, 221, 87, 0.1);
      border-left: 4px solid var(--accent);
      padding: 1.5rem;
      border-radius: 10px;
      margin: 2rem 0;
      font-style: italic;
      font-size: 1.2rem;
      position: relative;
    }

    .quote-box::before {
      content: '"';
      font-size: 4rem;
      color: var(--accent);
      position: absolute;
      top: -10px;
      left: 15px;
      font-family: serif;
    }

    /* Sidebar */
    .sidebar {
      position: sticky;
      top: 100px;
    }

    .sidebar-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }

    .sidebar-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .recent-article {
      display: flex;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid #eee;
      transition: all 0.3s ease;
    }

    .recent-article:last-child {
      border-bottom: none;
    }

    .recent-article:hover {
      background: rgba(0, 102, 204, 0.05);
      border-radius: 10px;
      padding: 1rem;
      margin: 0 -1rem;
    }

    .recent-image {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .recent-content h6 {
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 0.5rem;
    }

    .recent-content small {
      color: var(--muted);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .tag {
      background: rgba(0, 102, 204, 0.1);
      color: var(--primary);
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .tag:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }

    /* Share buttons */
    .share-section {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin: 3rem 0;
      text-align: center;
    }

    .share-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .share-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      color: white;
    }

    .share-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      color: white;
    }

    .share-facebook { background: #1877f2; }
    .share-twitter { background: #1da1f2; }
    .share-linkedin { background: #0077b5; }
    .share-email { background: var(--muted); }

    /* Navigation arrows */
    .article-navigation {
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      margin-top: 3rem;
    }

    .nav-article {
      background: white;
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      flex: 1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-article:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
      text-decoration: none;
    }

    .nav-prev {
      text-align: left;
    }

    .nav-next {
      text-align: right;
      flex-direction: row-reverse;
    }

    .nav-label {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .nav-title {
      font-weight: 600;
      color: var(--dark);
      line-height: 1.3;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .article-header {
        padding: 6rem 0 3rem;
      }

      .article-main {
        padding: 2rem 1.5rem;
      }

      .sidebar {
        position: static;
        margin-top: 2rem;
      }

      .article-meta {
        gap: 1rem;
      }

      .meta-item {
        font-size: 0.9rem;
      }

      .featured-image {
        height: 250px;
        margin: 1.5rem 0;
      }

      .share-buttons {
        gap: 0.5rem;
      }

      .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
      }

      .article-navigation {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.btn-modern:focus-visible,
.amount-btn:focus-visible,
.donate-btn:focus-visible,
.navbar-nav .nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-modern { transition: transform .3s, box-shadow .3s; }
.feature-card { transition: transform .3s, box-shadow .3s; }
.donation-widget { transition: transform .5s, right .5s, opacity .5s; }

.donation-widget { z-index: 1100; }








/* Newsletter Styles - AJOUTER À LA FIN */
.newsletter-form .interests-group {
  max-height: 120px;
  overflow-y: auto;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 0.375rem;
}

.newsletter-form .form-check-sm {
  margin-bottom: 0.25rem;
}

.newsletter-form .form-check-sm .form-check-input {
  margin-top: 0.1rem;
}

/* Modal Styles */
.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success), #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: white;
}

/* Popup Newsletter */
.newsletter-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1000;
  max-width: 350px;
  animation: slideInUp 0.5s ease;
}

/* Messages d'alerte */
.alert-newsletter {
  padding: 0.5rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.alert-newsletter.success {
  background: #d1f2eb;
  color: #0c5460;
  border: 1px solid #b8e6d3;
}

.alert-newsletter.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f1aeb5;
}