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

body{
  font-family:'Inter',sans-serif;
  background:#07153f;
  color:#E6E6E6;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at top left,#1F3C88 0%,transparent 40%),
  radial-gradient(circle at bottom right,#0b1d58 0%,transparent 40%);
  z-index:-1;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  position:sticky;
  top:0;
  backdrop-filter:blur(12px);
  background:rgba(5,10,40,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  font-size:2rem;
  font-weight:800;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#E6E6E6;
  transition:.3s;
}

nav a:hover{
  color:#D7DF23;
}

.generate-btn,
.primary-btn{
  background:#D7DF23;
  color:#111;
  border:none;
  padding:14px 26px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  text-decoration:none;
}

.generate-btn:hover,
.primary-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 25px #d7df23aa;
}

.secondary-btn{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
  padding:14px 26px;
  border-radius:14px;
}

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
  min-height:90vh;
  padding:60px;
}

.hero h1{
  font-size:5rem;
  line-height:1;
}

.hero h1 span{
  color:#D7DF23;
}

.hero h2{
  margin-top:20px;
  font-size:2rem;
  line-height:1.3;
}

.green{
  color:#D7DF23;
}

.hero p{
  margin-top:20px;
  font-size:1.1rem;
  color:#c9d0ff;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
}

.network{
  height:500px;
  position:relative;
  border:1px solid rgba(255,255,255,.08);
  border-radius:40px;
  background:rgba(255,255,255,.03);
}

.ball{
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  position:absolute;
  box-shadow:0 0 25px rgba(255,255,255,.3);
}

.main{
  background:#D7DF23;
  color:#111;
}

.extra{
  background:#fff;
  color:#111;
}

.network .ball:nth-child(1){top:70%;left:10%;}
.network .ball:nth-child(2){top:10%;left:30%;}
.network .ball:nth-child(3){top:20%;left:65%;}
.network .ball:nth-child(4){top:40%;left:40%;width:90px;height:90px;font-size:2rem;}
.network .ball:nth-child(5){top:60%;left:75%;}
.network .ball:nth-child(6){top:70%;left:50%;}

.about,
.draw-section,
.generator,
.support{
  padding:80px 60px;
}

.about h2,
.draw-section h2,
.generator h2{
  font-size:3rem;
  margin-bottom:40px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:rgba(255,255,255,.05);
  padding:35px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(215,223,35,.2);
}

.draw-card,
.support-card{
  background:rgba(255,255,255,.05);
  border-radius:30px;
  padding:40px;
  border:1px solid rgba(255,255,255,.08);
}

.draw-date{
  margin-bottom:25px;
  color:#D7DF23;
}

.numbers{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.api-note{
  margin-top:25px;
  color:#8ea0ff;
}

.generator{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.generator-right{
  background:rgba(255,255,255,.05);
  padding:30px;
  border-radius:24px;
}

.generator-right input{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  margin-bottom:20px;
  background:#0f215f;
  color:white;
}

.generator-right button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:#D7DF23;
  font-weight:700;
  cursor:pointer;
}

#results{
  margin-top:30px;
  display:grid;
  gap:15px;
}

.combo{
  background:#0f215f;
  padding:15px;
  border-radius:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.combo .ball{
  position:relative;
  width:45px;
  height:45px;
  font-size:.9rem;
}

.support-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

footer{
  padding:60px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer-links{
  margin:20px 0;
  display:flex;
  justify-content:center;
  gap:25px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

@media(max-width:900px){

.hero,
.generator{
grid-template-columns:1fr;
}

.hero h1{
font-size:3.5rem;
}

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

.about,
.draw-section,
.generator,
.support{
padding:50px 20px;
}

.support-card{
flex-direction:column;
align-items:flex-start;
}

}
