@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#050610;
  --panel:#0b1020;
  --text:#f7f7ff;
  --muted:#aeb6d8;
  --purple:#8b5cf6;
  --pink:#ff3fd4;
  --blue:#38bdf8;
  --line:rgba(255,255,255,.1);
  --glass:rgba(255,255,255,.055);
  --radius:28px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Space Grotesk',Arial,sans-serif;
  background:
    radial-gradient(circle at 20% 10%,rgba(139,92,246,.18),transparent 28%),
    radial-gradient(circle at 90% 30%,rgba(255,63,212,.12),transparent 26%),
    linear-gradient(180deg,#04050e 0%,#070918 55%,#03050c 100%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.35),transparent 70%);
  z-index:-1;
}

a{
  color:inherit;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(3,5,14,.72);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
position:relative;
display:inline-flex;
align-items:flex-end;
text-decoration:none;
font-size:30px;
font-weight:900;
letter-spacing:.5px;
line-height:1;
color:#f8f9ff;
text-transform:uppercase;
}

.logo span{
margin-left:4px;
font-family:"Times New Roman",serif;
font-style:italic;
font-weight:700;
font-size:1.05em;
letter-spacing:1px;
background:linear-gradient(
135deg,
#d8b4fe 0%,
#a855f7 35%,
#8b5cf6 65%,
#6366f1 100%
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:
0 0 18px rgba(139,92,246,.35),
0 0 40px rgba(99,102,241,.18);

transform:translateY(1px);
}

.nav-btn{
text-decoration:none;
padding:13px 24px;
border-radius:999px;
background:linear-gradient(135deg,#7c3aed,#8b5cf6,#6366f1);
color:white;
font-weight:900;
box-shadow:0 14px 42px rgba(139,92,246,.38);
transition:.25s ease;
}

.nav-btn:hover{
transform:translateY(-2px);
box-shadow:0 20px 70px rgba(139,92,246,.55);
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(5,6,16,.95) 0%,rgba(5,6,16,.78) 42%,rgba(5,6,16,.45) 100%),
    linear-gradient(180deg,rgba(5,6,16,.05) 0%,rgba(5,6,16,1) 100%),
    url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=1800&auto=format&fit=crop') center/cover;
}

.hero:before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 72% 28%,rgba(139,92,246,.32),transparent 24%),
    radial-gradient(circle at 52% 74%,rgba(255,63,212,.20),transparent 28%),
    radial-gradient(circle at 14% 82%,rgba(56,189,248,.13),transparent 24%);
  filter:blur(16px);
  opacity:.9;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.05),rgba(0,0,0,.85)),
    radial-gradient(circle at center,transparent 0%,rgba(0,0,0,.5) 70%);
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:110px;
  max-width:820px;
}

.mini{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#b893ff;
  font-weight:800;
  margin-bottom:18px;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1.8px;
}

.mini:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff3f8f;
  box-shadow:0 0 18px rgba(255,63,143,.9);
}

.hero h1{
  font-size:clamp(48px,7vw,88px);
  line-height:.96;
  max-width:850px;
  margin-bottom:24px;
  letter-spacing:-3px;
  text-wrap:balance;
}

.sub{
  max-width:680px;
  font-size:19px;
  color:#d6dcff;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:46px;
  position:relative;
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:16px 30px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  overflow:hidden;
  isolation:isolate;
  transition:.32s ease;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
}

.btn:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:0;
  transition:.32s ease;
  background:
    linear-gradient(135deg,#7c3aed,#8b5cf6,#6366f1);
}

.primary{
  color:white;
  background:rgba(255,255,255,.05);
}

.primary:before{
  opacity:1;
}

.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 70px rgba(139,92,246,.55);
}

.secondary{
  color:white;
  background:rgba(255,255,255,.035);
}

.secondary:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 70px rgba(139,92,246,.45);
  border-color:transparent;
}

.secondary:hover:before{
  opacity:1;
}

.hero-actions:hover .primary:not(:hover):before{
  opacity:0;
}

.hero-actions:hover .primary:not(:hover){
  background:rgba(255,255,255,.035);
  box-shadow:none;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(160px,1fr));
  gap:16px;
  max-width:760px;
}

.stat{
  position:relative;
  background:rgba(255,255,255,.06);
  padding:22px;
  border-radius:24px;
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
}

.stat:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(139,92,246,.18),transparent 55%);
  opacity:.75;
}

