
/* Cookie Banner */
#cookieBanner {
    position: fixed;
    z-index: 99999999999;
    bottom: 20px;
    right: 20px;
    background: #4C7EFB;
    backdrop-filter: blur(20px);
    border: 1px solid #3870FB;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    max-width: 360px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  #cookieBanner.show {
    transform: translateX(0);
    opacity: 1;
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-text {
    color: #E3E9FF;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 6px;
  }
  
  .cookie-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 1;
  }
  
  .cookie-btn-accept {
    background: #E3E9FF;
    color: #3870FB;
  }
  
  .cookie-btn-accept:hover {
    background: #BDD0FF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
  }
  
  .cookie-btn-reject {
    background: transparent;
    color: #E3E9FF;
    border: 1px solid #E3E9FF;
  }
  
  .cookie-btn-reject:hover {
    background: #3870FB;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
  }
  
  /* Mobile responsive */
  @media (max-width: 640px) {
    #cookieBanner {
      bottom: 16px;
      right: 16px;
      left: 16px;
      max-width: none;
    }
  }
  
  
  