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

body{
  background:#020617;
  color:white;
  font-family:Arial;
  overflow-x:hidden;
}

.bg{
  position:fixed;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at top left,#22c55e22,transparent 35%),
    radial-gradient(circle at bottom right,#eab30822,transparent 35%);
  z-index:-1;
}

.header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 60px;
  backdrop-filter:blur(20px);
  background:rgba(0,0,0,0.25);
  z-index:1000;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#22c55e;
}

nav a{
  margin:0 18px;
  text-decoration:none;
  color:white;
}

#connectWallet{
  padding:14px 24px;
  border:none;
  border-radius:14px;
  background:
    linear-gradient(
      135deg,
      #22c55e,
      #eab308
    );
  color:white;
  cursor:pointer;
}

.hero{
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:140px 80px;
  gap:80px;
  flex-wrap:wrap;
}

.hero-left{
  flex:1;
}

.badge{
  display:inline-block;
  padding:10px 20px;
  border-radius:30px;
  background:#22c55e22;
  color:#22c55e;
  margin-bottom:24px;
}

.hero h1{
  font-size:82px;
  line-height:1.1;
  margin-bottom:24px;
}

.hero p{
  max-width:620px;
  line-height:1.8;
  opacity:0.85;
}

.hero-buttons{
  margin-top:40px;
}

.primary-btn,
.secondary-btn{
  padding:16px 30px;
  border:none;
  border-radius:14px;
  margin-right:16px;
  cursor:pointer;
}

.primary-btn{
  background:
    linear-gradient(
      135deg,
      #22c55e,
      #eab308
    );
  color:white;
}

.secondary-btn{
  background:transparent;
  border:1px solid #22c55e;
  color:white;
}

.stats{
  display:flex;
  gap:20px;
  margin-top:60px;
  flex-wrap:wrap;
}

.stat-card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:24px;
  backdrop-filter:blur(18px);
  min-width:220px;
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.farm-box{
  width:100%;
  max-width:430px;
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:28px;
  backdrop-filter:blur(18px);
}

.pool{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  border-radius:18px;
  background:#111827;
  margin-bottom:20px;
}

.farm-btn{
  width:100%;
  padding:18px;
  border:none;
  border-radius:16px;
  background:
    linear-gradient(
      135deg,
      #22c55e,
      #eab308
    );
  color:white;
  cursor:pointer;
}

.section{
  padding:120px 80px;
}

.section h2{
  text-align:center;
  font-size:54px;
  margin-bottom:70px;
}

.grid,
.steps,
.roadmap{
  display:grid;
  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card,
.step-card,
.roadmap-card,
.content-box{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:24px;
  backdrop-filter:blur(18px);
}

.step-card span{
  font-size:42px;
  color:#22c55e;
  font-weight:bold;
}

.content-box ul{
  margin-top:20px;
  padding-left:20px;
}

.content-box li{
  margin-bottom:12px;
}

.footer{
  padding:50px;
  text-align:center;
  opacity:0.7;
}

@media(max-width:768px){

  .header{
    padding:20px;
    flex-direction:column;
    gap:20px;
  }

  .hero{
    padding:160px 24px 80px;
  }

  .hero h1{
    font-size:52px;
  }

  .section{
    padding:80px 24px;
  }

}