.stat strong,
.stat span{
  position:relative;
  z-index:2;
}

.stat strong{
  display:block;
  font-size:30px;
  margin-bottom:8px;
  letter-spacing:-1px;
}

.stat span{
  color:#c9d0ee;
  font-size:14px;
}

.rooms{
  position:relative;
  padding:110px 0 80px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:36px;
}

.section-title h2{
  font-size:clamp(34px,4vw,54px);
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:12px;
}

.section-title p{
  color:var(--muted);
  max-width:520px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(245px,1fr));
  gap:22px;
}

.card{
  position:relative;
  min-height:430px;
  border-radius:32px;
  overflow:hidden;
  background:#0b1020;
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 22px 80px rgba(0,0,0,.35);
  transition:.35s ease;
  isolation:isolate;
}

.card:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  background:
    linear-gradient(135deg,rgba(139,92,246,.28),transparent 44%),
    linear-gradient(to top,rgba(3,5,14,.94) 0%,rgba(3,5,14,.42) 48%,rgba(3,5,14,.08) 100%);
  opacity:.9;
  transition:.35s ease;
}

.card:after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:32px;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(139,92,246,.7),rgba(56,189,248,.3),transparent 60%);
  opacity:0;
  z-index:4;
  transition:.35s ease;
}

.card:hover{
  transform:translateY(-10px) scale(1.018);
  border-color:rgba(139,92,246,.55);
  box-shadow:
    0 34px 110px rgba(0,0,0,.48),
    0 0 70px rgba(139,92,246,.24);
}

.card:hover:after{
  opacity:.55;
}

.card:hover:before{
  opacity:1;
}

.thumb-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.thumb-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.08) contrast(1.05) brightness(.86);
  transition:.55s ease;
}

.card:hover .thumb-wrap img{
  transform:scale(1.08);
  filter:saturate(1.18) contrast(1.08) brightness(.94);
}

.thumb-wrap:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 30%,transparent 0%,rgba(0,0,0,.08) 38%,rgba(0,0,0,.62) 100%),
    linear-gradient(to top,rgba(3,5,14,.98) 0%,rgba(3,5,14,.62) 42%,rgba(3,5,14,.12) 100%);
  z-index:2;
}

.live-badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:6;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:linear-gradient(135deg,#ff2f67,#ff46d8);
  padding:8px 12px;
  border-radius:999px;
  color:white;
  font-size:11px;
  font-weight:900;
  letter-spacing:.4px;
  box-shadow:0 0 30px rgba(255,47,103,.55);
}

.live-badge:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:white;
  box-shadow:0 0 0 6px rgba(255,255,255,.18);
}

.viewer-badge{
  position:absolute;
  top:16px;
  right:16px;
  z-index:6;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(3,5,14,.68);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:11px;
  font-weight:900;
  backdrop-filter:blur(12px);
}

.card-body{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:7;
  padding:22px;
  margin-top:0;
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.card-top h3{
  font-size:24px;
  letter-spacing:-.7px;
  line-height:1;
}

.card-top span{
  font-size:11px;
  color:#e8ecff;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.105);
  border:1px solid rgba(255,255,255,.13);
  white-space:nowrap;
  backdrop-filter:blur(12px);
}

.card-body p{
  color:#c8d0ef;
  margin-bottom:18px;
  font-size:14px;
  line-height:1.45;
  max-width:95%;
}

.room-btn{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:46px;
  text-align:center;
  padding:13px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  color:white;
  font-weight:900;
  text-decoration:none;
  overflow:hidden;
  isolation:isolate;
  transition:.3s ease;
  backdrop-filter:blur(14px);
}

.room-btn:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:0;
  background:linear-gradient(135deg,#7c3aed,#8b5cf6,#38bdf8);
  transition:.3s ease;
}

.card:hover .room-btn:before,
.room-btn:hover:before{
  opacity:1;
}

.room-btn:hover{
  transform:translateY(-2px);
  border-color:transparent;
  box-shadow:0 18px 50px rgba(139,92,246,.35);
}

.activity{
  padding:30px 0 110px;
}

.activity-box{
  position:relative;
  background:
    radial-gradient(circle at 15% 10%,rgba(139,92,246,.22),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border-radius:34px;
  padding:54px;
  border:1px solid rgba(255,255,255,.1);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  overflow:hidden;
  box-shadow:0 30px 100px rgba(0,0,0,.32);
}

.activity-box:after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-90px;
  top:-90px;
  background:rgba(255,63,212,.18);
  filter:blur(60px);
  border-radius:50%;
}

.activity-box h2{
  font-size:clamp(34px,4vw,52px);
  line-height:1.03;
  letter-spacing:-2px;
}

.activity-feed{
  position:relative;
  z-index:2;
}

.feed-item{
  padding:17px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.09);
  margin-bottom:14px;
  color:#dbe3ff;
  backdrop-filter:blur(16px);
}

