/* =============================================================================
   HornyEvents – club / nightlife design system
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #07070a;
  --bg-elevated: #0e0e14;
  --bg-card: #12121a;
  --bg-soft: #1a1a26;
  --bg-hover: #1f1f2e;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f3f8;
  --text-dim: #c8c0d0;
  --muted: #8b8396;
  --accent: #ff2d6a;
  --accent-hot: #ff4d82;
  --accent-2: #b44dff;
  --accent-soft: rgba(255, 45, 106, 0.14);
  --accent-glow: rgba(255, 45, 106, 0.35);
  --violet-soft: rgba(180, 77, 255, 0.12);
  --gold: #f0c14b;
  --gold-dim: #c9a227;
  --success: #34d399;
  --danger: #fb7185;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Outfit', 'Instrument Sans', system-ui, sans-serif;
  --max: 1200px;
  --nav-h: 64px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 8px 32px var(--accent-glow);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 90% 60% at 15% -15%, rgba(180, 77, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(255, 45, 106, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 45, 106, 0.05), transparent);
  background-attachment: fixed;
}
a { color: var(--accent-hot); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #ff9fbe; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ----- Layout shell ----- */
.he-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
main.he-wrap {
  flex: 1;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

/* ----- Nav ----- */
.he-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid var(--border);
}
.he-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.he-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(115deg, #fff 10%, #ff8fb0 45%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.he-brand:hover { filter: brightness(1.1); }
.he-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}
.he-nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}
.he-nav-links a:not(.he-btn):hover { color: var(--text); }
.he-nav-links a:not(.he-btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}
.he-nav-links a:not(.he-btn):hover::after { transform: scaleX(1); }

/* ----- Buttons ----- */
.he-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, #ff5a8a 40%, var(--accent-2) 100%);
  color: #fff !important;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s var(--ease), filter 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.he-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 12px 36px var(--accent-glow);
}
.he-btn:active { transform: translateY(0); }
.he-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  box-shadow: none;
}
.he-btn-ghost:hover {
  border-color: rgba(255, 45, 106, 0.45);
  color: var(--accent-hot) !important;
  background: var(--accent-soft);
  box-shadow: none;
  filter: none;
}
.he-btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }

/* ----- Hero ----- */
.he-hero {
  position: relative;
  padding: 2.75rem 0 1.75rem;
  margin-bottom: 0.5rem;
}
.he-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 180%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 45, 106, 0.08), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(180, 77, 255, 0.07), transparent 35%);
  pointer-events: none;
  z-index: -1;
}
.he-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hot);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 45, 106, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.he-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  max-width: 18ch;
  background: linear-gradient(180deg, #fff 30%, #d4c8dc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.he-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.he-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.he-hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  min-width: 100px;
}
.he-hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.he-hero-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----- Flash ----- */
.he-flash {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.he-flash-success { background: rgba(52, 211, 153, 0.12); color: var(--success); border-color: rgba(52, 211, 153, 0.25); }
.he-flash-danger, .he-flash-error { background: rgba(251, 113, 133, 0.12); color: var(--danger); border-color: rgba(251, 113, 133, 0.25); }
.he-flash-info { background: var(--violet-soft); color: #e0b3ff; border-color: rgba(180, 77, 255, 0.25); }

/* ----- Grid ----- */
.he-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 960px) {
  .he-layout { grid-template-columns: 1fr; }
  .he-sidebar { order: -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
}

/* ----- Filters ----- */
.he-filters {
  background: linear-gradient(160deg, rgba(24, 24, 34, 0.95), rgba(16, 16, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.he-filters::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 106, 0.4), rgba(180, 77, 255, 0.4), transparent);
}
.he-filters-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.he-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}
.he-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.he-field input,
.he-field select,
.he-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.he-field input:focus,
.he-field select:focus,
.he-field textarea:focus {
  outline: none;
  border-color: rgba(255, 45, 106, 0.5);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.he-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238b8396'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.he-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.he-checks label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  cursor: pointer;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  margin-bottom: 0;
}
.he-checks label:has(input:checked) {
  background: var(--accent-soft);
  border-color: rgba(255, 45, 106, 0.4);
  color: var(--accent-hot);
}
.he-checks input {
  accent-color: var(--accent);
  width: auto;
  margin: 0;
}

/* ----- Section titles ----- */
.he-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.he-section-title span {
  display: inline-flex;
  color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* ----- Featured cards ----- */
.he-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}
.he-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.he-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 106, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 45, 106, 0.1);
}
.he-card-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft) center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.he-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 10, 0.7));
  pointer-events: none;
}
.he-card-img .he-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
}
.he-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.he-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}
.he-card-body h3 a { color: var(--text); }
.he-card-body h3 a:hover { color: var(--accent-hot); }
.he-card-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.he-card-meta .he-dot::before {
  content: '·';
  margin-right: 0.5rem;
  opacity: 0.5;
}

