/* ==========================================================================
   IMPORTS E VARIABILI BASE
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
   @import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');
   
   :root {
     /* Colors */
     --neon-pink: #ff2a6d;
     --neon-purple: #d300c5;
     --neon-blue: #00f7ff;
     --cyber-yellow: #ffd452;
     --mint-green: #05ffa1;
     
     /* Background gradients */
     --bg-gradient: linear-gradient(135deg, #1a0321 0%, #050b30 100%);
     --glass-gradient: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     
     /* Glassmorphism */
     --glass-bg: rgba(20, 20, 40, 0.7);
     --glass-border: rgba(255, 255, 255, 0.08);
     --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
     --glass-blur: blur(20px);
     
     /* Borders & shadows */
     --border-light: 1px solid rgba(255, 255, 255, 0.1);
     --glow-blue: 0 0 15px rgba(0, 247, 255, 0.5);
     
     /* Typography */
     --font-main: 'Space Grotesk', sans-serif;
     --font-accent: 'Clash Display', sans-serif;
     --font-mono: 'JetBrains Mono', monospace;
     
     /* Layout */
     --max-width: 1180px;
     --radius-sm: 8px;
     --radius-md: 16px;
     --radius-lg: 24px;
     
     /* Blog variables */
     --blog-text-dark: white;
     --blog-text-secondary: rgba(255, 255, 255, 0.8);
     --blog-border-color: var(--border-light);
     --blog-white: var(--glass-bg);
     --blog-light-bg: rgba(255, 255, 255, 0.05);
   }
   
   /* ==========================================================================
      RESET BASE
      ========================================================================== */
   
   *, *::before, *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
   }
   
   html {
     font-size: 16px;
     scroll-behavior: smooth;
     height: 100%;
   }
   
   body {
     font-family: var(--font-main);
     background: var(--bg-gradient);
     color: white;
     line-height: 1.6;
     min-height: 100vh;
     overflow-x: hidden;
     background-attachment: fixed;
     position: relative;
   }
   
   body::before {
     content: "";
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('/assets/images/noise.svg');
     opacity: 0.03;
     pointer-events: none;
     z-index: -1;
   }
   
   a {
     color: inherit;
     text-decoration: none;
   }
   
   ul {
     list-style: none;
   }
   
   img {
     max-width: 100%;
     display: block;
   }
   
   figure {
     margin: 0;
     padding: 0;
   }
   
   time {
     display: inline-block;
   }
   
   .container {
     width: 88%;
     max-width: var(--max-width);
     margin: 0 auto;
     position: relative;
   }
   
   /* ==========================================================================
      SCREEN READER ONLY TEXT
      ========================================================================== */
   
   .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
   }
   
   /* ==========================================================================
      ENHANCED ARIA SUPPORT
      ========================================================================== */
   
   [hidden] {
     display: none !important;
   }
   
   [aria-current="page"] {
     color: var(--neon-blue);
     font-weight: 600;
   }
   
   /* ==========================================================================
      HEADER BASE
      ========================================================================== */
   
   header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 1rem 0;
     backdrop-filter: var(--glass-blur);
     -webkit-backdrop-filter: var(--glass-blur);
     background: rgba(10, 10, 25, 0.8);
     border-bottom: var(--border-light);
     transition: all 0.3s ease;
   }
   
   header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   
   .logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
   }
   
   .logo i {
     color: var(--neon-blue);
     font-size: 1.75rem;
   }
   
   #site-title {
     font-size: 1.5rem;
     margin-bottom: 0;
     font-family: var(--font-accent);
     font-weight: 700;
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
   }
   
   .site-logo, #site-logo {
     font-size: 1.5rem;
     margin-bottom: 0;
     font-family: var(--font-accent);
     font-weight: 700;
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
     cursor: pointer;
   }
   
   .header-controls {
     display: flex;
     align-items: center;
     gap: 1.25rem;
   }
   
   .language-dropdown {
     position: relative;
   }
   
   #current-language {
     background: rgba(255, 255, 255, 0.05);
     color: white;
     border: var(--border-light);
     border-radius: var(--radius-sm);
     padding: 0.6rem 1.25rem;
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
   }
   
   #current-language::after {
     content: '\f078';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     font-size: 0.7rem;
     margin-left: auto;
   }
   
   #current-language[aria-expanded="true"]::after {
     content: '\f077';
   }
   
   .language-options {
     position: absolute;
     top: 100%;
     right: 0;
     background: var(--glass-bg);
     border: var(--border-light);
     border-radius: var(--radius-sm);
     min-width: 180px;
     overflow: hidden;
     z-index: 100;
     opacity: 0;
     visibility: hidden;
     transform: translateY(5px);
     transition: all 0.3s ease;
     box-shadow: var(--glass-shadow);
     margin-top: 5px;
     padding: 0;
   }
   
   .language-options.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
   }
   
   .language-option {
     padding: 0.75rem 1.25rem;
     cursor: pointer;
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
   }
   
   .language-option:hover {
     background: rgba(255, 255, 255, 0.1);
   }
   
  /* ==========================================================================
    BREADCRUMB NAVIGATION - CYBERPUNK PULITO
    ========================================================================== */

  .breadcrumb-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 80px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    overflow: hidden;
  }

  /* Linea neon animata sottile */
  .breadcrumb-nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--neon-blue) 50%, 
      transparent 100%);
    animation: glow-slide 4s linear infinite;
    opacity: 0.7;
  }

  @keyframes glow-slide {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Stile per ogni elemento della lista */
  .breadcrumb-list li {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
  }

  /* Separatore con chevron */
  .breadcrumb-list li:not(:last-child)::after {
    content: "\203A"; /* › carattere chevron */
    margin: 0 0.75rem;
    color: var(--neon-blue);
    opacity: 0.4;
    font-size: 1.2rem;
    line-height: 1;
  }

  /* Link con padding per area cliccabile migliore */
  .breadcrumb-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
  }

  /* Hover con effetto glow */
  .breadcrumb-list a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
    background: rgba(0, 247, 255, 0.08);
  }

  /* Pagina corrente in celestino */
  .breadcrumb-list li[aria-current="page"] {
    color: var(--neon-blue);
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.4);
  }

  /* Fix per rimuovere la barra verticale blu */
  .breadcrumb-list [aria-current="page"]::before {
    display: none;
  }

  /* Mobile ottimizzato */
  @media (max-width: 768px) {
    .breadcrumb-nav {
      padding: 0.75rem 0;
      margin-top: 70px;
    }
    
    .breadcrumb-list {
      font-size: 0.85rem;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
      margin: 0 0.5rem;
    }
    
    .breadcrumb-list a {
      padding: 0.35rem 0.5rem;
      margin: -0.35rem -0.5rem;
    }
  }

  @media (max-width: 576px) {
    .breadcrumb-list {
      font-size: 0.8rem;
    }
  }   
   
   /* ==========================================================================
      TYPOGRAPHY BASE
      ========================================================================== */
   
   h1, h2, h3, h4, h5, h6 {
     font-family: var(--font-accent);
     font-weight: 600;
     line-height: 1.2;
     margin-bottom: 0.75rem;
     color: white;
   }
   
   h1 {
     font-size: clamp(2.5rem, 6vw, 4rem);
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     letter-spacing: -0.02em;
   }
   
   h2 {
     font-size: clamp(2rem, 5vw, 3rem);
     position: relative;
     margin-bottom: 1.5rem;
     text-align: center;
   }
   
   h2::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
     border-radius: 3px;
   }
   
   h3 {
     font-size: clamp(1.5rem, 3vw, 2rem);
     color: var(--neon-blue);
   }
   
   p {
     margin-bottom: 1rem;
     color: rgba(255, 255, 255, 0.8);
     font-size: 1.05rem;
   }
   
   /* ==========================================================================
      BLOG STYLES
      ========================================================================== */
   
   .blog-header {
     padding: clamp(60px, 10vh, 100px) 0 clamp(30px, 5vh, 50px);
     text-align: center;
     margin-bottom: 60px;
     margin-top: 80px;
     position: relative;
     overflow: hidden;
   }
   
   .blog-header::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('/assets/images/noise.svg');
     opacity: 0.02;
     pointer-events: none;
     z-index: 0;
   }
   
   .blog-header h1 {
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 20px;
     text-align: center;
     position: relative;
     z-index: 1;
     font-weight: 800;
     letter-spacing: -0.02em;
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue), var(--neon-pink));
     background-size: 200% auto;
     animation: gradient-animation 3s ease infinite;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
   }
   
   .blog-header h1::after {
     display: none;
   }
   
   .blog-header::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 1px;
     background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
     opacity: 0.5;
   }
   
   .blog-header p {
     font-size: clamp(1.1rem, 2.5vw, 1.4rem);
     max-width: 800px;
     margin: 0 auto;
     color: rgba(255, 255, 255, 0.7);
     position: relative;
     z-index: 1;
     font-weight: 400;
     letter-spacing: 0.01em;
   }
   
   .blog-container {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
   }
   
   .blog-grid {
     flex: 1;
     min-width: 0;
     display: flex;
     flex-direction: column;
     gap: 30px;
   }
   
   .blog-card {
     border-radius: var(--radius-md);
     overflow: hidden;
     box-shadow: var(--glass-shadow);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     background: var(--glass-bg);
     border: var(--border-light);
     backdrop-filter: var(--glass-blur);
     -webkit-backdrop-filter: var(--glass-blur);
     position: relative;
   }
   
   .blog-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     border-color: var(--neon-blue);
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
   }
   
   .blog-card a {
     text-decoration: none;
     color: inherit;
     display: block;
     height: 100%;
     transition: none;
   }
   
   .blog-image {
     height: 200px;
     overflow: hidden;
   }
   
   .blog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
   }
   
   .blog-card:hover .blog-image img {
     transform: scale(1.05);
   }
   
   .blog-content {
     padding: 20px;
   }
   
   .blog-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 15px;
     font-size: 0.85rem;
     color: var(--blog-text-secondary);
   }
   
   .blog-meta .category {
     color: var(--neon-blue);
     font-weight: 500;
   }
   
   .blog-meta .date {
     padding: 4px 10px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 4px;
   }
   
   .blog-content h2 {
     font-size: clamp(1.2rem, 2vw, 1.4rem);
     margin-bottom: 10px;
     color: white;
     line-height: 1.3;
     text-align: left;
   }
   
   .blog-content h2::after {
     display: none;
   }
   
   .blog-content p {
     color: var(--blog-text-secondary);
     margin-bottom: 15px;
     line-height: 1.5;
   }
   
   .read-more {
     color: var(--neon-blue);
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: gap 0.3s ease;
   }
   
   .blog-card:hover .read-more {
     gap: 8px;
   }
   
   .blog-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border-radius: var(--radius-md);
     pointer-events: none;
     transition: all 0.3s ease;
     opacity: 0;
     z-index: 1;
   }
   
   .blog-card:hover::after {
     opacity: 1;
     box-shadow: 0 0 0 2px var(--neon-blue);
   }
   
   /* ==========================================================================
      BLOG SIDEBAR - VERSIONE CORRETTA
      ========================================================================== */
   
   .blog-sidebar {
     flex: 0 0 375px;
     position: sticky;
     top: 100px;
     align-self: start;
     background: var(--glass-bg);
     border-radius: var(--radius-md);
     padding: 25px;
     box-shadow: var(--glass-shadow);
     border: var(--border-light);
     backdrop-filter: var(--glass-blur);
     -webkit-backdrop-filter: var(--glass-blur);
   }
   
   /* Rimuovi tutti gli stili dai contenitori section interni */
   .blog-sidebar > section {
     background: none;
     border-radius: 0;
     padding: 0;
     margin-bottom: 30px;
     box-shadow: none;
     border: none;
     backdrop-filter: none;
     -webkit-backdrop-filter: none;
   }
   
   .blog-sidebar > section:last-child {
     margin-bottom: 0;
   }
   
   .blog-sidebar h3 {
     font-size: 1.2rem;
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: var(--border-light);
     color: white;
   }
   
   .blog-sidebar ul {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   
   .blog-sidebar ul li {
     margin-bottom: 12px;
   }
   
   .blog-sidebar ul li a {
     color: var(--blog-text-secondary);
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
   }
   
   .blog-sidebar ul li a:hover {
     color: var(--neon-blue);
     transform: translateX(5px);
     text-shadow: 0 0 8px rgba(0, 247, 255, 0.3);
   }
   
   .blog-sidebar ul li a::before {
     content: "\f105";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     margin-right: 8px;
     color: var(--neon-blue);
   }
   
   .blog-sidebar li[aria-current="page"] a {
     color: var(--neon-blue);
     font-weight: 600;
   }
   
   /* Stili speciali solo per tool-promo */
   .tool-promo {
     background: linear-gradient(135deg, rgba(0, 247, 255, 0.15), rgba(5, 255, 161, 0.1)) !important;
     text-align: center;
     border: 1px solid rgba(0, 247, 255, 0.2) !important;
     border-radius: var(--radius-md) !important;
     padding: 25px !important;
     margin-top: 30px !important;
     margin-bottom: 0 !important;
   }
   
   .tool-promo p {
     margin-bottom: 20px;
     color: var(--blog-text-secondary);
   }
   
   .promo-button {
     display: inline-block;
     background: linear-gradient(45deg, var(--neon-blue), var(--mint-green));
     color: #050b30;
     padding: 12px 24px;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0, 247, 255, 0.3);
   }
   
   .promo-button:hover {
     box-shadow: var(--glow-blue);
     transform: translateY(-3px);
   }
   
   /* ==========================================================================
      FOOTER
      ========================================================================== */
   
   footer {
     background: linear-gradient(to bottom, rgba(10, 10, 25, 0.5), rgba(5, 5, 15, 0.9));
     padding: 3rem 0 1.5rem;
     position: relative;
     backdrop-filter: var(--glass-blur);
     -webkit-backdrop-filter: var(--glass-blur);
     border-top: var(--border-light);
     margin-top: 80px;
   }
   
   .footer-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     margin-bottom: 2rem;
   }
   
   .footer-logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
     font-family: var(--font-accent);
     font-weight: 700;
   }
   
   .footer-logo i {
     color: var(--neon-blue);
   }
   
   .footer-logo span {
     background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
   }
   
   #disclaimer {
     max-width: 600px;
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.95rem;
     margin-bottom: 1.5rem;
   }
   
   .footer-links {
     display: flex;
     gap: 2rem;
     flex-wrap: wrap;
     justify-content: center;
   }
   
   .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     transition: all 0.3s ease;
     font-weight: 500;
     position: relative;
   }
   
   .footer-links a::after {
     content: "";
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 1px;
     background: var(--neon-blue);
     transition: all 0.3s ease;
   }
   
   .footer-links a:hover {
     color: var(--neon-blue);
   }
   
   .footer-links a:hover::after {
     width: 100%;
   }
   
   .copyright {
     text-align: center;
     padding-top: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.875rem;
   }
   
   /* ==========================================================================
      RESPONSIVE DESIGN
      ========================================================================== */
   
   @media (max-width: 992px) {
     .blog-container {
       flex-direction: column;
     }
     
     .blog-sidebar {
       position: static;
       margin: 0 auto;
       max-width: 600px;
     }
   }
   
   @media (max-width: 768px) {
     header .container {
       flex-direction: column;
       gap: 1rem;
     }
     
     .breadcrumb-nav {
       padding: 0.75rem 0;
     }
     
     .breadcrumb-list {
       font-size: 0.8rem;
       flex-wrap: wrap;
     }
     
     .blog-header {
       padding: 40px 20px;
       margin-top: 60px;
     }
     
     .blog-grid {
       gap: 20px;
     }
     
     .blog-sidebar {
       flex: none;
       width: 100%;
     }
     
     .blog-meta {
       flex-direction: column;
       gap: 5px;
     }
     
     .footer-links {
       flex-direction: column;
       gap: 1rem;
     }
   }
   
   @media (max-width: 576px) {
     .blog-container {
       padding: 0 15px;
     }
     
     .blog-sidebar {
       padding: 20px;
     }
     
     .blog-image {
       height: 150px;
     }
     
     .blog-content {
       padding: 15px;
     }
     
     .breadcrumb-list {
       gap: 0.25rem;
     }
     
     .breadcrumb-list li:not(:last-child)::after {
       margin-left: 0.25rem;
     }
   }
   
   /* ==========================================================================
      ANIMAZIONI
      ========================================================================== */
   
   @keyframes gradient-animation {
     0% {
       background-position: 0% 50%;
     }
     50% {
       background-position: 100% 50%;
     }
     100% {
       background-position: 0% 50%;
     }
   }
   
   /* ==========================================================================
      EFFETTI AGGIUNTIVI
      ========================================================================== */
   
   /* Glow effect per il testo quando hover */
   .blog-header:hover h1 {
     text-shadow: 0 0 30px rgba(0, 247, 255, 0.3);
   }
   
   /* Effetto di sfocatura radiale */
   .blog-header::before {
     background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 80%);
   }
   
   /* ==========================================================================
      FOCUS MANAGEMENT E ACCESSIBILITÀ
      ========================================================================== */
   
   /* Focus visibile per elementi interattivi */
   button:focus,
   a:focus,
   .language-option:focus {
     outline: 2px solid var(--neon-blue);
     outline-offset: 2px;
   }
   
   /* Miglioramento del contrasto per screen reader */
   @media (prefers-reduced-motion: reduce) {
     * {
       animation-duration: 0.01ms !important;
       animation-iteration-count: 1 !important;
       transition-duration: 0.01ms !important;
     }
   }
   
   /* High contrast mode support */
   @media (prefers-contrast: high) {
     :root {
       --neon-blue: #00ffff;
       --neon-pink: #ff69b4;
       --glass-bg: rgba(0, 0, 0, 0.9);
       --border-light: 2px solid rgba(255, 255, 255, 0.5);
     }
   }
   
   /* Focus management per elementi con aria-current */
   [aria-current="page"] {
     position: relative;
   }
   
   [aria-current="page"]::before {
     content: "";
     position: absolute;
     left: -10px;
     top: 50%;
     transform: translateY(-50%);
     width: 4px;
     height: 20px;
     background: var(--neon-blue);
     border-radius: 2px;
   }

   .footer-links {
    margin: 1.5rem 0;
  }
  
  .footer-links ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .footer-links li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
  }
  
  .footer-links li::before {
    display: none !important;
  }
  
  .footer-links li::marker {
    display: none !important;
  }
  
  .footer-links a {
    color: #888;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    color: #1da1f2;
    background-color: rgba(29, 161, 242, 0.1);
  }
  
  .footer-links a:focus {
    outline: 2px solid #1da1f2;
    outline-offset: 2px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-links ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }