/* ─── Hero ──────────────────────────────────────────────────── */
.location-hero {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 40px 1rem 2.2rem;
}
.hero-bg { 
  position: absolute; inset: 0;
}
.hero-bg-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, hsl(222 47% 6% / 0.98), hsl(222deg 47% 6% / 70%), hsl(222 47% 6% / 0.3));
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 640px;
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

.vip-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-fg); margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-content p {
  font-size: 0.9rem; color: var(--muted-fg); line-height: 1.7;
  margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.5s ease both;
}
.btn-vip-access {
  padding: 0.65rem 1.4rem; border-radius: 999px; border: none;
  font-size: 0.85rem; font-weight: 700; color: var(--primary-fg);
  display: flex; align-items: center; gap: 0.4rem; cursor: pointer;
  animation: pulseGlow 2.5s ease-in-out infinite;
  transition: opacity .2s;
}
.btn-vip-access:hover { opacity: 0.9;color: #000;}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 hsl(43 67% 56% / 0); }
  50% { box-shadow: 0 0 18px 4px hsl(43 67% 56% / 0.35); }
}
.btn-join-free {
  padding: 0.65rem 1.4rem; border-radius: 999px;
  border: 1px solid hsl(222 35% 22% / 0.7);
  background: none; color: var(--fg);
  font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem; cursor: pointer;
  transition: border-color .2s;
}
.btn-join-free:hover { border-color: hsl(43 67% 56% / 0.5);color:#FFF; }


.mainHead h1 {
margin: 0 0 16px;
}
.mainHead h1, .mainHead h2 {
text-align: left;
font-family: "Manrope", "Inter", sans-serif;
font-size: 1.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
}

/* ─── Feed Section ──────────────────────────────────────────── */
.feed-section {
  max-width: 1152px; margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.feed-section h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem;
}

/* ─── Masonry columns ───────────────────────────────────────── */
.masonry {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 768px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { 
	.masonry { columns: 3; } 
	section.feed-section-wrp {padding-top: 30px;}
}

/* ─── Feed Card ─────────────────────────────────────────────── */
.feed-card {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.feed-card-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}

/* Poster img + video both fill the container */
.feed-poster,
.feed-video {
  display: block;
  width: 100%;
  object-fit: cover;
}
/* Poster is always the structural element (determines height) */
.feed-poster {
  position: relative; z-index: 0;
  transition: transform 0.5s ease;
}
/* Video is absolute on top */
.feed-video {
  position: absolute; height: 100%;
  z-index: 1;  
}
/* When playing: video fades in */
.feed-card-inner.is-playing .feed-video { opacity: 1; }
/* Hide play icon while playing */
.feed-card-inner.is-playing .feed-play-icon { opacity: 0; }
/* Hover scale on both layers */
.feed-card-inner:hover .feed-poster,
.feed-card-inner:hover .feed-video { transform: scale(1.04); }

/* Section + filters */
.section{max-width:1120px;margin:56px auto 0;padding:0 24px;}
.section-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:12px;}
.section-head h2{font-size:22px;font-weight:700;}
.filter-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px;}
.filter-chip {
    border: 1px solid #24304c99;
    border-radius: 999px;
    padding: .375rem .75rem;
    font-weight: 600;
    color: #f8f6f2cc;
    background: transparent;
    font-size: .75rem;
    line-height: 1rem;
}
.filter-chip:hover, .filter-chip:focus {
    border: 1px solid #daaf4480;
    color: #daaf44;
}
.filter-chip.active{
    background: linear-gradient(135deg, #e0b852, #d6931f);
color:#1a1204;border-color:transparent;
}

/* Mobile: fixed 9:16 aspect ratio */
@media (max-width: 767px) {
  .feed-poster { aspect-ratio: 9/16; }
  .feed-video {
    position: static;
    width: 100%;
    aspect-ratio: 2 / 3;
}
}
/* Desktop: varied padding-bottom masonry heights via CSS var --pb */
@media (min-width: 768px) {
  .feed-poster { aspect-ratio: unset; }
  .feed-card-inner { padding-bottom: var(--card-pb, 140%); }  
  .feed-poster {
	position: absolute; inset: 0; width: 100%; height: 100%;
  }
}

.feed-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(
	to top,
	hsl(222 47% 6% / 0.97) 0%,
	hsl(222 47% 6% / 0.55) 45%,
	transparent 70%
  );
}

/* Play icon */
.feed-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; pointer-events: none;
  transition: opacity 0.3s ease;
}
.feed-play-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: hsl(0 0% 0% / 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  display: flex; align-items: center; justify-content: center;
}

/* Bottom info bar */
.feed-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 4; padding: 0.75rem 0.875rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
@media (min-width: 1024px) {
  .feed-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.feed-info { flex: 1; min-width: 0; }
.feed-avatar-row {
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem;
}
.feed-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0;
  object-position: top;
}
.feed-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 0.875rem; color: var(--fg);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feed-meta {
  font-size: 0.7rem; color: var(--muted-fg); white-space: nowrap;
}
.feed-bio {
  font-size: 0.7rem; color: hsl(40 30% 96% / 0.6);
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 2.1rem;
}
.feed-btn {
  flex-shrink: 0; align-self: flex-end;
  padding: 0.35rem 0.875rem; border-radius: 999px; border: none;
  font-size: 0.7rem; font-weight: 700; color: var(--primary-fg);
  display: flex; align-items: center; gap: 2px; cursor: pointer;
  transition: opacity .2s;
}
.feed-btn:hover { opacity: 0.85; color: var(--primary-fg);}