/* =========================================
   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,#140021,#111827,#000000);
  color:white;
  position:relative;
}

/* =========================================
   BACKGROUND
========================================= */

.arena-bg{
  position:fixed;
  inset:0;
  background-image:
  radial-gradient(rgba(168,85,247,0.18) 1px, transparent 1px);
  background-size:28px 28px;
  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:#a855f7;
}

/* =========================================
   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;
}

.live-badge{
  display:inline-block;
  background:#a855f7;
  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
========================================= */

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

.main-btn,
.secondary-btn,
.watch-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:#a855f7;
}

.secondary-btn,
.next-btn{
  background:#111827;
}

.watch-btn{
  background:black;
}

.main-btn:hover,
.secondary-btn:hover,
.watch-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:560px;
  border-radius:28px;
  overflow:hidden;
  border:4px solid #8400ff;
  background:#111;
  box-shadow:
    0 0 30px rgba(0,255,157,0.35),
    0 0 70px rgba(0,255,157,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(0,255,157,0.18),
    transparent
  );
  pointer-events:none;
}

/* =========================================
   STREAM FRAME
========================================= */

.stream-frame{
  width:420px;
  max-width:100%;
  background:#111827;
  padding:20px;
  border-radius:35px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  position:relative;
}

.stream-screen{
  background:linear-gradient(135deg,#a855f7,#111827);
  border-radius:25px;
  padding:30px;
}

.live-dot{
  width:18px;
  height:18px;
  background:red;
  border-radius:50%;
  margin-bottom:20px;
}

.stream-title{
  font-family:'Bangers',cursive;
  font-size:2rem;
  margin-bottom:25px;
}

.chat-box{
  background:rgba(0,0,0,0.4);
  padding:16px;
  border-radius:18px;
  margin-bottom:15px;
  border:2px solid white;
}

.rotate1{ transform:rotate(-3deg); }
.rotate2{ transform:rotate(2deg); }
.rotate3{ transform:rotate(-2deg); }

/* =========================================
   LIVE / VIEWERS
========================================= */

.live-sticker{
  position:absolute;
  top:18px;
  right:18px;
  background:#1100ff;
  color:#000;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:800;
  letter-spacing:1px;
  box-shadow:0 0 20px rgba(55,0,255,0.5);
}

.viewers-badge{
  position:absolute;
  bottom:18px;
  left:18px;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:0.85rem;
  backdrop-filter:blur(6px);
}

.viewers{
  position:absolute;
  top:-15px;
  right:-15px;
  background:#00ff99;
  color:black;
  padding:10px 16px;
  border-radius:50px;
  border:3px solid black;
  font-weight:700;
}

/* =========================================
   SPEECH BUBBLE
========================================= */

.speech-bubble{
  position:absolute;
  bottom:-25px;
  right:-10px;
  background:linear-gradient(135deg,#0044ff,#00c2ff);
  color:#000;
  padding:14px 22px;
  border-radius:18px;
  font-weight:800;
  font-size:0.95rem;
  box-shadow:0 10px 30px rgba(0,255,157,0.35);
  max-width:260px;
}

/* =========================================
   STREAMS SECTION
========================================= */

.streams-section{
  padding:100px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.stream-card{
  background:#111827;
  padding:40px 30px;
  border-radius:30px;
  border:5px solid black;
  box-shadow:10px 10px 0 black;
}

.stream-icon{
  font-size:3rem;
  margin-bottom:20px;
}

.stream-card h2{
  font-size:2rem;
  margin-bottom:18px;
}

.stream-card p{
  line-height:1.8;
  color:#d1d5db;
}

/* =========================================
   ARENA SECTION
========================================= */

.arena-section{
  padding:80px 8%;
  display:flex;
  justify-content:center;
}

.arena-box{
  width:100%;
  max-width:950px;
  background:#a855f7;
  padding:50px;
  border-radius:40px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  text-align:center;
}

.arena-box h2{
  font-family:'Bangers',cursive;
  font-size:4rem;
  margin-bottom:40px;
}

.arena-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  margin-bottom:40px;
}

.arena-item{
  background:#111827;
  padding:30px 20px;
  border-radius:25px;
  border:4px solid black;
}

.arena-item 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;
  }

  .hero-buttons{
    justify-content:center;
  }

  .speech-bubble{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
    max-width:100%;
  }

  .streams-section{
    padding:80px 20px;
  }

  .arena-section{
    padding:70px 20px;
  }

  .arena-box{
    padding:40px 25px;
  }

  .arena-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;
  }

  .live-badge{
    font-size:0.82rem;
    padding:9px 14px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .main-btn,
  .secondary-btn,
  .watch-btn,
  .next-btn{
    width:100%;
    max-width:320px;
  }

  .stream-frame{
    border-radius:28px;
    padding:16px;
  }

  .stream-screen{
    padding:22px;
    border-radius:22px;
  }

  .stream-title{
    font-size:1.6rem;
  }

  .chat-box{
    padding:14px;
  }

  .stream-card{
    padding:30px 22px;
  }

  .stream-card h2{
    font-size:1.6rem;
  }

  .stream-card p{
    font-size:0.95rem;
  }

  .stream-icon{
    font-size:2.5rem;
  }

  .arena-box{
    border-radius:30px;
    padding:35px 18px;
  }

  .arena-box h2{
    font-size:2.2rem;
  }

  .arena-item{
    padding:24px 16px;
  }

  .arena-item 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;
  }

  .arena-box h2,
  .next-portal h2{
    font-size:1.8rem;
  }

}