/* =========================================
   GLOBAL RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(135deg,#000000,#111827,#0f172a);
  color:white;
  position:relative;
}

/* =========================================
   BACKGROUND
========================================= */

.bg-lines{
  position:fixed;
  inset:0;
  background-image:
  linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:30px 30px;
  z-index:-1;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 8%;
  gap:20px;
}

.logo{
  font-family:'Bangers',cursive;
  font-size:2.2rem;
  line-height:1;
}

nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.3s;
  white-space:nowrap;
}

nav a:hover,
nav .active{
  color:#00f7ff;
}

/* =========================================
   HERO
========================================= */

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:50px 8%;
  gap:60px;
  flex-wrap:wrap;
}

.hero-left{
  flex:1;
  min-width:300px;
}

.viral-badge{
  display:inline-block;
  background:#ff0050;
  color:white;
  padding:12px 18px;
  border-radius:50px;
  border:4px solid black;
  box-shadow:6px 6px 0 black;
  font-weight:700;
  margin-bottom:25px;
}

.hero h1{
  font-family:'Bangers',cursive;
  font-size:6rem;
  line-height:0.9;
  margin-bottom:25px;
  text-shadow:5px 5px 0 black;
}

.hero p{
  font-size:1.2rem;
  line-height:1.8;
  color:#d1d5db;
  max-width:620px;
}

/* =========================================
   BUTTONS
========================================= */

.buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

