body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
  font-size: 20px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 50px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .logo span {
  font-size: 32px;
}

header .linkers ul {
  display: flex;
  gap: 36px;
}

header .linkers ul li {
  list-style: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
}

header .linkers ul li:hover {
  text-decoration: underline;
}

header .auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .primary-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
}

header .primary-btn:hover {
  background-color: #333;
}

header .secondary-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #000;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
}

header .secondary-btn:hover {
  background-color: #f0f0f0;
}

.Welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.Welcome .left {
  flex: 1;
  margin-top: -100px;
}

.Welcome .left h1 {
  font-weight: 500;
  font-size: 96px;
  line-height: 90px;
  letter-spacing: 1px;
  max-width: 1200px;
}

.Welcome .left p {
  font-size: 24px;
  max-width: 550px;
  margin-bottom: 40px;
}

.Welcome .primary-btn {
  background: #4cfdc7;
  border: 1px solid #4cfdc7;
  border-radius: 4px;
  padding: 10px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  box-shadow: 0px 4px 15px rgba(76, 253, 199, 0.5);
  margin-right: 15px;
}

.Welcome .primary-btn:hover {
  background-color: #3ad9b0;
}

.Welcome .secondary-btn {
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.Welcome .secondary-btn:hover {
  background-color: #f0f0f0;
}

.Welcome .left .rate {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Welcome .left .rate img {
  width: 28px;
  height: 28px;
}

.Welcome .left .rate span {
  font-size: 32px;
}

.Welcome .right {
  margin-right: 50px;
}

.crypto-section {
  margin-top: 60px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 100px;
}

.crypto-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.crypto-table thead th {
  background: #f8f9fa;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #6c757d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e9ecef;
}

.crypto-table tbody td {
  padding: 20px;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: middle;
}

.crypto-table tbody tr:hover {
  background-color: #f8f9fa;
}

.asset {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asset-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.asset span {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.change {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.change.positive {
  color: #10b981;
}

.change.negative {
  color: #ef4444;
}

.arrow {
  font-size: 14px;
  font-weight: bold;
}

.buy-btn {
  background: #4cfdc7;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  transition: all 0.3s ease;
  font-size: 14px;
}

.buy-btn:hover {
  background: #3ad9af;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.view-all a {
  text-decoration: none;
  color: #000;
}

.why-title {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
}

.Why {
  margin-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.Why .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.Why .block img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.Why .block h5 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #333;
}

.Why .block p {
  line-height: 1.5;
  margin: 0;
}

.Trade, .Wallet{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 150px;
}

.Trade h2, .Wallet h2{
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 600px;
}

.blocks{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.blocks .block{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blocks .block img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.Wallet {
  flex-direction: row-reverse;
}

.VIP{
  border-radius: 12px;
  text-align: center;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.VIP h2{
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 25px;
  max-width: 900px;
}

.VIP .blocks{
  display: flex;
  margin-bottom: 100px;
  font-size: 24px;
  gap: 50px;
  font-weight: 500;
}

.Start{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.Start h2{
  font-size: 64px;
  font-weight: 600;
}

.Start .blocks{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.Start .blocks .block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 400px;
  flex-shrink: 0;
}

.Start .blocks .block img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 25px;
}

.Start .blocks .block h5{
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.Start .blocks .block p{
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
}

.Start button{
  background: #4cfdc7;
  border: none;
  padding: 10px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  transition: all 0.3s ease;
  font-size: 18px;
}

.Start button:hover{
  background: #3ad9af;
}

.Start .rate{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.News{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.News h2{
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 50px;
}

.News .blocks{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.News img{
  width: 400px;
  height: 500px;
  object-fit: contain;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 50px;
}

footer .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .logo span {
  font-size: 32px;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .Welcome .left h1 {
    font-size: 64px;
    line-height: 70px;
  }

  .Trade img, .Wallet img, .VIP img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 992px) {
  header .linkers {
    display: none;
  }

  .Welcome {
    flex-direction: column;
    text-align: center;
  }

  .Welcome .left {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .Welcome .left p {
    margin: 0 auto 40px;
  }

  .Welcome .right {
    margin-right: 0;
  }

  .Welcome .right img {
    max-width: 300px;
  }

  .Why {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .Trade, .Wallet {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }

  .Trade .blocks, .Wallet .blocks {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .Trade h2, .Wallet h2 {
    font-size: 36px;
    margin: 0 auto 30px;
  }

  .VIP h2, .Start h2, .News h2 {
    font-size: 40px;
  }

  .News .blocks {
    flex-wrap: wrap;
    justify-content: center;
  }

  .News img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .crypto-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .crypto-table {
    min-width: 600px; 
  }

  .Start .blocks {
    flex-direction: column;
    align-items: center;
  }

  .Start .blocks .block {
    width: 100%;
  }

  .VIP .blocks {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 500px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .Welcome .left h1 {
    font-size: 40px;
    line-height: 44px;
  }

  .Welcome .primary-btn, 
  .Welcome .secondary-btn {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .Trade .blocks, .Wallet .blocks {
    grid-template-columns: 1fr;
  }

  .Trade .block, .Wallet .block {
    align-items: center;
    text-align: center;
  }

  .why-title {
    font-size: 32px;
  }
}