/* ----- Tags & HornyFactor ----- */
.he-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}
.he-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.he-tag-hot {
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.2), rgba(180, 77, 255, 0.15));
  color: #ff9fbe;
  border-color: rgba(255, 45, 106, 0.3);
  box-shadow: 0 0 12px rgba(255, 45, 106, 0.15);
}
.he-horny {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(240, 193, 75, 0.35);
}

/* ----- List items ----- */
.he-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.he-list-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.15rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.he-list-item:hover {
  border-color: rgba(255, 45, 106, 0.3);
  transform: translateX(3px);
  box-shadow: -4px 0 0 var(--accent);
}
.he-list-thumb {
  width: 140px;
  height: 92px;
  border-radius: 12px;
  background: var(--bg-soft) center / cover;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .he-list-item {
    grid-template-columns: 88px 1fr;
    gap: 0.85rem;
  }
  .he-list-item .he-list-action {
    grid-column: 1 / -1;
  }
  .he-list-thumb {
    width: 88px;
    height: 72px;
  }
  .he-nav-links a:not(.he-btn) {
    font-size: 0.82rem;
  }
}

/* ----- Ads / sidebar ----- */
.he-sidebar .he-ad,
.he-ad {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.he-ad:hover { border-color: var(--border-strong); }
.he-ad img { width: 100%; height: auto; }
.he-ad-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  padding: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.he-ad-placeholder {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.015) 8px,
    rgba(255, 255, 255, 0.015) 16px
  );
}

/* ----- Detail ----- */
.he-detail-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 800px) {
  .he-detail-hero { grid-template-columns: 1fr; }
}
.he-detail-img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  background: var(--bg-soft) center / cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.he-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.08), transparent 40%);
  pointer-events: none;
}
.he-detail-prose {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--text-dim);
  font-size: 1.02rem;
}
.he-map {
  height: 300px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: var(--shadow);
}
.he-map .leaflet-container {
  background: #e4e4ea;
  font: inherit;
}

/* ----- Age gate ----- */
.he-age {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 45, 106, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(180, 77, 255, 0.12), transparent);
}
.he-age-card {
  width: min(440px, 100%);
  background: linear-gradient(165deg, #16161f, #0e0e14);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 2rem 1.85rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 45, 106, 0.08);
}
.he-age-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}
.he-age-card p { color: var(--muted); font-size: 0.95rem; }
.he-age-card .he-btn { width: 100%; margin-top: 0.85rem; }

/* ----- Empty / footer ----- */
.he-empty {
  text-align: center;
  padding: 3rem 1.25rem;
  color: var(--muted);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.he-empty strong {
  display: block;
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.he-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.25);
}
.he-footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.he-footer a { color: var(--muted); }
.he-footer a:hover { color: var(--text); }
.he-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
  vertical-align: middle;
}
.he-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

/* ----- Review cards ----- */
.he-review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.he-review:hover { border-color: var(--border-strong); }

