
  /*.title-logo {
            --color1: #ffffff;
            --color2: #ec3d3d;
            background: repeating-linear-gradient(
              45deg,
              var(--color1),
              var(--color1) 20px,
              var(--color2) 20px,
              var(--color2) 40px
            );
            background-clip: text;
            color: transparent;
            -webkit-background-clip: text;
            animation: 40s linear 0s infinite move;
          }

          @keyframes move {
            from {
              background-position: 0px;
            }
            to {
              background-position: 1000px;
            }
          }
        */
        .chat-container {
            position: fixed;
            bottom: 0;
            right: 20px;
            width: 300px;
            max-height: 500px;
            background-color: #222;
            border: 1px solid #444;
            border-bottom: none;
            display: flex;
            flex-direction: column;
            z-index: 10000;
          }
          
          .chat-content {
            display: flex;
            height: 100%;
          }
          
          .friends-list {
            width: 200px;
            background-color: #333;
            overflow-y: auto;
            max-height: 400px;
          }
          
          #chat-windows {
            position: fixed;
            bottom: 0;
            right: 320px;
            display: flex;
            gap: 10px;
            z-index: 10000;
          }
          
          .friend-item {
            display: flex;
            align-items: center;
            padding: 10px;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
            position: relative;
          }
          
          .friend-item:hover {
            background-color: #444;
          }
          
          .friend-headshot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
          }
          
          .online-indicator {
            position: absolute;
            bottom: 5px;
            right: 45px;
            width: 12px;
            height: 12px;
            background-color: #4CAF50;
            border-radius: 50%;
            border: 2px solid #333;
          }
          
          .chat-window {
            width: 300px;
            height: 400px;
            display: flex;
            flex-direction: column;
            background-color: #2a2a2a;
            border: 1px solid #444;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
          }
          
          .chat-window-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            color: white;
            padding: 10px;
          }
          
          .chat-window-name {
            flex-grow: 1;
          }
          
          .chat-window-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
          }
          
          .chat-window-messages {
            flex-grow: 1;
            overflow-y: auto;
            padding: 10px;
            color: white;
          }
          
          .chat-message {
            margin-bottom: 10px;
            display: flex;
            flex-direction: column;
          }
          
          .message-timestamp {
            font-size: 0.7em;
            color: #999;
            align-self: flex-end;
            margin-top: 3px;
          }
          
          .chat-window-input {
            display: flex;
            padding: 10px;
          }
          
          .chat-window-input input {
            flex-grow: 1;
            margin-right: 10px;
            padding: 5px;
            background-color: #333;
            color: white;
            border: 1px solid #444;
          }
          
          .chat-window-input button {
            padding: 5px 10px;
            background-color: #0066FF;
            color: white;
            border: none;
            cursor: pointer;
          }
          
          #toggle-chat {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            width: 100%;
            text-align: left;
            padding: 10px;
          }