*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:white;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

body.no-scroll{
  overflow:hidden;
}

button{
  border:none;
  cursor:pointer;
  font-family:inherit;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
}

/* AGE GATE */

.age-gate{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.94);
  backdrop-filter:blur(12px);
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.age-box{
  width:100%;
  max-width:430px;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:36px;
  text-align:center;
  box-shadow:0 0 50px rgba(239,68,68,.15);
}

.age-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#ef4444;
  margin:auto;
  box-shadow:0 0 18px #ef4444;
}

.age-box h1{
  margin-top:18px;
  font-size:36px;
  font-weight:900;
}

.age-box p{
  margin-top:16px;
  color:#a1a1aa;
  line-height:1.7;
  font-size:15px;
}

.age-buttons{
  margin-top:28px;
}

.age-buttons button{
  width:100%;
  height:58px;
  border-radius:18px;
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
  font-size:15px;
  font-weight:900;
  transition:.25s;
}

.age-buttons button:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(239,68,68,.45);
}

.age-buttons a{
  display:block;
  margin-top:16px;
  color:#71717a;
  font-size:14px;
}

/* MENU */

.menu-overlay{
  position:fixed;
  inset:0;
  z-index:300;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(8px);
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

.menu-panel{
  position:absolute;
  top:0;
  left:0;
  width:420px;
  max-width:90%;
  height:100%;
  background:#050505;
  border-right:1px solid rgba(255,255,255,.06);
  transform:translateX(-100%);
  transition:.35s cubic-bezier(.77,0,.18,1);
  display:flex;
  flex-direction:column;
  padding:26px;
}

.menu-overlay.active .menu-panel{
  transform:translateX(0);
}

.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.menu-top span{
  color:#71717a;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
}

.menu-top button{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#111;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-top button i{
  width:22px;
  height:22px;
}

.menu-links{
  margin-top:50px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.menu-links a{
  height:62px;
  border-radius:16px;
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  transition:.25s;
}

.menu-links a:hover{
  border-color:rgba(239,68,68,.35);
  background:#111;
}

.menu-links a:hover span{
  color:#ef4444;
}

.menu-links span{
  font-size:18px;
  font-weight:800;
  transition:.25s;
}

.menu-links i{
  width:18px;
  height:18px;
  color:#71717a;
}

.menu-join{
  margin-top:28px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
  font-size:15px;
  font-weight:900;
}

.menu-footer{
  margin-top:auto;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.menu-footer a{
  color:#a1a1aa;
  font-size:14px;
  transition:.25s;
}

.menu-footer a:hover{
  color:#ef4444;
}

.menu-footer p{
  margin-top:8px;
  color:#52525b;
  font-size:12px;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:120;
  background:rgba(5,5,5,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.header-inner{
    height:82px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    padding:0 20px;
    gap:18px;
}

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}
.logo img{
    height:120px;
    width:auto;
    display:block;
}


.logo-white{
  font-size:42px;
  font-weight:900;
  letter-spacing:-2px;
}

.logo-red{
  font-size:42px;
  font-weight:900;
  color:#ef4444;
  letter-spacing:-2px;
}

.live-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#ef4444;
  box-shadow:0 0 20px #ef4444;
}

.icon-btn{
  width:46px;
  height:46px;
  border-radius:14px;
  background:transparent;
  color:#d4d4d8;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.icon-btn:hover{
  background:#111;
  color:#ef4444;
}

.icon-btn i{
  width:24px;
  height:24px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.join-btn{
  height:52px;
  padding:0 22px;
  border-radius:16px;
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
  font-size:14px;
  font-weight:900;
  transition:.25s;
  width:100%;
  max-width:260px;
  text-align:center;
}

.join-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(239,68,68,.4);
}

.online-bar{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 20px 14px;
}

.online-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 10px #22c55e;
}

.online-bar p{
  color:#d4d4d8;
  font-size:15px;
}

/* MAIN */

.main{
  max-width:1550px;
  margin:auto;
  padding:20px 20px 120px;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  height:520px;
  border-radius:26px;
  background:
  linear-gradient(to right,rgba(0,0,0,.95),rgba(0,0,0,.35)),
  url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1600") center/cover;
  border:1px solid rgba(255,255,255,.06);
  padding:54px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,rgba(239,68,68,.35),transparent 30%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:520px;
}

.hero-live{
  color:#ef4444;
  font-size:15px;
  font-weight:900;
  letter-spacing:2px;
}

.hero h1{
  margin-top:18px;
  font-size:86px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-4px;
}

.hero h1 span{
  display:block;
  color:#ef4444;
}

.hero p{
  margin-top:22px;
  color:#e4e4e7;
  font-size:22px;
  line-height:1.6;
}

.hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:34px;
}

.hero-red{
  height:62px;
  padding:0 30px;
  border-radius:18px;
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
  font-size:15px;
  font-weight:900;
}

.hero-dark{
  height:62px;
  padding:0 26px;
  border-radius:18px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.15);
  color:white;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:800;
}

