body {
  margin: 0;
  background: #181f27;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
}
nav {
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px;
  background: #232b36;
}
.wallet-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.hero-left {
  max-width: 600px;
}
.hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.info-box {
  background: #232b36;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.98rem;
}
.connect-btn {
  background: #2970ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 12px;
  cursor: pointer;
}
.chains {
  margin-top: 8px;
  font-size: 0.95rem;
}
.chain {
  background: #232b36;
  color: #2970ff;
  border-radius: 6px;
  padding: 2px 10px;
  margin-left: 6px;
  font-size: 0.95rem;
}
.hero-right {
  width: 320px;
  height: 220px;
  background: #232b36;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works {
  margin-top: 60px;
  text-align: center;
}
.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.step {
  background: #232b36;
  border-radius: 12px;
  padding: 28px 24px;
  width: 260px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  background: #2970ff;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
}
.step strong {
  font-size: 1.1rem;
}
.step p {
  margin: 6px 0 0 0;
  font-size: 0.98rem;
  color: #b0b8c1;
}