    /* Основные стили виджета с именным пространством */
    #nova-chat-widget {
      position: fixed;
      right: 10px;
      bottom: 10px;
      z-index: 9999;
      font-family: Arial, sans-serif;
    }

    #nova-chat-widget .chat-icon {
      position: fixed;
      right: 10px;
      bottom: 10px;
      width: 56px;
      height: 56px;
      background-color: var(--nova-primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      z-index: 10000;
    }

    #nova-chat-widget .chat-icon:hover {
      transform: scale(1.1);
      background-color: var(--nova-secondary-color);
    }

    #nova-chat-widget .chat-icon svg {
      color: white;
      width: 28px;
      height: 28px;
    }

    #nova-chat-widget .unread-badge {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 10px;
      height: 10px;
      background-color: var(--nova-badge-color);
      border-radius: 50%;
      border: 2px solid white;
      display: none;
    }

    #nova-chat-widget .chat-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.3);
      z-index: 9998;
      display: none;
      opacity: 0;
      transition: opacity 0.3s;
    }

    #nova-chat-widget .chat-window {
      position: fixed;
      right: 10px;
      bottom: 76px;
      width: calc(100% - 40px);
      max-width: 320px;
      background-color: var(--nova-bg-color);
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      z-index: 9999;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s ease;
    }

    #nova-chat-widget .chat-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      background-color: var(--nova-primary-color);
      color: white;
    }

    #nova-chat-widget .chat-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 500;
    }

    #nova-chat-widget .close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      padding: 0;
      line-height: 1;
    }

    #nova-chat-widget .chat-links {
      padding: 8px;
    }

    #nova-chat-widget .chat-link {
      display: flex;
      align-items: center;
      padding: 14px 12px;
      text-decoration: none;
      color: var(--nova-text-color);
      border-radius: 8px;
      margin-bottom: 6px;
      transition: all 0.2s;
      font-size: 16px;
    }

    #nova-chat-widget .chat-link:hover {
      background-color: #f5f5f5;
      transform: translateX(3px);
    }

    #nova-chat-widget .chat-link svg {
      margin-right: 14px;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    #nova-chat-widget .chat-link span {
      font-size: 16px;
      font-weight: 500;
    }

    #nova-chat-widget .pulse-effect {
      animation: nova-pulse-animation 1.5s infinite;
    }

    @keyframes nova-pulse-animation {
      0% { box-shadow: 0 0 0 0 rgba(66, 185, 131, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(66, 185, 131, 0); }
      100% { box-shadow: 0 0 0 0 rgba(66, 185, 131, 0); }
    }

    /* Адаптивные стили для мобильных */
    @media (max-width: 480px) {
      #nova-chat-widget .chat-icon {
        width: 52px;
        height: 52px;
        right: 12px;
        bottom: 12px;
      }

      #nova-chat-widget .chat-icon svg {
        width: 26px;
        height: 26px;
      }

      #nova-chat-widget .chat-window {
        width: calc(100% - 24px);
        right: 12px;
        bottom: 74px;
      }

      #nova-chat-widget .chat-header {
        padding: 14px 16px;
      }

      #nova-chat-widget .chat-header h3 {
        font-size: 17px;
      }

      #nova-chat-widget .chat-link {
        padding: 12px 10px;
        font-size: 15px;
      }

      #nova-chat-widget .chat-link svg {
        width: 26px;
        height: 26px;
        margin-right: 12px;
      }

      #nova-chat-widget .chat-link span {
        font-size: 15px;
      }
    }

    /* Для очень маленьких экранов */
    @media (max-width: 360px) {
      #nova-chat-widget .chat-icon {
        width: 48px;
        height: 48px;
      }

      #nova-chat-widget .chat-icon svg {
        width: 24px;
        height: 24px;
      }

      #nova-chat-widget .chat-link {
        padding: 10px 8px;
        font-size: 14px;
      }

      #nova-chat-widget .chat-link svg {
        width: 24px;
        height: 24px;
        margin-right: 10px;
      }

      #nova-chat-widget .chat-link span {
        font-size: 14px;
      }
    }