/* ----- Utilities ----- */
.he-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 1.5rem 0;
  border: none;
}
@keyframes he-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.he-featured .he-card,
.he-list-item {
  animation: he-fade-up 0.5s var(--ease) both;
}
.he-featured .he-card:nth-child(2) { animation-delay: 0.06s; }
.he-featured .he-card:nth-child(3) { animation-delay: 0.12s; }
.he-featured .he-card:nth-child(4) { animation-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================================
   Mobile navigation (hamburger + drawer)
   ============================================================================= */
.he-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
  z-index: 120;
}
.he-nav-toggle:hover {
  border-color: rgba(255, 45, 106, 0.45);
  background: var(--accent-soft);
}
.he-nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}
.he-nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.25s;
  transform-origin: center;
}
body.he-nav-open .he-nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.he-nav-open .he-nav-toggle-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.he-nav-open .he-nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.he-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  pointer-events: none;
}
.he-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.he-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 115;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(175deg, #16161f 0%, #0c0c12 100%);
  border-left: 1px solid var(--border-strong);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.he-nav-drawer.is-open {
  transform: translateX(0);
}
.he-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
  min-height: var(--nav-h);
}
.he-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.he-nav-close:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
}
.he-nav-drawer-body {
  padding: 1rem 1.15rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.he-nav-drawer-link {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.he-nav-drawer-link:hover {
  background: var(--accent-soft);
  color: var(--accent-hot) !important;
  transform: translateX(4px);
}
.he-nav-drawer-muted { color: var(--muted) !important; font-weight: 500; }
.he-nav-drawer-small {
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding: 0.55rem 0.9rem !important;
}
.he-nav-drawer-sep {
  height: 1px;
  margin: 0.75rem 0;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

body.he-nav-open {
  overflow: hidden;
  touch-action: none;
}

.he-nav.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 45, 106, 0.12);
}

.he-main {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

@media (max-width: 860px) {
  .he-nav-desktop { display: none !important; }
  .he-nav-toggle { display: inline-flex; }
}
@media (min-width: 861px) {
  .he-nav-drawer,
  .he-nav-backdrop { display: none !important; }
}

/* =============================================================================
   Animation system
   ============================================================================= */
@keyframes he-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes he-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes he-scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes he-slide-right {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes he-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 106, 0.35); }
  50% { box-shadow: 0 0 24px 4px rgba(255, 45, 106, 0.2); }
}
@keyframes he-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes he-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes he-star-twinkle {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.7; filter: brightness(1.25); }
}

.he-animate-in {
  animation: he-fade-up 0.55s var(--ease) both;
}
.he-page > .he-hero {
  animation: he-fade-up 0.6s var(--ease) both;
}
.he-page > .he-filters {
  animation: he-fade-up 0.6s var(--ease) 0.08s both;
}
.he-page > .he-layout {
  animation: he-fade-up 0.6s var(--ease) 0.14s both;
}

.he-featured .he-card,
.he-list-item {
  animation: he-fade-up 0.5s var(--ease) both;
}
.he-featured .he-card:nth-child(1) { animation-delay: 0.05s; }
.he-featured .he-card:nth-child(2) { animation-delay: 0.1s; }
.he-featured .he-card:nth-child(3) { animation-delay: 0.15s; }
.he-featured .he-card:nth-child(4) { animation-delay: 0.2s; }
.he-featured .he-card:nth-child(5) { animation-delay: 0.25s; }
.he-list-item:nth-child(1) { animation-delay: 0.04s; }
.he-list-item:nth-child(2) { animation-delay: 0.08s; }
.he-list-item:nth-child(3) { animation-delay: 0.12s; }
.he-list-item:nth-child(4) { animation-delay: 0.16s; }
.he-list-item:nth-child(5) { animation-delay: 0.2s; }
.he-list-item:nth-child(6) { animation-delay: 0.24s; }
.he-list-item:nth-child(7) { animation-delay: 0.28s; }
.he-list-item:nth-child(8) { animation-delay: 0.32s; }

.he-hero-badge {
  animation: he-pulse-glow 3s ease-in-out infinite;
}
.he-horny {
  animation: he-star-twinkle 2.8s ease-in-out infinite;
}
.he-card:hover .he-card-img {
  transform: scale(1.04);
}
.he-card-img {
  transition: transform 0.5s var(--ease);
}
.he-btn {
  position: relative;
  overflow: hidden;
}
.he-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.he-btn:hover::after {
  opacity: 1;
  animation: he-shimmer 0.9s ease;
}

