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

body{
  background:#ffffff;
  color:#111827;
  font-family:Arial;
  overflow-x:hidden;
}

.background{
  position:fixed;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at top left,#2563eb11,transparent 35%),
    radial-gradient(circle at bottom right,#06b6d411,transparent 35%);
  z-index:-1;
}

.header{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 60px;
  backdrop-filter:blur(16px);
  background:rgba(255,255,255,0.7);
  border-bottom:1px solid #e5e7eb;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#2563eb;
}

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

#connectWallet{
  padding:14px 26px;
  border:none;
  border-radius:14px;
  background:linear-gradient(
    135deg,
    #2563eb,
    #06b6d4
  );
  color:white;
  cursor:pointer;
}

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

.hero-left{
  flex:1;
}

.badge{
  display:inline-block;
  padding:10px 20px;
  border-radius:30px;
  background:#2563eb11;
  color:#2563eb;
  margin-bottom:24px;
}

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

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

.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,
    #2563eb,
    #06b6d4
  );
  color:white;
}

.secondary-btn{
  background:white;
  border:1px solid #2563eb;
  color:#111827;
}

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

.stat-card{
  background:white;
  padding:30px;
  border-radius:22px;
  border:1px solid #e5e7eb;
  min-width:220px;
}

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

.lend-box{
  width:100%;
  max-width:430px;
  background:white;
  padding:40px;
  border-radius:28px;
  border:1px solid #e5e7eb;
}

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

.lend-btn{
  width:100%;
  padding:18px;
  border:none;
  border-radius:16px;
  background:linear-gradient(
    135deg,
    #2563eb,
    #06b6d4
  );
  color:white;
  cursor:pointer;
}

.section{
  padding:120px 80px;
}

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

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

.card,
.roadmap-card,
.token-card{
  background:white;
  padding:40px;
  border-radius:24px;
  border:1px solid #e5e7eb;
}

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