*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Rajdhani',sans-serif;
  background:#06111f;
  color:white;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at top left, rgba(0,195,255,0.35), transparent 35%),
  radial-gradient(circle at bottom right, rgba(0,132,255,0.25), transparent 35%),
  linear-gradient(135deg,#04101d,#071f38,#03101d,#081826);
  z-index:-2;
}

.ton-grid{
  position:fixed;
  inset:0;
  background-image:
  linear-gradient(rgba(0,195,255,0.06) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,195,255,0.06) 1px, transparent 1px);
  background-size:40px 40px;
  z-index:-1;
}

.floating{
  position:fixed;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:-1;
}

.floating span{
  position:absolute;
  font-size:24px;
  animation:float 12s linear infinite;
  opacity:0.15;
}

@keyframes float{
  from{
    transform:translateY(100vh) rotate(0deg);
  }

  to{
    transform:translateY(-120vh) rotate(360deg);
  }
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 8%;
  position:relative;
}

.hero::before{
  content:"TON NETWORK";
  position:absolute;
  top:12%;
  left:50%;
  transform:translateX(-50%);
  font-size:12vw;
  color:rgba(255,255,255,0.03);
  font-family:'Audiowide',cursive;
}

.hero-logo{
  width:220px;
  height:220px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:30px;
  border:2px solid rgba(0,195,255,0.35);
}

h1{
  font-family:'Audiowide',cursive;
  font-size:90px;
  color:#00c3ff;
  letter-spacing:10px;
}

.ticker{
  color:#00c3ff;
  font-family:'Orbitron',sans-serif;
  letter-spacing:10px;
  margin:20px 0;
}

.hero p{
  font-size:20px;
  color:#ddd;
  margin-bottom:40px;
}

.contract-wrapper{
  display:flex;
  justify-content:center;
  margin-bottom:35px;
}

.contract-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border:1px solid rgba(0,195,255,0.25);
  border-radius:999px;
  background:rgba(255,255,255,0.03);
  max-width:90%;
}

.copy-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#00c3ff,#0084ff);
}

.buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 38px;
  border-radius:999px;
  text-decoration:none;
  border:2px solid #00c3ff;
  color:white;
}

.btn-primary{
  background:linear-gradient(135deg,#00c3ff,#0084ff);
  color:black;
}

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  font-size:52px;
  color:#00c3ff;
  margin-bottom:60px;
  font-family:'Audiowide',cursive;
}

.modern-list{
  max-width:1100px;
  margin:auto;
}

.modern-item{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:40px;
  margin-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.modern-item h3{
  color:#00c3ff;
  font-size:42px;
  font-family:'Orbitron',sans-serif;
}

.modern-item span{
  letter-spacing:4px;
  color:rgba(255,255,255,0.45);
}

.modern-item p{
  max-width:520px;
  line-height:1.8;
}

.meme-banner{
  margin-top:40px;
  font-family:'Press Start 2P',cursive;
  font-size:12px;
}

.meme-strip{
  margin-top:60px;
}

.meme-strip img{
  width:220px;
  border-radius:24px;
}

footer{
  padding:50px 8%;
  text-align:center;
}

.socials{
  margin-top:20px;
}

.socials a{
  color:#00c3ff;
  margin:0 12px;
  text-decoration:none;
}

@media(max-width:768px){

  h1{
    font-size:46px;
    letter-spacing:4px;
  }

  .hero-logo{
    width:150px;
    height:150px;
  }

  .modern-item{
    flex-direction:column;
  }

  .modern-item h3{
    font-size:28px;
  }

  .btn{
    width:100%;
  }

}