* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #000;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo img {
    width: 40px;
  }
  
  .right-header {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .btn {
    display: flex;
    gap: 20px;
  }
  
  .buttons {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
  }
  
  .buttons:hover {
    color: hsl(5, 85%, 63%);
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }
  
  .main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }
  
  .main img {
    width: 100%;
    height: auto;
  }
  
  .main-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .web3-content {
    display: flex;
    gap: 30px;
  }
  
  .text {
    flex: 1;
  }
  
  .text h1 {
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .text-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  
  .d-text-2 {
    color: #666;
    line-height: 1.6;
  }
  
  .read {
    background-color: hsl(5, 85%, 63%);
    color: black;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
  }
  
  .read:hover {
    background-color: hsl(240, 100%, 5%);
    color: #fff;
    transition: 1 ease-out;
  }
  
  .new {
    background-color: hsl(240, 100%, 5%);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 320px;
    height: 450px;
  }
  
  .new h1 {
    color: hsl(35, 77%, 62%);
    font-size: 2rem;
  }
  
  .new h3 {
    font-size: 1.1rem;
    cursor: pointer;
  }
  
  .new h3:hover {
    color: hsl(35, 77%, 62%);
  }
  
  .new p {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  hr {
    border: 1px solid #444;
  }
  
  .footer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer > div {
    display: flex;
    gap: 15px;
    flex: 1;
  }
  
  .footer img {
    width: 100px;
  }
  
  .foot-text h2 {
    color: hsl(233, 8%, 79%);
    font-size: 1.5rem;
  }
  
  .foot-text h5 {
    font-size: 1rem;
    margin: 5px 0;
    cursor: pointer;
  }
  
  .foot-text h5:hover {
    color: hsl(5, 85%, 63%);
    transition: 0.7 ease-in-out;
  }
  
  .foot-text p {
    font-size: 0.85rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .main {
      grid-template-columns: 1fr;
    }
  
    .right-header {
      flex-direction: row-reverse;
      justify-content: space-between;
      width: 100%;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .btn {
      display: none;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      margin-top: 10px;
    }
  
    .btn.active {
      display: flex;
    }
  
    .footer {
      flex-direction: column;
    }
  
    .footer > div {
      flex-direction: row;
    }
  
    .web3-content {
      flex-direction: column;
    }
  }
  