.feed-item:before{
  content:"";
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#22c55e;
  margin-right:10px;
  box-shadow:0 0 18px rgba(34,197,94,.9);
}

.footer{
  padding:54px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-text{
  max-width:460px;
  color:var(--muted);
  margin-top:14px;
}

.footer-links{
  display:flex;
  gap:22px;
  align-items:center;
}

.footer-links a{
  color:#dbe4ff;
  text-decoration:none;
  font-weight:600;
}

.footer-links a:hover{
  color:white;
}

@media(max-width:900px){
  .section-title{
    display:block;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .activity-box{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .nav{
    padding:16px 0;
  }

  .logo{
    font-size:22px;
  }

  .nav-btn{
    padding:10px 15px;
    font-size:14px;
  }

  .hero{
    min-height:96vh;
    background-position:center top;
  }

  .hero-content{
    padding-top:96px;
  }

  .hero h1{
    font-size:46px;
    letter-spacing:-2px;
  }

  .sub{
    font-size:16px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    gap:12px;
  }

  .rooms{
    padding:80px 0 60px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .thumb-wrap img{
    height:340px;
  }

  .activity-box{
    padding:30px;
    border-radius:28px;
  }

  .footer-links{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}

.logo{
  text-decoration:none;
}

.nav-actions{
display:flex;
align-items:center;
gap:10px;
padding:8px;
border-radius:999px;
background:rgba(255,255,255,.045);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
}

.nav-link{
color:#c8d0ef;
text-decoration:none;
font-size:14px;
font-weight:800;
padding:12px 16px;
border-radius:999px;
transition:.25s ease;
}

.nav-link:hover{
color:white;
background:rgba(255,255,255,.075);
}

.hero-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  padding-top:110px;
}

.hero-content{
  padding-top:0;
}

.hero-noise{
  position:absolute;
  inset:0;
  opacity:.18;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(10,12,24,.62);
  border:1px solid rgba(255,255,255,.1);
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:28px;
  backdrop-filter:blur(18px);
  box-shadow:
    0 10px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.pulse,
.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff2f67;
  box-shadow:
    0 0 0 7px rgba(255,47,103,.16),
    0 0 22px rgba(255,47,103,.9);
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
}

.live-panel{
  position:relative;
  width:min(500px,100%);
  padding:18px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 34px 120px rgba(0,0,0,.55),0 0 80px rgba(139,92,246,.22);
  backdrop-filter:blur(24px);
  transform:rotate(1deg);
}

.panel-top,
.panel-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.panel-top{
  margin-bottom:14px;
  color:#eef2ff;
  font-size:13px;
  font-weight:800;
}

.panel-top div{
  display:flex;
  align-items:center;
  gap:9px;
}

.panel-top span{
  color:#cbd5ff;
}
.preview-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:repeat(2,1fr);
  gap:10px;
  margin-bottom:14px;
}

.preview-tile{
  position:relative;
  aspect-ratio:1/1;
  border-radius:18px;
  overflow:hidden;
  background:#10162b;
}

.preview-tile:nth-child(4),
.preview-tile:nth-child(5),
.preview-tile:nth-child(6){
  aspect-ratio:1/1;
  grid-column:auto;
}

.preview-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.08) contrast(1.03);
  transition:.35s ease;
}

.preview-tile:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.58),transparent);
}

.preview-tile:hover img{
  transform:scale(1.06);
}
.panel-bottom{
  margin-top:16px;
  padding:14px;
  border-radius:24px;
  background:rgba(3,5,14,.72);
  border:1px solid rgba(255,255,255,.1);
}

.creator-mini{
  display:flex;
  align-items:center;
  gap:12px;
}

.creator-mini img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.18);
}

.creator-mini strong{
  display:block;
  font-size:15px;
}

.creator-mini span{
  display:block;
  font-size:12px;
  color:#aeb6d8;
}

.panel-btn{
  padding:11px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff35d1,var(--purple));
  color:white;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

