.footer-nav {
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
  }
  
  .footer-nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0 0, 38% 0, 43% 0, 57% 0, 62% 0, 100% 0, 100% 100%, 0 100%);
    border-top: 1px solid #efefef;
  }
  
  .footer-items {
    display: flex;
    align-items: flex-end;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  
  .footer-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 5px 5px;
    border-radius: 12px;
    position: relative;
  }
  
  .footer-nav-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    margin-bottom: 2px;
  }
  
  .footer-nav-item.active {
    color: #2ded5c;
  }
  
  
  .footer-center {
    flex: 1.3;
    display: flex;
    justify-content: center;
    position: relative;
    height: 78px;
  }
  
  .footer-publish-btn {
    position: absolute;
    bottom: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d9a3 0%, #2ded5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 5px solid #ffffff;
  }
  
  .footer-publish-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a1f1a 0%, rgba(173, 237, 45, 73%) 50%, #2ded5c 100%);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.3;
    }
    50% {
      transform: scale(1.15);
      opacity: 0;
    }
  }
  
  .footer-publish-btn svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 3;
  }
  
  .footer-publish-btn:active {
    transform: scale(0.88);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
  }
  
  .footer-publish-label {
    position: absolute;
    bottom: 2px;
    font-size: 13px;
    color: #999;
   
  }
  .activefb{
    color: #00e0a1;
  }