    .container2 {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 15px;
      padding: 30px;
      width: 100%;
      max-width: 100%;
    }

    .title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #facc15;
    }

    .contract-box {
      background: #0a0f2d;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .contract-text {
      font-size: 1rem;
    }

    .copy-btn {
      background: #1e293b;
      color: #fff;
      border: none;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .copy-btn:hover {
      background: #facc15;
      color: #000;
    }

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

    .card {
      background: #0f172a;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid #1e293b;
    }

    .card span {
      display: block;
      margin-top: 8px;
      font-size: 0.9rem;
      color: #9ca3af;
    }

    .soon {
      background: #1e293b;
      color: #facc15;
      display: inline-block;
      padding: 5px 12px;
      border-radius: 6px;
      margin-top: 10px;
      font-size: 0.8rem;
    }

    .community {
      text-align: center;
      margin-bottom: 20px;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff21;
      padding: 15px;
      border-radius: 12px;
      width: 60px;
      height: 60px;
      transition: 0.3s;
    }

    .socials a:hover {
      background: #13a7c9;
    }

    footer {
      margin-top: 20px;
      text-align: center;
      font-size: 0.85rem;
      color: #9ca3af;
    }
    .text-m {
        visibility: hidden;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .title {
        font-size: 1.6rem;
      }

      .contract-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      header {
        justify-content: center;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .title {
        font-size: 1.4rem;
      }

      .socials {
        gap: 10px;
      }

      .socials a {
        width: 50px;
        height: 50px;
        padding: 10px;
      }
      .text-w {
        display: none;
      }
      .text-m {
        visibility: visible;
      }

    }