.hero-dark i{
  width:18px;
  height:18px;
}

.hero-side{
  position:absolute;
  right:30px;
  top:50%;
  transform:translateY(-50%);
  width:230px;
  border-radius:24px;
  overflow:hidden;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
}

.hero-side div{
  display:flex;
  gap:16px;
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.hero-side div:last-child{
  border-bottom:none;
}

.hero-side i{
  width:24px;
  height:24px;
  color:#ef4444;
}

.hero-side strong{
  display:block;
  font-size:22px;
  font-weight:900;
}

.hero-side p{
  color:white;
  font-size:14px;
}

/* SEARCH */

.search-bar{
  height:68px;
  border-radius:20px;
  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.06);
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 22px;
}

.search-bar i{
  width:22px;
  height:22px;
  color:#71717a;
}

.search-bar input{
  flex:1;
  background:transparent;
  border:none;
  outline:none;
  color:white;
  font-size:16px;
}

.search-bar input::placeholder{
  color:#71717a;
}

/* FILTERS */

.filters{
  display:flex;
  gap:12px;
  overflow-x:auto;
  margin-top:18px;
  scrollbar-width:none;
}

.filters::-webkit-scrollbar{
  display:none;
}

.filter{
  height:48px;
  padding:0 20px;
  border-radius:14px;
  background:#111;
  border:1px solid rgba(255,255,255,.05);
  color:#d4d4d8;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  transition:.25s;
}

.filter:hover{
  color:white;
  border-color:rgba(255,255,255,.15);
}

.filter.active{
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
}

/* SECTIONS */

.section{
  margin-top:34px;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.section-head h2{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ef4444;
  font-size:20px;
  font-weight:900;
}

.section-head h2 i{
  width:20px;
  height:20px;
}

.section-head a{
  color:#d4d4d8;
  transition:.25s;
}

.section-head a:hover{
  color:#ef4444;
}

/* LIVE GRID */

.live-grid{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scrollbar-width:none;
}

.live-grid::-webkit-scrollbar{
  display:none;
}

.live-card{
  min-width:230px;
  border-radius:22px;
  overflow:hidden;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,.05);
  transition:.25s;
}

.live-card:hover{
  transform:translateY(-6px);
  border-color:rgba(239,68,68,.35);
  box-shadow:0 0 40px rgba(239,68,68,.18);
}

.live-image{
  position:relative;
  height:330px;
  overflow:hidden;
}

.live-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  transition:transform .5s;
}

.live-card:hover img{
  transform:scale(1.08);
}

.live-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,#000,transparent 60%);
}

.live-badge{
  position:absolute;
  left:12px;
  top:12px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#ef4444;
  color:white;
  font-size:11px;
  font-weight:900;
  display:flex;
  align-items:center;
}

.viewer-badge{
  position:absolute;
  right:12px;
  top:12px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(8px);
  color:white;
  font-size:11px;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:6px;
}

.viewer-badge i{
  width:14px;
  height:14px;
}

.live-info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
}

.live-info h3{
  font-size:20px;
  font-weight:900;
}

.live-info p{
  margin-top:5px;
  color:#d4d4d8;
  font-size:14px;
}

.live-online{
  position:absolute;
  right:14px;
  bottom:16px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 10px #22c55e;
}

/* CATEGORY GRID */

