  /*
  Theme Name: Wroomy
  Theme URI: https://wroomy.it/
  Author: Vincenzo Cesarini
  Author URI: https://wroomy.it/
  Description: A classic WordPress theme inspired by Webora. --> Primo rilascio su IONOS
  Version: 1.4
  Text Domain: webora-classic
  Tags: responsive, classic, blog, custom-menu, widgets
  */


  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }

  a {
    color: #ACC921;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }

  .site-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  header h1 {
    font-size: 1.5rem;
    color: #ACC921;
    margin: 0;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .navbar li a {
    color: #333;
    font-weight: 500;
  }

  main h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: transform 0.2s ease;
  }

  .card:hover {
    transform: translateY(-4px);
  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }

  .card h3 {
    font-size: 1.1rem;
    color: #8AAE1A;
    margin: 0.5rem 0;
  }

  .card p {
    font-size: 0.9rem;
    color: #555;
  }

  .card a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ACC921;
    font-size: 0.85rem;
  }

  @media (max-width: 768px) {
    .navbar ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .card-grid {
      grid-template-columns: 1fr;
    }
  }

  .custom-menu-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .custom-menu-item {
    background-color: #ACC921;
    color: white;

    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .custom-menu-item:hover {
    background-color: #8AAE1A;
    cursor: pointer;
  }

  .my-menu-container {
    flex-grow: 1;
    text-align: right;
  }

  .my-custom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 5px;
  }

  .my-custom-menu li {
    display: inline-block;
  }

  .my-custom-menu li a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .my-custom-menu li a:hover {
    background-color: #ACC921;
    color: #fff;
  }

  .my-custom-menu li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-user-greeting {
    display: block;
    font-size: 0.7rem;
    color: #666;
    line-height: 1;
    margin-top: 2px;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 500;
  }


  /* Hamburger Menu Toggle - Hidden by default */
  .menu-checkbox {
    display: none;
  }

  .hamburger-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
  }

  /* Responsive Menu - Smartphone */
  @media screen and (max-width: 768px) {
    .header-container {
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }

    .hamburger-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 2000;
    }

    .hamburger-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #333;
      transition: 0.3s;
      border-radius: 2px;
    }

    .my-menu-container {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 1500;
      padding: 10px 0;
    }

    .menu-checkbox:checked~.my-menu-container {
      display: block;
    }

    .my-custom-menu {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
    }

    .my-custom-menu li {
      width: 100%;
      text-align: center;
    }

    .my-custom-menu li a {
      display: block;
      padding: 12px;
      font-size: 1.1rem;
    }

    /* Hamburger Animation to X */
    .menu-checkbox:checked+.hamburger-toggle span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-checkbox:checked+.hamburger-toggle span:nth-child(2) {
      opacity: 0;
    }

    .menu-checkbox:checked+.hamburger-toggle span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }
  }

  .hero {
    color: #333;
    padding: 50px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .search-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 15px 20px;
    background: rgba(172, 201, 33, 0.05);
    border-left: 4px solid #ACC921;
    border-radius: 4px 12px 12px 4px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  }

  .search-disclaimer i {
    color: #ACC921;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .search-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
  }

  .hero-left {
    /*background: linear-gradient(135deg,  #f3fFf1, #f0f4f8);*/
    color: #333;
    padding: 60px 20px;
    text-align: left;
  }

  .hero-left h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
  }


  /* Search Form Grid Layout - Rebranded & Restructured */
  #formFastAPI {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  #formFastAPI .form-row {
    display: grid;
    gap: 25px;
    width: 100%;
  }

  #formFastAPI .row-1 {
    grid-template-columns: repeat(3, 1fr);
  }

  #formFastAPI .row-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  #formFastAPI .row-3 {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
  }

  .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .input-wrapper label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-left: 2px;
  }

  .range-inputs {
    display: flex;
    gap: 8px;
  }

  #formFastAPI input {
    padding: 10px 18px !important;
    font-size: 0.95rem !important;
    border: 2px solid #cbd5e0 !important;
    border-radius: 10px !important;
    outline: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 90% !important;
    height: 24px !important;
    background: #ffffff !important;
    display: block !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 1) !important;
    color: #1a202c !important;
    font-weight: 500 !important;
  }

  #formFastAPI select {
    padding: 10px 18px !important;
    font-size: 0.95rem !important;
    border: 2px solid #cbd5e0 !important;
    border-radius: 10px !important;
    outline: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    height: 48px !important;
    background: #ffffff !important;
    display: block !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 1) !important;
    color: #1a202c !important;
    font-weight: 500 !important;
    box-sizing: border-box !important;
  }

  #formFastAPI input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  #formFastAPI input:hover,
  #formFastAPI select:hover {
    border-color: #cbd5e0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-1px);
  }

  #formFastAPI input:focus,
  #formFastAPI select:focus {
    border-color: #ACC921 !important;
    box-shadow: 0 0 0 4px rgba(172, 201, 33, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    background: #fff !important;
    transform: translateY(-2px);
  }

  #formFastAPI #btnRicerca {
    background-color: #ACC921;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(172, 201, 33, 0.2);
    width: auto;
    min-width: 220px;
  }

  #formFastAPI #btnRicerca:hover {
    background-color: #8AAE1A;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(172, 201, 33, 0.3);
  }

  #formFastAPI #btnRicerca.loading {
    background-color: #6c757d !important;
    cursor: not-allowed;
    opacity: 0.8;
    pointer-events: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    display: inline-block;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  @media (max-width: 768px) {

    #formFastAPI .row-1,
    #formFastAPI .row-2 {
      grid-template-columns: 1fr;
    }

    #formFastAPI #btnRicerca {
      width: 100%;
    }
  }


  /* Stile per la tabella - Moderno e Responsive */
  .styled-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 900px;
    /* Allineata al form */
    margin: 30px auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

  .styled-table thead tr {
    background-color: #ACC921;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
  }

  .styled-table th,
  .styled-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    /* Assicura che il bordo destro sia visibile */
    text-align: right;
    /* Default a destra per Titolo/Dettagli */
  }

  .styled-table th:first-child,
  .styled-table td:first-child {
    text-align: left;
  }

  .styled-table th:last-child,
  .styled-table td:last-child {
    border-right: 1px solid #f0f0f0;
    /* Rimuove l'ultimo bordo per pulizia visiva se contenuto nel raggio del bordo del contenitore */
  }

  .styled-table tbody tr {
    transition: background-color 0.2s ease;
  }

  .styled-table tbody tr:last-of-type td {
    border-bottom: none;
  }

  .styled-table tbody tr:hover {
    background-color: #f8f9fa;
  }

  /* Media Query per Mobile */
  @media screen and (max-width: 768px) {
    .styled-table {
      border: none;
      box-shadow: none;
      background: transparent;
      margin-top: 10px;
    }

    .styled-table thead {
      display: none !important;
      /* Nascondi intestazione su mobile */
    }

    .styled-table tbody,
    .styled-table tr,
    .styled-table td {
      display: block;
      width: 100%;
    }

    .styled-table tr {
      margin-bottom: 30px;
      /* Spazio tra le mattonelle */
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      /* Ombra più definita per la mattonella */
      padding: 0;
      border: 1px solid #e0e0e0 !important;
      overflow: hidden;
      /* Rimuove lo stile tabella */
    }

    .styled-table td {
      display: flex;
      flex-direction: column;
      text-align: left !important;
      padding: 10px 15px;
      /* Padding interno alla mattonella */
      border-bottom: none !important;
      /* Rimuove i bordi interni tra i dati */
      border-right: none !important;
      font-size: 14px;
    }

    .styled-table td[data-label="Azioni"] {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: flex-start;
    }

    .styled-table td[data-label="Azioni"]::before {
      flex: 0 0 100%;
      /* Force header to its own row */
      margin-bottom: 10px;
    }

    .styled-table td[data-label="Azioni"] form {
      display: inline-block;
      margin: 0;
    }

    .styled-table td::before {
      content: attr(data-label);
      font-weight: bold;
      background-color: #ACC921;
      color: #ffffff;
      text-transform: uppercase;
      font-size: 12px;
      padding: 8px 15px;
      margin: -10px -15px 10px -15px;
      /* Match full width and touch top/sides */
      display: block;
    }

    .styled-table td:first-child::before {
      /* Specific styling for the very first header of the card */
      border-radius: 12px 12px 0 0;
      margin-top: 0;
    }

    .styled-table td:first-child {
      padding-top: 0;
    }

    .styled-table td div,
    .styled-table td a {
      display: block;
      text-align: left;
    }
  }

  .source-logo {
    max-height: 16px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: transform 0.2s ease;
  }

  .source-logo:hover {
    transform: scale(1.1);
  }

  /* Barra loghi portali (homepage) */
  .portals-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 16px auto 0;
    padding: 12px 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .portals-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .portal-icon {
    height: 16px;
    width: auto;
    display: block;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.2s ease;
  }

  .portals-strip a:hover .portal-icon {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px;
    flex-wrap: wrap;
  }

  .powersearch-logo-container {
    width: 60px;
    height: 60px;
  }

  .powersearch-logo {
    width: 350%;
    height: 100%;
    object-fit: contain;
  }


  .section {
    padding: 10px 00px;
    max-width: 90%;
    margin: auto;
    text-align: center;
  }

  .grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }

  .grid-item {
    flex: 1 1 250px;
    text-align: center;
  }

  .grid-item i {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .team {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .team-member {
    text-align: center;
    max-width: 200px;
  }

  .team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
  }

  .contact-form-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .contact-form-section form {
    display: flex;
    flex-direction: column;
  }

  .contact-form-section input,
  .contact-form-section textarea {
    margin-bottom: 15px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
  }

  /* Social Login Section */
  .social-login-container {
    margin-bottom: 30px;
    text-align: center;
  }

  .social-login-container p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
  }

  .social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
  }

  .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    font-size: 0.95rem;
  }

  .btn-google {
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .btn-google:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .btn-facebook {
    background-color: #1877F2;
    color: #fff;
    border: none;
  }

  .btn-facebook:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .social-login-container .separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
  }

  .social-login-container .separator::before,
  .social-login-container .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
  }

  .social-login-container .separator span {
    padding: 0 15px;
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
  }

  .contact-form-section input:focus,
  .contact-form-section textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
  }

  /* WhatsApp Link Styling */
  .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #25D366;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .whatsapp-link .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }

  .contact-form-section button {
    padding: 12px;
    background-color: #ACC921;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .contact-form-section button:hover {
    background-color: #8AAE1A;
    transform: scale(1.03);
  }



  .saved-filters-section {
    margin: 40px auto;
    padding: 20px;
    max-width: 1000px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .saved-filters-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
  }

  .saved-filters-section table {
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 8px;
    overflow: hidden;
  }

  .saved-filters-section thead {
    background-color: #0073aa;
    color: #fff;
  }

  .saved-filters-section th,
  .saved-filters-section td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }

  .saved-filters-section tbody tr:hover {
    background-color: #f1faff;
  }

  .saved-filters-section td {
    color: #444;
    font-size: 0.9rem;
  }

  .styled-table td[data-label="Data"] {
    font-size: 0.8rem;
    color: #666;
  }

  .btn-azione {
    padding: 6px 12px;
    margin: 3px;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-azione:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .btn-azione.modifica {
    background: linear-gradient(135deg, #0073aa, #005a8c);
    color: #fff;
  }

  .btn-azione.modifica:hover {
    background: linear-gradient(135deg, #0085ba, #0073aa);
  }

  .btn-azione.cancella {
    background: linear-gradient(135deg, #d63638, #a00);
    color: #fff;
  }

  .btn-azione.cancella:hover {
    background: linear-gradient(135deg, #e35b5d, #d63638);
  }


  .filtro-success-message {
    text-align: center;
    background-color: #e6f7e6;
    border: 1px solid #b2d8b2;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    color: #2e7d32;
    font-weight: 500;
  }

  .filtro-error-message {
    text-align: center;
    background-color: #efa7ad;
    border: 1px solid #b2d8b2;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    color: #2e7d32;
    font-weight: 500;
  }

  .user-greeting-container {
    width: 100%;
    text-align: right;
    margin-top: 2px;
  }

  .user-greeting {
    font-size: 12px;
    font-weight: 500;
  }


  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
  }

  .footer-logo {
    flex-shrink: 0;
    max-width: 150px;
  }

  .footer-info {
    flex-grow: 1;
    text-align: center;
  }

  .footer-info p {
    margin: 5px 0;
  }

  /* Checkbox wrapper for registration page */
  .checkbox-wrapper {
    margin: 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    width: 100% !important;
    background: #f9f9f9 !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    border: 1px dashed #ddd !important;
  }

  .checkbox-wrapper input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #ACC921 !important;
  }

  .checkbox-wrapper label {
    font-size: 0.85rem !important;
    color: #666 !important;
    cursor: pointer !important;
    margin: 0 !important;
    font-weight: 500 !important;
  }


  /* =========================
   ROADMAP VERTICALE (Chi Siamo)
   ========================= */
  .roadmap-section {
    max-width: 1100px;
    margin: 50px auto 60px;
    padding: 28px 22px;
    background: linear-gradient(180deg, rgba(172, 201, 33, 0.06), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .roadmap-header {
    text-align: center;
    margin-bottom: 26px;
  }

  .roadmap-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8AAE1A;
    background: rgba(172, 201, 33, 0.12);
    padding: 6px 12px;
    border-radius: 999px;
  }

  .roadmap-title {
    margin: 10px 0 8px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #222;
  }

  .roadmap-subtitle {
    margin: 0 auto;
    max-width: 720px;
    color: #555;
    line-height: 1.6;
    font-size: 0.98rem;
  }

  /* Timeline layout */
  .roadmap-timeline {
    position: relative;
    margin: 26px auto 0;
    padding: 10px 0 10px 0;
  }

  /* vertical line */
  .roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(172, 201, 33, 0.65), rgba(172, 201, 33, 0.10));
    border-radius: 8px;
  }

  .roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .roadmap-dot {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .roadmap-dot .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ACC921;
    box-shadow: 0 0 0 6px rgba(172, 201, 33, 0.18);
    margin-top: 14px;
  }

  /* Card */
  .roadmap-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 16px 18px;
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .roadmap-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
  }

  .roadmap-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .roadmap-date {
    font-weight: 800;
    color: #222;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 6px 10px;
    border-radius: 10px;
  }

  .roadmap-status {
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .roadmap-status.status-done {
    background: rgba(172, 201, 33, 0.18);
    color: #007a10;
    border-color: rgba(172, 201, 33, 0.35);
  }

  .roadmap-status.status-now {
    background: rgba(172, 201, 33, 0.18);
    color: #5f7a10;
    border-color: rgba(172, 201, 33, 0.35);
  }

  .roadmap-status.status-next {
    background: rgba(0, 0, 0, 0.03);
    color: #666;
  }

  .roadmap-milestone {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 800;
  }

  .roadmap-desc {
    margin: 0;
    color: #555;
    line-height: 1.55;
    font-size: 0.95rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .roadmap-section {
      padding: 22px 16px;
    }

    .roadmap-title {
      font-size: 1.6rem;
    }

    .roadmap-timeline::before {
      left: 14px;
    }

    .roadmap-item {
      grid-template-columns: 36px 1fr;
      gap: 12px;
    }

    .roadmap-dot .dot {
      width: 12px;
      height: 12px;
      box-shadow: 0 0 0 5px rgba(172, 201, 33, 0.18);
    }
  }

  /* Telegram Live Feed Styling */
  .live-feed-section {
    max-width: 900px;
    margin: 40px auto 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  }

  .feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .feed-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .feed-title-wrapper h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 700;
  }

  .live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .pulse {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 59, 48, 0.4);
    animation: pulse-red 2s infinite;
  }

  @keyframes pulse-red {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
  }

  .feed-updated {
    font-size: 0.8rem;
    color: #888;
  }

  .feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }

  .feed-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #ccc;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
  }

  .feed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #ACC921;
  }

  .card-logo-wrapper {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .card-source-logo {
    max-height: 16px;
    width: auto;
  }

  .card-source-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ACC921;
    text-transform: uppercase;
  }

  .card-title {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
  }

  .card-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ACC921;
  }

  .card-meta {
    font-size: 0.75rem;
    color: #777;
  }

  .card-tag {
    position: absolute;
    top: 10px;
    right: -25px;
    background: #ACC921;
    color: #fff;
    padding: 2px 30px;
    font-size: 0.65rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 992px) {
    .feed-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .feed-grid {
      grid-template-columns: 1fr;
    }

    .feed-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }