          .table {
            overflow: auto;
            border: 1px solid var(--border);
            border-radius: 14px;
          }

          .table::-webkit-scrollbar{
            height: 4px;
          }
          table {
            border-collapse: collapse;
            width: 100%;
            min-width: 760px;
          }
          th,
          td {
            padding: 12px 14px;
            border-bottom: 1px solid var(--border);
          }
          th {
            background: rgba(255, 255, 255, 0.03);
            text-align: left;
          }
          .intoLinks {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            text-align: center;
            span {
              width: 8px;
              height: 8px;
              background-color: #fff;
              border-radius: 50%;
            }
            a {
              transition: 0.3s all linear;
              transform-origin: left;
            }
            a:hover {
              text-decoration: underline;
            }
          }
    
        

        
          article h2 {
            font-size: 26px;
            margin: 26px 0 10px;
          }
          article p {
            margin: 0 0 14px;
          }
          .note {
            background: linear-gradient(
              180deg,
              rgba(255, 210, 60, 0.08),
              rgba(255, 210, 60, 0.04)
            );
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            padding: 12px 14px;
            border-radius: 12px;
          }
          .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
          }
          .card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 16px;
          }
          .muted {
            color: var(--muted);
          }
        
                @media screen and (max-width: 750px) {
            .intoLinks {
              flex-direction: column;
              span {
                display: none;
              }
            }
            .grid{
                display: flex;
                flex-direction: column;
            }
          }