@font-face { font-family: 'breeserif'; src: url(fonts/breeserif/breeserif-regular-webfont.woff) format("woff"), url(fonts/breeserif/BreeSerif-Regular.ttf) format("truetype"); font-weight: 800; }

@font-face { font-family: 'amiko'; src: url(fonts/amiko/amiko-bold-webfont.woff) format("woff"), url(fonts/amiko/Amiko-Bold.ttf) format("truetype"); font-weight: 800; font-style: normal; }

@font-face { font-family: 'leaguegothic'; src: url(fonts/leagueGothic/leaguegothic-regular-webfont.woff) format("woff"), url(fonts/leagueGothic/LeagueGothic-Regular.ttf) format("truetype"); font-weight: 400; font-style: normal; }

@font-face { font-family: 'lato'; src: url(fonts/lato/lato-semibold-webfont.woff) format("woff"), url(fonts/lato/Lato-Semibold.ttf) format("truetype"); font-weight: 500; font-style: normal; }

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

body{
  overflow:hidden;
  color:#fff;
  background:#001C68;
}

/* ===== CANVAS BACKGROUND (REPLACED) ===== */
#net{
  position:fixed;
  inset:0;
  z-index:-3;
}

/* glow orbs (kept from your design) */
body::before,
body::after{
  content:"";
  position:fixed;
  width:350px;
  height:350px;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.25;
  z-index:-4;
}

body::before{
  background:#ff6a3d;
  top:-100px;
  left:-100px;
}

body::after{
  background:#3dd6ff;
  bottom:-120px;
  right:-120px;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:65px 10%;
  gap:40px;
	
}

/* LEFT CARD */
.left{
  max-width:725px;
  padding:35px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:22px;
  box-shadow:0 25px 70px rgba(0,0,0,0.6);
}

.badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:50px;
  font-size:16px;
  background:rgb(1 0 61 / 12%);
  border:1px solid rgb(255 255 255 / 61%);
  color:#00e9ff;
	font-family: 'breeserif'; 
}

h1{
  font-size:55px;
  margin:20px 0;
	font-family: 'amiko';
	line-height: 55px;
	text-align: justify;
}

h1 span{
   background: linear-gradient(90deg, #ffe100, #ff6a11);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
	font-family: 'amiko';
	line-height: 55px;
	font-size:55px;
}

.tag{
  color:#3dd6ff;
  margin-top:10px;
	font-family: 'amiko';
	    font-size: 20px;
}

p{
    color: #ffffff;
    line-height: 1.5;
    font-family: 'lato';
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0.2px;
}

/* buttons */
.buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.btn{
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  transition:0.3s;
  font-weight:500;
}

.primary{
  background:linear-gradient(135deg, #ff5521, #ff0c00);
  color:#fff;
  box-shadow:0 10px 25px rgba(255,106,61,0.3);
	font-family: 'breeserif';
}

.primary:hover{
  transform:translateY(-3px);
}

.secondary{
  border:1px solid rgb(0 201 255 / 50%);
  color:#00c9ff;
  background:rgba(61,214,255,0.08);
	font-family: 'breeserif';
}

.secondary:hover{
  background:#3dd6ff;
  color:#000;
}

/* RIGHT */
.right{
  flex:1;
  display:flex;
  justify-content:center;
}

.logo{
  width:350px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

/* responsive */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    text-align:center;
    padding:60px 6%;
  }

  h1{
    font-size:38px;
  }

  .buttons{
    justify-content:center;
  }
}