        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        body {
          background-color: #000;
          color: #efefef;
          font-family: "Times New Roman", Verdana, Helvetica, sans-serif;
          line-height: 1.6;
          padding: 20px;
          min-height: 100vh;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
        }

        h1 {
          color: #fff;
          text-align: center;
          margin-bottom: 30px;
          font-size: 2.5em;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        h2 {
          color: #fff;
          margin: 30px 0 20px 0;
          font-size: 1.8em;
          border-bottom: 2px solid #576879;
          padding-bottom: 10px;
        }

        .section {
          margin-bottom: 40px;
          background-color: #111;
          border: 1px solid #576879;
          border-radius: 8px;
          padding: 20px;
        }

        .links-section {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 15px;
          margin-bottom: 20px;
        }

        .link-item {
          background-color: #273849;
          border: 1px solid #576879;
          border-radius: 5px;
          padding: 15px;
          transition: all 0.3s ease;
        }

        .link-item:hover {
          background-color: #374859;
          transform: translateY(-2px);
        }

        .link-item a {
          color: #ccccff;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1em;
        }

        .link-item a:hover {
          color: #fff;
        }

        .command-item {
          background-color: #1a1a1a;
          border: 1px solid #576879;
          border-radius: 8px;
          margin-bottom: 20px;
          overflow: hidden;
        }

        .command-header {
          background-color: #273849;
          padding: 12px 15px;
          border-bottom: 1px solid #576879;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .command-title {
          color: #fff;
          font-weight: bold;
          font-size: 1.1em;
        }

        .command-description {
          color: #ccc;
          font-style: italic;
          font-size: 0.9em;
          margin-top: 3px;
        }

        .copy-btn {
          background-color: #00f000;
          color: #000;
          border: none;
          padding: 8px 15px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: bold;
          transition: all 0.3s ease;
        }

        .copy-btn:hover {
          background-color: #00d000;
          transform: scale(1.05);
        }

        .copy-btn.copied {
          background-color: #ff6600;
          color: #fff;
        }

        .command-code {
          background-color: #0a0a0a;
          color: #00f000;
          padding: 15px;
          font-family: 'Courier New', monospace;
          font-size: 0.95em;
          white-space: pre-wrap;
          word-break: break-all;
          border: 1px solid #333;
          margin: 0;
          position: relative;
        }

        .command-code::selection {
          background-color: #00f000;
          color: #000;
        }

        .toast {
          position: fixed;
          top: 20px;
          right: 20px;
          background-color: #00f000;
          color: #000;
          padding: 10px 20px;
          border-radius: 5px;
          font-weight: bold;
          opacity: 0;
          transform: translateX(100%);
          transition: all 0.3s ease;
          z-index: 1000;
        }

        .toast.show {
          opacity: 1;
          transform: translateX(0);
        }

        @media (max-width: 768px) {
          body {
            padding: 10px;
          }

          h1 {
            font-size: 2em;
          }

          .command-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
          }

          .copy-btn {
            align-self: flex-end;
          }
        }