.he-age-card {
  animation: he-scale-in 0.45s var(--ease) both;
}
.he-detail-hero {
  animation: he-fade-up 0.55s var(--ease) both;
}
.he-detail-prose {
  animation: he-fade-up 0.55s var(--ease) 0.1s both;
}
.he-review {
  animation: he-slide-right 0.4s var(--ease) both;
}
.he-review:nth-child(2) { animation-delay: 0.05s; }
.he-review:nth-child(3) { animation-delay: 0.1s; }
.he-review:nth-child(4) { animation-delay: 0.15s; }

.he-flash {
  animation: he-slide-right 0.35s var(--ease) both;
}

/* Skeleton shimmer (for future loading states) */
.he-skeleton {
  background: linear-gradient(90deg, var(--bg-soft) 25%, var(--bg-hover) 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: he-shimmer 1.4s linear infinite;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .he-card:hover .he-card-img { transform: none; }
  .he-nav-drawer { transition: none; }
}

/* =============================================================================
   Utility classes (no inline styles in views)
   ============================================================================= */
.he-mt-0 { margin-top: 0; }
.he-mt-1 { margin-top: 0.5rem; }
.he-mt-2 { margin-top: 0.75rem; }
.he-mt-3 { margin-top: 1rem; }
.he-mt-4 { margin-top: 1.5rem; }
.he-mt-5 { margin-top: 2rem; }
.he-mb-0 { margin-bottom: 0; }
.he-mb-1 { margin-bottom: 0.5rem; }
.he-mb-2 { margin-bottom: 0.75rem; }
.he-mb-3 { margin-bottom: 1rem; }
.he-mb-4 { margin-bottom: 1.5rem; }
.he-mb-5 { margin-bottom: 2rem; }
.he-my-0 { margin-top: 0; margin-bottom: 0; }

.he-stack { display: flex; flex-direction: column; gap: 0.5rem; }
.he-stack-2 { display: flex; flex-direction: column; gap: 0.75rem; }
.he-row { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.he-row-between { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }

.he-text-muted { color: var(--muted); }
.he-text-dim { color: var(--text-dim); }
.he-text-sm { font-size: 0.88rem; }
.he-text-xs { font-size: 0.75rem; }
.he-leading { line-height: 1.45; }
.he-w-full { width: 100%; }

.he-title-xl {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 800;
}
.he-title-lg {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 700;
}
.he-title-lg a { color: var(--text); }
.he-title-lg a:hover { color: var(--accent-hot); }

.he-excerpt {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.he-horny-lg {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.he-horny-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: 0.35rem;
  letter-spacing: 0;
  text-shadow: none;
}
.he-venue {
  margin: 1rem 0 0;
  color: var(--muted);
}
.he-venue strong { color: var(--text); }
.he-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.he-filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.he-filters-block { margin-top: 1rem; }
.he-filters-block + .he-filters-block { margin-top: 0.75rem; }

/* Dynamic background image via CSS variable (only dynamic value in markup) */
.he-card-img,
.he-list-thumb,
.he-detail-img {
  background-image: var(--he-img, none);
}
.he-card-img:not([style*="--he-img"]),
.he-list-thumb:not([style*="--he-img"]),
.he-detail-img:not([style*="--he-img"]) {
  /* solid fallback already from background-color on parent rules */
}

.he-legal {
  max-width: 720px;
}
.he-legal h1 { margin-top: 0; }
.he-legal h2 { margin-top: 1.5rem; font-size: 1.15rem; }
.he-legal ul { padding-left: 1.2rem; color: var(--text-dim); }
.he-contact-form { max-width: 520px; }
.he-form-gap .he-field + .he-field { margin-top: 0.5rem; }

.he-inline-form { display: inline; }
.he-table-scroll {
  padding: 0;
  overflow: auto;
}
.he-nowrap { white-space: nowrap; }
.he-thumb-sm { max-height: 40px; width: auto; }
.he-thumb-md { max-width: 200px; height: auto; }
.he-input-narrow { width: 4rem; }
.he-ad-slot { margin-bottom: 1.25rem; }
.he-section { margin-top: 2rem; }
.he-map-block { margin-top: 1.5rem; }
.he-18-sm {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.55rem;
  border-radius: 6px;
}
.he-impersonate-bar {
  background: #b45309;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}
.he-impersonate-bar a {
  color: #fff !important;
  font-weight: 700;
}
.he-footer-brand {
  color: var(--text);
  margin-left: 0.55rem;
  font-family: var(--font-display);
}
.he-footer-tagline {
  margin-top: 0.45rem;
  max-width: 22rem;
  line-height: 1.5;
}
.he-filters-grid .he-field-full {
  grid-column: 1 / -1;
}

.he-card-img img,
.he-list-thumb img,
.he-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.he-list-thumb {
  display: block;
  overflow: hidden;
}
.he-detail-img {
  display: block;
  overflow: hidden;
  padding: 0;
}
.he-detail-img img {
  aspect-ratio: 16 / 11;
}
.he-card-img .he-badge {
  z-index: 2;
}

/* =============================================================================
   10/10 polish – editorial, auth, placeholders, empty states
   ============================================================================= */

/* Editorial featured: first card dominates */
.he-featured-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}
.he-featured-editorial .he-card {
  grid-column: span 4;
}
.he-featured-editorial .he-card-hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 100%;
}
.he-featured-editorial .he-card-hero .he-card-img {
  aspect-ratio: 16 / 11;
  min-height: 280px;
}
.he-featured-editorial .he-card-hero .he-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}
.he-featured-editorial .he-card-hero h3 {
  font-size: 1.45rem;
}
@media (max-width: 900px) {
  .he-featured-editorial .he-card,
  .he-featured-editorial .he-card-hero {
    grid-column: span 12;
    grid-row: auto;
  }
  .he-featured-editorial .he-card-hero .he-card-img {
    min-height: 200px;
  }
}

/* Image placeholders (no photo yet) */
.he-card-img,
.he-list-thumb,
.he-detail-img {
  background-color: var(--bg-soft);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 45, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(180, 77, 255, 0.14), transparent 50%),
    linear-gradient(145deg, #14141e 0%, #1a1520 50%, #121018 100%);
}
.he-card-img:not(:has(img))::before,
.he-list-thumb:not(:has(img))::before,
.he-detail-img:not(:has(img))::before {
  content: 'HE';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.12);
  z-index: 0;
}
.he-card-img,
.he-list-thumb,
.he-detail-img {
  position: relative;
}
.he-card-img img,
.he-list-thumb img,
.he-detail-img img {
  position: relative;
  z-index: 1;
}