.floating-chip{
  position:absolute;
  z-index:4;
  max-width:180px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(3,5,14,.76);
  border:1px solid rgba(255,255,255,.14);
  color:#eef2ff;
  font-size:12px;
  font-weight:800;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  backdrop-filter:blur(18px);
}

.chip-one{
  top:90px;
  right:-26px;
}

.chip-two{
  left:-24px;
  bottom:110px;
}

.viewer-badge{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(3,5,14,.68);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:11px;
  font-weight:900;
  backdrop-filter:blur(12px);
}

.small-link{
  color:white;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
}

.activity-copy{
  color:#aeb6d8;
  max-width:520px;
  margin-top:16px;
}

.locked-preview{
  padding:10px 0 110px;
}

.locked-box{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:40px;
  align-items:center;
  padding:54px;
  border-radius:38px;
  background:
    radial-gradient(circle at 75% 30%,rgba(255,63,212,.22),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 30px 100px rgba(0,0,0,.34);
}

.locked-content h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:16px;
}

.locked-content p{
  color:#c8d0ef;
  max-width:560px;
  margin-bottom:26px;
}

.locked-card{
  position:relative;
  height:420px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 24px 80px rgba(0,0,0,.4);
}

.locked-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:blur(6px) brightness(.72) saturate(1.1);
  transform:scale(1.05);
}

.lock-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.18));
}

.lock-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#ff35d1,var(--purple));
  box-shadow:0 0 40px rgba(139,92,246,.55);
  margin-bottom:14px;
}

.lock-overlay strong{
  font-size:26px;
}

.lock-overlay span{
  color:#c8d0ef;
}

@media(max-width:980px){
  .hero-grid,
  .locked-box{
    grid-template-columns:1fr;
  }

  .hero-visual{
    display:none;
  }

  .nav-link{
    display:none;
  }
}

@media(max-width:768px){
  .hero-grid{
    padding-top:96px;
  }

  .status-pill{
    font-size:12px;
  }

  .locked-box{
    padding:28px;
  }

  .locked-card{
    height:320px;
  }
}

@media(max-width:768px){
  .rooms{
    overflow:hidden;
  }

  .grid{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:4px 4vw 18px;
    margin-left:-4vw;
    margin-right:-4vw;
  }

  .grid::-webkit-scrollbar{
    display:none;
  }

  .card{
    flex:0 0 78%;
    min-height:430px;
    scroll-snap-align:start;
  }

  .section-title{
    margin-bottom:24px;
  }

  .section-title h2{
    font-size:34px;
  }

  .small-link{
    display:none;
  }
}

.activity-box,
.locked-box{
  position:relative;
  overflow:hidden;
}

.activity-box:before,
.locked-box:before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:
    linear-gradient(135deg,rgba(255,255,255,.08),transparent 38%),
    radial-gradient(circle at 80% 20%,rgba(139,92,246,.22),transparent 30%);
  pointer-events:none;
}

.feed-item{
  transition:.28s ease;
}

.feed-item:hover{
  transform:translateX(8px);
  background:rgba(255,255,255,.095);
  border-color:rgba(139,92,246,.35);
}

.locked-card{
  transform:rotate(1deg);
  transition:.35s ease;
}

.locked-box:hover .locked-card{
  transform:rotate(0deg) translateY(-6px);
}

.lock-overlay{
  backdrop-filter:blur(3px);
}

.lock-icon{
  animation:softPulse 2.4s infinite;
}

@keyframes softPulse{
  0%{
    box-shadow:0 0 0 0 rgba(139,92,246,.45),0 0 40px rgba(139,92,246,.55);
  }
  70%{
    box-shadow:0 0 0 18px rgba(139,92,246,0),0 0 40px rgba(139,92,246,.55);
  }
  100%{
    box-shadow:0 0 0 0 rgba(139,92,246,0),0 0 40px rgba(139,92,246,.55);
  }
}

.preview-tile:nth-child(4),
.preview-tile:nth-child(5){
  grid-column:span 1;
}

.preview-tile:nth-child(5){
  display:block;
}

.thumb-wrap img,
.preview-tile img{
  opacity:0;
  transform:scale(1.04);
  transition:
    opacity .45s ease,
    transform .7s ease;
}

.thumb-wrap img.loaded,
.preview-tile img.loaded{
  opacity:1;
  transform:scale(1);
}

.live-panel{
  animation:panelFloat 5s ease-in-out infinite;
}

