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

body{

  font-family:'Open Sans',sans-serif;

  background:#020617;

  color:white;

  overflow-x:hidden;

}

/* NAVBAR */

.navbar{

  width:100%;

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:20px 80px;

  background:#07122F;

  position:sticky;

  top:0;

  z-index:1000;

}

.logo{

  font-size:42px;

  font-weight:800;

}

.logo span{

  color:#6C63FF;

}

.nav-links{

  display:flex;

  gap:40px;

  list-style:none;

}

.nav-links a{

  color:white;

  text-decoration:none;

  font-size:17px;

  transition:0.3s;

}

.nav-links a:hover{

  color:#6C63FF;

}

.nav-right{

  display:flex;

  gap:15px;

}

/* BUTTONS */

.primary-btn,
.secondary-btn,
.login-btn,
.register-btn{

  height:52px;

  padding:0 26px;

  border-radius:14px;

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;

  transition:0.3s;

}

.primary-btn,
.register-btn{

  background:
  linear-gradient(
    135deg,
    #6C63FF,
    #7C3AED
  );

  color:white;

}

.secondary-btn,
.login-btn{

  border:
  1px solid rgba(255,255,255,0.12);

  color:white;

}

.primary-btn:hover,
.register-btn:hover{

  transform:
  translateY(-4px);

}

/* HERO */

.hero-section{

  width:100%;

  min-height:100vh;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:60px;

  align-items:center;

  padding:100px 80px;

}

.hero-badge{

  display:inline-flex;

  padding:12px 22px;

  border-radius:50px;

  background:
  rgba(108,99,255,0.15);

  margin-bottom:30px;

}

.hero-left h1{

  font-size:82px;

  line-height:1.1;

  margin-bottom:25px;

}

.hero-left h1 span{

  color:#6C63FF;

}

.hero-left p{

  color:#CBD5E1;

  line-height:1.9;

  font-size:18px;

  margin-bottom:40px;

}

.hero-buttons{

  display:flex;

  gap:20px;

  margin-bottom:50px;

}

.hero-stats{

  display:flex;

  gap:25px;

}

.stat-box{

  background:#07122F;

  border-radius:24px;

  padding:30px;

  min-width:180px;

}

.stat-box h2{

  font-size:42px;

  margin-bottom:10px;

}

.hero-image-card img{

  width:100%;

  border-radius:32px;

}

/* FEATURED */

.featured-section{

  padding:80px;

}

.section-title{

  text-align:center;

  margin-bottom:60px;

}

.section-title h2{

  font-size:58px;

  margin-bottom:18px;

}

.featured-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;

}

.course-card{

  background:#07122F;

  border-radius:28px;

  overflow:hidden;

}

.course-card img{

  width:100%;

  height:230px;

  object-fit:cover;

}

.course-content{

  padding:28px;

}

.course-category{

  display:inline-block;

  padding:10px 18px;

  border-radius:50px;

  background:
  rgba(108,99,255,0.15);

  color:#A78BFA;

  margin-bottom:20px;

}

.course-content h3{

  font-size:28px;

  margin-bottom:15px;

}

.course-content p{

  color:#CBD5E1;

  line-height:1.8;

  margin-bottom:25px;

}

.course-footer{

  display:flex;

  align-items:center;

  justify-content:space-between;

}

.course-footer h4{

  font-size:34px;

  color:#10B981;

}

.course-footer button{

  height:50px;

  padding:0 20px;

  border:none;

  border-radius:14px;

  background:#6C63FF;

  color:white;

  cursor:pointer;

}

/* CTA */

.cta-section{

  padding:80px;

}

.cta-card{

  padding:80px;

  border-radius:40px;

  text-align:center;

  background:
  linear-gradient(
    135deg,
    #6C63FF,
    #7C3AED
  );

}

.cta-card h2{

  font-size:58px;

  margin-bottom:20px;

}

.cta-card p{

  margin-bottom:35px;

}

/* FOOTER */

.footer{

  background:#07122F;

  padding:80px 80px 30px;

  margin-top:80px;

}

.footer-top{

  display:grid;

  grid-template-columns:
  2fr 1fr 1fr 1.5fr;

  gap:50px;

  margin-bottom:50px;

}