.category-grid{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scrollbar-width:none;
}

.category-grid::-webkit-scrollbar{
  display:none;
}

.cat-card{
  min-width:190px;
  height:90px;
  border-radius:18px;
  background:
  linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2)),
  url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1200") center/cover;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border:1px solid rgba(255,255,255,.05);
}

.cat-card strong{
  font-size:20px;
  font-weight:900;
}

.cat-card span{
  margin-top:4px;
  color:#d4d4d8;
}

/* TRENDING */

.trending-grid{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scrollbar-width:none;
}

.trending-grid::-webkit-scrollbar{
  display:none;
}

.trend-card{
  min-width:92px;
  text-align:center;
}

.trend-avatar{
  width:88px;
  height:88px;
  border-radius:50%;
  padding:3px;
  background:linear-gradient(135deg,#ff4444,#ff8800,#ff44ff);
  position:relative;
}

.trend-avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #050505;
}

.trend-online{
  position:absolute;
  right:4px;
  bottom:4px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#22c55e;
  border:2px solid #050505;
}

.trend-card h4{
  margin-top:10px;
  font-size:15px;
  font-weight:800;
}

.trend-card p{
  margin-top:4px;
  color:#d4d4d8;
  font-size:13px;
}

/* CTA */

.cta{
  margin-top:36px;
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(239,68,68,.35);
  background:
  radial-gradient(circle at left,rgba(239,68,68,.12),transparent 30%),
  #090909;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cta-left{
  display:flex;
  align-items:center;
  gap:18px;
}

.cta-left i{
  width:34px;
  height:34px;
  color:#ef4444;
}

.cta h3{
  font-size:34px;
  font-weight:900;
}

.cta p{
  margin-top:5px;
  color:#d4d4d8;
}

.cta button{
  min-width:300px;
  height:60px;
  border-radius:18px;
  background:linear-gradient(to bottom,#ff4444,#dc2626);
  color:white;
  font-size:15px;
  font-weight:900;
}

/* FOOTER */

.footer{
  padding:34px 20px 120px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.05);
  margin-top:40px;
}

.footer p{
  color:#71717a;
}

.footer div{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:20px;
}

.footer a{
  color:#d4d4d8;
  transition:.25s;
}

.footer a:hover{
  color:#ef4444;
}

/* BOTTOM NAV */

.bottom-nav{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:200;
  height:80px;
  background:#050505;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-around;
}

.bottom-nav button{
  flex:1;
  height:100%;
  background:none;
  color:#d4d4d8;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  transition:.25s;
}

.bottom-nav button:hover{
  color:#ef4444;
}

.bottom-nav button.active{
  color:#ef4444;
}

.bottom-nav i{
  width:22px;
  height:22px;
}

.bottom-nav span{
  font-size:12px;
}

/* RESPONSIVE */

@media(max-width:980px){

.hero{
  height:auto;
  padding:34px 24px 150px;
}

.hero-side{
  width:calc(100% - 48px);
  left:24px;
  right:24px;
  top:auto;
  bottom:20px;
  transform:none;
}

.hero h1{
  font-size:56px;
}

.hero p{
  font-size:18px;
}

.cta{
  flex-direction:column;
  align-items:flex-start;
}

.cta button{
  width:100%;
  min-width:100%;
}

}

@media(max-width:768px){

.logo-white,
.logo-red{
  font-size:28px;
}

.hero{
  padding:28px 20px 160px;
}

.hero h1{
  font-size:44px;
  letter-spacing:-2px;
}

.hero-buttons{
  flex-direction:column;
  align-items:stretch;
}

.hero-red,
.hero-dark{
  width:100%;
}

.hero-side{
  display:none;
}

.live-card{
  min-width:190px;
}

.cta h3{
  font-size:24px;
}

}