/* Stronger empty state */
.he-empty {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem;
}
.he-empty::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 40%, rgba(255, 45, 106, 0.1), transparent 50%);
  pointer-events: none;
}
.he-empty-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.2);
  opacity: 0.85;
}
.he-empty .he-btn {
  margin-top: 1.25rem;
}

/* Auth pages */
.he-auth {
  display: grid;
  place-items: center;
  padding: 2rem 0 3rem;
  min-height: calc(100vh - var(--nav-h) - 140px);
}
.he-auth-card {
  width: min(420px, 100%);
  background: linear-gradient(165deg, rgba(22, 22, 32, 0.98), rgba(12, 12, 18, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 45, 106, 0.06);
  animation: he-scale-in 0.45s var(--ease) both;
  position: relative;
  overflow: hidden;
}
.he-auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}
.he-auth-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  text-align: center;
}
.he-auth-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}
.he-auth .he-field {
  margin-bottom: 1rem;
}
.he-auth .he-field input.is-invalid,
.he-auth input.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.15);
}
.he-auth .err {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}
.he-auth .he-btn {
  width: 100%;
  margin-top: 0.35rem;
}
.he-auth-links {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.he-auth-links a {
  color: var(--accent-hot);
  font-weight: 600;
}
.he-auth-oauth {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.he-auth-oauth-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.he-auth-oauth-btn {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--text) !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.he-auth-oauth-btn:hover {
  border-color: rgba(255, 45, 106, 0.4);
  background: var(--accent-soft);
  color: var(--accent-hot) !important;
  transform: translateY(-1px);
}

/* Account panel */
.he-account {
  max-width: 560px;
}
.he-account-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.he-account-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.he-account-row:last-child { border-bottom: none; }
.he-account-row span { color: var(--muted); font-size: 0.85rem; }
.he-account-row strong { color: var(--text); text-align: right; }
.he-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

/* Filter sticky on desktop */
@media (min-width: 961px) {
  .he-filters-sticky {
    position: sticky;
    top: calc(var(--nav-h) + 0.75rem);
    z-index: 20;
  }
}

/* List count pill */
.he-count-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent-hot);
  vertical-align: middle;
}

