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

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

.bg-overlay{
  position:fixed;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at top left,#00f0ff22,transparent 40%),
    radial-gradient(circle at bottom right,#7c3aed33,transparent 40%);
  z-index:-1;
}

.header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.05);
  z-index:1000;
}

.logo{
  font-size:24px;
  font-weight:bold;
  color:#00f0ff;
}

.nav a{
  margin:0 16px;
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.nav a:hover{
  color:#00f0ff;
}

.wallet-btn{
  padding:12px 22px;
  border:none;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    #00f0ff,
    #7c3aed
  );
  color:white;
  cursor:pointer;
  font-weight:bold;
}

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

.hero-left{
  flex:1;
}

.badge{
  display:inline-block;
  padding:10px 20px;
  border-radius:30px;
  background:#00f0ff22;
  color:#00f0ff;
  margin-bottom:25px;
}

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

.hero p{
  max-width:650px;
  opacity:0.8;
  line-height:1.8;
  font-size:18px;
}

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

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

.primary-btn{
  background:linear-gradient(
    135deg,
    #00f0ff,
    #7c3aed
  );
  color:white;
}

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

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

.stat-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(20px);
  padding:28px;
  border-radius:20px;
  min-width:220px;
}

.stat-card h2{
  color:#00f0ff;
  margin-bottom:10px;
}

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

.dashboard-card{
  width:100%;
  max-width:450px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(20px);
  border-radius:24px;
  padding:40px;
}

.dashboard-card h3{
  margin-bottom:30px;
  font-size:28px;
}

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

.pool span{
  color:#00f0ff;
  font-weight:bold;
}

.section{
  padding:120px 80px;
}

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

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

.feature-card,
.farm-card,
.roadmap-item{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  padding:40px;
  border-radius:24px;
  transition:0.3s;
}

.feature-card:hover,
.farm-card:hover,
.roadmap-item:hover{
  transform:translateY(-8px);
}

.farm-card button{
  margin-top:24px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(
    135deg,
    #00f0ff,
    #7c3aed
  );
  color:white;
  cursor:pointer;
}

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

@media(max-width:992px){

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

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

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

  .section{
    padding:100px 30px;
  }

}