@media(max-width:480px){

  .header-inner{
    height:70px;
    display:grid;
    grid-template-columns:44px 1fr 44px;
    align-items:center;
    padding:0 8px;
    gap:0;
  }

  .logo{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:visible;
  }

  .logo img{
    height:75px;
    width:auto;
    max-width:260px;
    object-fit:contain;
  }

  .header-actions{
    width:44px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
  }

  .header-actions a{
    margin-right:-8px;
  }

  .join-btn{
    display:none;
  }

  .online-bar{
    display:none;
  }

  .main{
    padding:14px 14px 120px;
  }

  .hero{
    border-radius:20px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:16px;
  }

  .live-card{
    min-width:170px;
  }
}
@media (max-width: 480px) {
  body {
    padding-bottom: 85px;
  }

  header,
  .navbar,
  .topbar {
    width: 100%;
    max-width: 100%;
    padding: 14px 14px;
    overflow: hidden;
  }

  .logo,
  .brand {
    font-size: 24px !important;
    white-space: nowrap;
    letter-spacing: -1.5px;
  }

  .join-btn,
  .join-now,
  .header-join {
    min-width: 92px;
    max-width: 105px;
    padding: 12px 14px !important;
    font-size: 13px !important;
    border-radius: 14px;
  }

  .hero {
    margin: 18px 14px !important;
    padding: 34px 24px !important;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: 46px !important;
    line-height: 0.95 !important;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 20px !important;
    line-height: 1.35;
  }

  .hero .btn,
  .hero button {
    width: 100%;
    max-width: 100%;
    height: 70px;
    font-size: 18px !important;
    border-radius: 24px;
  }

  .search-box,
  .search-wrap,
  .search-bar {
    margin: 18px 14px !important;
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    overflow: hidden;
  }

  .search-box input,
  .search-bar input {
    min-width: 0;
    width: 100%;
    font-size: 16px !important;
  }

  .categories,
  .category-row,
  .tabs {
    padding-left: 14px !important;
    padding-right: 14px !important;
    overflow-x: auto;
  }

  .category-btn,
  .tab {
    flex: 0 0 auto;
    font-size: 15px !important;
    padding: 15px 22px !important;
  }

  .bottom-nav {
    height: 76px;
    padding: 6px 0;
    overflow: hidden;
  }

  .bottom-nav button,
  .bottom-nav a {
    min-width: 20%;
    font-size: 12px !important;
  }

  .bottom-nav svg,
  .bottom-nav i {
    width: 24px;
    height: 24px;
  }
}
/* FIX HEADER JOIN BUTTON ON MOBILE */
@media (max-width: 600px) {
  .header-join,
  .join-now,
  .nav-join,
  header .join-btn,
  .navbar .join-btn {
    display: none !important;
  }

  header,
  .navbar,
  .topbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand,
  .logo {
    max-width: 230px !important;
    font-size: 23px !important;
    overflow: hidden;
    white-space: nowrap;
  }

  .header-icons,
  .nav-icons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
}
.legal-page {
  min-height: 100vh;
  background: #050505;
  color: #f5f5f5;
  padding: 80px 20px 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.legal-box {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: visible;
}

.legal-box h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.legal-box p,
.legal-box li {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
}

.legal-box ul {
  margin: 20px 0;
  padding-left: 25px;
}

@media (max-width: 600px) {
  .legal-page {
    padding: 35px 14px 100px;
  }

  .legal-box {
    padding: 24px;
    border-radius: 18px;
  }

  .legal-box h1 {
    font-size: 28px;
  }
}
legal-actions{
    margin-top:100px;
    display:flex;
    justify-content:center;
}

.enter-btn{
    background:#ff003c;
    color:#fff;
    padding:10px 22px;
    font-size: 16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(255,0,60,0.3);
}

.enter-btn:hover{
    transform:translateY(-3px);
    background:#ff1f57;
}
/* CONTACT PAGE */

.contact-page{
    max-width:700px;
    margin:120px auto 40px;
    padding:20px;
}

.contact-page h1{
    font-size:2rem;
    margin-bottom:10px;
    color:#fff;
}

.contact-page p{
    color:#aaa;
    margin-bottom:25px;
    line-height:1.6;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    background:#111;
    border:1px solid #222;
    border-radius:12px;
    color:#fff;
    font-size:1rem;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#ff3b3b;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    background:linear-gradient(180deg,#ff4d4d,#ff1f1f);
    color:#fff;
    border:none;
    padding:16px;
    border-radius:14px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
}

.contact-form button:hover{
    transform:translateY(-2px);
}