/* Subtle noise overlay on body (premium feel) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Detail sticky meta on desktop */
@media (min-width: 801px) {
  .he-detail-hero > div:last-child {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    align-self: start;
  }
}
.he-input-otp {
  text-align: center !important;
  font-size: 1.35rem !important;
  letter-spacing: 0.28em !important;
  font-weight: 600 !important;
}

.he-report { margin-top: 0.5rem; }
.he-report summary { cursor: pointer; }
.he-inline-form { display: inline; }
.he-notif-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.15rem; height: 1.15rem; padding: 0 0.3rem;
  border-radius: 999px; font-size: 0.65rem; font-weight: 700;
  background: var(--accent); color: #fff; margin-left: 0.25rem;
}
.he-auth-card-wide { width: min(520px, 100%); }

.he-card { position: relative; }
.he-card-rsvp {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}
.he-rsvp-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(7,7,10,0.65);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.he-rsvp-btn:hover { transform: scale(1.08); background: rgba(255,45,106,0.35); }
.he-rsvp-btn.is-on {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

.he-search-bar {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}
.he-search-bar input[type="search"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-size: 1rem;
}
.he-search-bar input[type="search"]:focus {
  outline: none;
  border-color: rgba(255, 45, 106, 0.5);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.he-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.he-tag-link {
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.he-tag-link:hover {
  color: var(--accent-hot);
  border-color: rgba(255, 45, 106, 0.45);
  background: var(--accent-soft);
}
.he-active-tag {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.he-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.he-price-chip {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(240, 193, 75, 0.12);
  border: 1px solid rgba(240, 193, 75, 0.28);
  color: #f0d78c;
}
.he-price-chip strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* Search + collapsible filters */
.he-search-panel {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.he-search-panel .he-search-bar {
  margin-bottom: 0;
}
.he-filters-extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.he-filters-extra[hidden] {
  display: none !important;
}
.he-filters-extra.is-open {
  display: block;
  animation: he-fade-up 0.35s ease both;
}

.he-day-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-transform: capitalize;
}
.he-day-heading:first-of-type {
  margin-top: 0.5rem;
}
.he-list-day {
  margin-bottom: 0.5rem;
}
.he-paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
  flex-wrap: wrap;
}
.he-paginator-info {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Upcoming: 2 cards per row, featured-style */
.he-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 0.5rem;
}
.he-card-grid {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.he-card-grid .he-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.he-card-grid .he-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}
.he-card-grid .he-actions {
  margin-top: auto;
}
.he-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 720px) {
  .he-day-grid {
    grid-template-columns: 1fr;
  }
}

/* Club badge on cards */
.he-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.he-club-badge img {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  object-fit: cover;
}
.he-club-badge:hover { color: var(--accent-hot); }
.he-club-badge-lg {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0.75rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.he-club-badge-lg img { width: 2rem; height: 2rem; }

.he-club-hero { margin-bottom: 1.5rem; }
.he-club-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  max-height: 280px;
}
.he-club-cover img { width: 100%; height: 280px; object-fit: cover; display: block; }
.he-club-head { display: flex; gap: 1rem; align-items: center; }
.he-club-logo {
  width: 4.5rem; height: 4.5rem; border-radius: 12px; object-fit: cover;
  border: 1px solid var(--border);
}
.he-club-review, .he-club-about {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.he-club-deal {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin: 1rem 0; padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(240, 193, 75, 0.1);
  border: 1px solid rgba(240, 193, 75, 0.3);
}
.he-club-deal code {
  font-size: 1.05rem; font-weight: 700; color: var(--accent-hot);
  letter-spacing: 0.04em;
}
.he-club-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.he-club-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--border);
}