.preview-tile{
  animation:tileGlow 4s ease-in-out infinite;
}

.preview-tile:nth-child(2){
  animation-delay:.4s;
}

.preview-tile:nth-child(3){
  animation-delay:.8s;
}

.preview-tile:nth-child(4){
  animation-delay:1.2s;
}

.preview-tile:nth-child(5){
  animation-delay:1.6s;
}

.preview-tile:nth-child(6){
  animation-delay:2s;
}

.floating-chip{
  animation:chipFloat 3.5s ease-in-out infinite;
}

.chip-two{
  animation-delay:1s;
}

.live-dot,
.pulse{
  animation:livePulse 1.6s ease-in-out infinite;
}

@keyframes panelFloat{
  0%,100%{
    transform:rotate(1deg) translateY(0);
  }
  50%{
    transform:rotate(1deg) translateY(-8px);
  }
}

@keyframes tileGlow{
  0%,100%{
    filter:brightness(1);
  }
  50%{
    filter:brightness(1.12);
  }
}

@keyframes chipFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

@keyframes livePulse{
  0%,100%{
    box-shadow:0 0 0 6px rgba(255,47,103,.14),0 0 20px rgba(255,47,103,.85);
  }
  50%{
    box-shadow:0 0 0 10px rgba(255,47,103,.05),0 0 32px rgba(255,47,103,1);
  }
}

.mobile-sticky-cta{
  display:none;
}

@media(max-width:768px){
  .mobile-sticky-cta{
    position:fixed;
    left:16px;
    right:16px;
    bottom:16px;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:56px;
    border-radius:999px;
    background:linear-gradient(135deg,#7c3aed,#8b5cf6,#6366f1);
    color:white;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 18px 60px rgba(139,92,246,.45);
  }

  .mobile-sticky-cta span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#ff2f67;
    box-shadow:0 0 0 7px rgba(255,47,103,.16);
  }

  .footer{
    padding-bottom:110px;
  }
}

.footer{
position:relative;
padding:90px 0 0;
border-top:1px solid rgba(255,255,255,.08);
background:
linear-gradient(
180deg,
rgba(8,10,20,0),
rgba(7,8,18,.94)
);
overflow:hidden;
}

.footer:before{
content:"";
position:absolute;
top:-120px;
left:50%;
transform:translateX(-50%);
width:680px;
height:280px;
background:
radial-gradient(circle,rgba(139,92,246,.18),transparent 72%);
filter:blur(50px);
pointer-events:none;
}

.footer-inner{
position:relative;
z-index:2;
display:flex;
justify-content:space-between;
gap:80px;
padding-bottom:60px;
flex-wrap:wrap;
}

.footer-brand{
max-width:520px;
}

.footer-logo{
margin-bottom:24px;
}

.footer-text{
font-size:16px;
line-height:1.8;
color:#b9c2e3;
margin-bottom:26px;
}

.footer-status{
display:inline-flex;
align-items:center;
gap:12px;
padding:14px 18px;
border-radius:999px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
color:#dfe5ff;
font-size:14px;
font-weight:700;
backdrop-filter:blur(16px);
}

.footer-status span{
width:10px;
height:10px;
border-radius:50%;
background:#ff2f67;
box-shadow:
0 0 0 6px rgba(255,47,103,.12),
0 0 20px rgba(255,47,103,.8);
}

.footer-menu{
display:flex;
gap:70px;
flex-wrap:wrap;
}

.footer-column{
display:flex;
flex-direction:column;
gap:14px;
min-width:180px;
}

.footer-column h4{
font-size:15px;
font-weight:900;
letter-spacing:.4px;
margin-bottom:8px;
color:#ffffff;
text-transform:uppercase;
}

.footer-column a{
color:#b9c2e3;
text-decoration:none;
font-size:15px;
transition:.25s ease;
}

.footer-column a:hover{
color:#ffffff;
transform:translateX(4px);
}

.footer-bottom{
position:relative;
z-index:2;
border-top:1px solid rgba(255,255,255,.08);
padding:24px 0;
}

.footer-bottom-inner{
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.footer-bottom p{
font-size:14px;
color:#8f9ac0;
}

@media(max-width:768px){

.footer{
padding:70px 0 120px;
}

.footer-inner{
gap:50px;
padding-bottom:40px;
}

.footer-menu{
gap:40px;
}

.footer-bottom-inner{
flex-direction:column;
}

}