.main-btn,
.secondary-btn,
.viral-btn,
.next-btn{
  text-decoration:none;
  color:white;
  padding:16px 28px;
  border-radius:18px;
  border:4px solid black;
  box-shadow:6px 6px 0 black;
  font-weight:700;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.main-btn{
  background:#00f7ff;
  color:black;
}

.secondary-btn,
.next-btn{
  background:#111827;
}

.viral-btn{
  background:#ff0050;
}

.main-btn:hover,
.secondary-btn:hover,
.viral-btn:hover,
.next-btn:hover{
  transform:translateY(-6px);
}

/* =========================================
   HERO RIGHT
========================================= */

.hero-right{
  flex:1;
  min-width:300px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

/* =========================================
   HERO IMAGE CARD
========================================= */

.hero-image-card{
  position:relative;
  width:100%;
  max-width:540px;
  border-radius:30px;
  overflow:hidden;
  border:4px solid #ff2d55;
  background:#111;
  box-shadow:
    0 0 30px rgba(255,45,85,0.35),
    0 0 70px rgba(255,45,85,0.15);
  transition:0.4s ease;
}

.hero-image-card:hover{
  transform:scale(1.03);
}

.hero-image-card img{
  width:100%;
  display:block;
  object-fit:cover;
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(255,45,85,0.18),
    transparent
  );
  pointer-events:none;
}

/* =========================================
   PHONE FRAME
========================================= */

.phone-frame{
  width:340px;
  max-width:100%;
  background:#111827;
  padding:20px;
  border-radius:40px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  position:relative;
}

.phone-screen{
  background:black;
  border-radius:25px;
  padding:25px;
}

.top-bar{
  margin-bottom:20px;
  color:#00f7ff;
}

.video-card{
  background:#1f2937;
  padding:20px;
  border-radius:18px;
  margin-bottom:18px;
  border:3px solid #00f7ff;
  font-weight:700;
}

.rotate1{ transform:rotate(-3deg); }
.rotate2{ transform:rotate(2deg); }
.rotate3{ transform:rotate(-2deg); }

/* =========================================
   LIVE TAG
========================================= */

.live-tag{
  position:absolute;
  top:18px;
  right:18px;
  background:#ff2d55;
  color:white;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:800;
  letter-spacing:1px;
  box-shadow:0 0 20px rgba(255,45,85,0.5);
}

/* =========================================
   SPEECH BUBBLE
========================================= */

.speech-bubble{
  position:absolute;
  bottom:-25px;
  right:-10px;
  background:linear-gradient(135deg,#ff2d55,#ff6a00);
  color:white;
  padding:14px 22px;
  border-radius:18px;
  font-weight:700;
  font-size:0.95rem;
  box-shadow:0 10px 30px rgba(255,45,85,0.35);
  max-width:260px;
}

/* =========================================
   CLIPS SECTION
========================================= */

.clips-section{
  padding:100px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.clip-card{
  background:#111827;
  padding:40px 30px;
  border-radius:30px;
  border:5px solid black;
  box-shadow:10px 10px 0 black;
}

.clip-icon{
  font-size:3rem;
  margin-bottom:20px;
}

.clip-card h2{
  font-size:2rem;
  margin-bottom:18px;
}

.clip-card p{
  line-height:1.8;
  color:#d1d5db;
}

/* =========================================
   STATS SECTION
========================================= */

.stats-section{
  padding:80px 8%;
  display:flex;
  justify-content:center;
}

.stats-box{
  width:100%;
  max-width:900px;
  background:#00f7ff;
  color:black;
  padding:50px;
  border-radius:40px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  text-align:center;
}

.stats-box h2{
  font-family:'Bangers',cursive;
  font-size:4rem;
  margin-bottom:40px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  margin-bottom:40px;
}

.stat{
  background:#111827;
  color:white;
  padding:30px 20px;
  border-radius:25px;
  border:4px solid black;
}

.stat h3{
  font-size:2rem;
  margin-bottom:10px;
}

/* =========================================
   NEXT PORTAL
========================================= */

.next-portal{
  margin:100px 8%;
  background:#facc15;
  color:black;
  padding:70px 40px;
  border-radius:40px;
  text-align:center;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
}

.arrow{
  font-size:4rem;
  margin-bottom:20px;
}

.next-portal h2{
  font-family:'Bangers',cursive;
  font-size:4rem;
  margin-bottom:20px;
}

.next-portal p{
  font-size:1.2rem;
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
}

/* =========================================
   FOOTER
========================================= */

footer{
  text-align:center;
  padding:40px 20px;
  color:#9ca3af;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width:768px){

  .navbar{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:25px 20px;
  }

  nav{
    justify-content:center;
    gap:14px;
  }

  .hero{
    flex-direction:column;
    text-align:center;
    padding:50px 20px;
    gap:50px;
  }

  .hero-left,
  .hero-right{
    width:100%;
    min-width:100%;
  }

  .hero h1{
    font-size:4rem;
  }

  .hero p{
    margin:auto;
    font-size:1.05rem;
  }

  .buttons{
    justify-content:center;
  }

  .speech-bubble{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
    max-width:100%;
  }

  .clips-section{
    padding:80px 20px;
  }

  .stats-section{
    padding:70px 20px;
  }

  .stats-box{
    padding:40px 25px;
  }

  .stats-box h2,
  .next-portal h2{
    font-size:3rem;
  }

  .next-portal{
    margin:80px 20px;
    padding:50px 25px;
  }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width:576px){

  .logo{
    font-size:1.8rem;
  }

  nav a{
    font-size:0.9rem;
  }

  .hero{
    padding:40px 16px;
  }

  .hero h1{
    font-size:3rem;
    text-shadow:4px 4px 0 black;
  }

  .hero p{
    font-size:0.95rem;
    line-height:1.6;
  }

  .viral-badge{
    font-size:0.82rem;
    padding:9px 14px;
  }

  .buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .main-btn,
  .secondary-btn,
  .viral-btn,
  .next-btn{
    width:100%;
    max-width:320px;
  }

  .phone-frame{
    border-radius:30px;
    padding:16px;
  }

  .phone-screen{
    padding:20px;
    border-radius:22px;
  }

  .video-card{
    padding:16px;
  }

  .clip-card{
    padding:30px 22px;
  }

  .clip-card h2{
    font-size:1.6rem;
  }

  .clip-card p{
    font-size:0.95rem;
  }

  .clip-icon{
    font-size:2.5rem;
  }

  .stats-box{
    border-radius:30px;
    padding:35px 18px;
  }

  .stats-box h2{
    font-size:2.2rem;
  }

  .stat{
    padding:24px 16px;
  }

  .stat h3{
    font-size:1.5rem;
  }

  .next-portal{
    border-radius:30px;
  }

  .next-portal h2{
    font-size:2.2rem;
  }

  .next-portal p{
    font-size:1rem;
  }

  .arrow{
    font-size:3rem;
  }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width:400px){

  .hero h1{
    font-size:2.4rem;
  }

  .stats-box h2,
  .next-portal h2{
    font-size:1.8rem;
  }

}