.footer-logo{

  font-size:42px;

  font-weight:800;

  margin-bottom:20px;

}

.footer-logo span{

  color:#6C63FF;

}

.footer-brand p{

  color:#CBD5E1;

  line-height:1.9;

}

.footer-links{

  display:flex;

  flex-direction:column;

}

.footer-links h3,
.footer-newsletter h3{

  font-size:26px;

  margin-bottom:25px;

}

.footer-links a{

  color:#CBD5E1;

  text-decoration:none;

  margin-bottom:15px;

}

.newsletter-form{

  display:flex;

  flex-direction:column;

  gap:15px;

}

.newsletter-form input{

  height:55px;

  border:none;

  border-radius:14px;

  background:#020B24;

  padding:0 18px;

  color:white;

}

.newsletter-form button{

  height:55px;

  border:none;

  border-radius:14px;

  background:#6C63FF;

  color:white;

  cursor:pointer;

}

.footer-bottom{

  text-align:center;

  color:#CBD5E1;

}

/* RESPONSIVE */

@media(max-width:1200px){

  .featured-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

@media(max-width:992px){

  .hero-section{

    grid-template-columns:1fr;

    text-align:center;

  }

  .hero-buttons,
  .hero-stats{

    justify-content:center;

    flex-wrap:wrap;

  }

}

@media(max-width:768px){

  .navbar{

    flex-direction:column;

    gap:20px;

    padding:20px;

  }

  .nav-links{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

  }

  .nav-right{

    width:100%;

    justify-content:center;

    flex-wrap:wrap;

  }

  .hero-section{

    padding:60px 20px;

  }

  .hero-left h1{

    font-size:48px;

  }

  .hero-buttons{

    flex-direction:column;

  }

  .primary-btn,
  .secondary-btn{

    width:100%;

  }

  .hero-stats{

    flex-direction:column;

  }

  .stat-box{

    width:100%;

  }

  .featured-grid{

    grid-template-columns:1fr;

  }

  .featured-section,
  .cta-section{

    padding:60px 20px;

  }

  .section-title h2{

    font-size:38px;

  }

  .cta-card{

    padding:50px 25px;

  }

  .cta-card h2{

    font-size:36px;

  }

  .footer{

    padding:60px 20px 30px;

  }

  .footer-top{

    grid-template-columns:1fr;

  }

}

@media(max-width:480px){

  .hero-left h1{

    font-size:38px;

  }

  .section-title h2{

    font-size:30px;

  }

  .cta-card h2{

    font-size:28px;

  }

}

/*=============================
ANNOUNCEMENT POPUP
=============================*/

.announcement-overlay{

position:fixed;
inset:0;

background:rgba(0,0,0,.72);

display:flex;

align-items:center;

justify-content:center;

z-index:999999;

animation:fadeIn .35s;

}

.announcement-box{

width:520px;
max-width:92%;

background:#07122F;

border-radius:24px;

padding:40px;

text-align:center;

position:relative;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 30px 70px rgba(0,0,0,.45);

animation:popupScale .45s ease;

}

.announcement-icon{

font-size:70px;

margin-bottom:15px;

animation:float 2.5s infinite;

}

.release-date{

margin:25px 0;

padding:16px;

border-radius:14px;

background:linear-gradient(135deg,#6C63FF,#8B5CF6);

font-size:28px;

font-weight:700;

}

.announcement-text{

margin:20px 0;

color:#CBD5E1;

line-height:1.8;

}

.announcement-contact{

margin-top:20px;

font-size:17px;

}

.announcement-contact a{

color:#8B5CF6;

font-weight:700;

text-decoration:none;

}

.announcement-btn{

margin-top:30px;

height:52px;

padding:0 34px;

border:none;

border-radius:14px;

background:#6C63FF;

color:white;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.announcement-btn:hover{

transform:translateY(-2px);

}

.announcement-close{

position:absolute;

right:15px;

top:15px;

width:40px;

height:40px;

border:none;

border-radius:50%;

cursor:pointer;

font-size:22px;

background:#111C44;

color:white;

}

@keyframes popupScale{

0%{

opacity:0;

transform:scale(.7);

}

100%{

opacity:1;

transform:scale(1);

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}
