:root {
  --blue: #8BA8C8;
  --blue-2: #A5BDD8;
  --blue-deep: #537A8F;
  --ink: #2C3E50;
  --muted: #7A8FA0;
  --surface: #F9F9F9;
  --surface-2: #FAFBFC;
  --shadow-dark: rgba(83, 122, 143, .12);
  --shadow-light: rgba(255, 255, 255, .95);
}

* { box-sizing: border-box; }
[hidden], .hidden { display: none !important; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 168, 200, .08), transparent 32%),
    linear-gradient(135deg, #F9F9F9 0%, #F5F8FA 48%, #F0F5F8 100%);
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}

.font-display { font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.tap { transition: transform .18s ease, opacity .18s ease; cursor: pointer; }
.tap:active { transform: scale(.96); opacity: .88; }

.app-shell {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 95% 3%, rgba(139, 168, 200, .06), transparent 24%),
    var(--surface);
  box-shadow: 0 0 0 1px rgba(255,255,255,.85), 0 28px 80px rgba(83, 122, 143, .08);
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .app-shell { max-width: 1200px; }
}

.app-header {
  min-height: 82px;
  background: rgba(249, 249, 249, .90);
  backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 12px 34px rgba(83, 122, 143, .04);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.neumo-card,
.neumo-input,
.neumo-pill,
.stat-pill {
  border: 1px solid rgba(255,255,255,.85);
  background: linear-gradient(145deg, #FAFBFC, #F5F8FA);
  box-shadow: 8px 8px 20px var(--shadow-dark), -8px -8px 20px var(--shadow-light), inset 1px 1px 0 rgba(255,255,255,.95);
}
.neumo-card { border-radius: 28px; }
.neumo-input { border-radius: 24px; }
.neumo-dark {
  border-radius: 30px;
  background: linear-gradient(145deg, #3D5A75, #2C4563);
  color: #fff;
  box-shadow: 10px 10px 24px rgba(83, 122, 143, .16), -8px -8px 16px rgba(255,255,255,.40), inset 0 1px 0 rgba(255,255,255,.10);
}
.neumo-avatar {
  background: linear-gradient(145deg, #34516F, #25385B);
  box-shadow: 8px 8px 18px rgba(83, 122, 143, .12), -7px -7px 16px rgba(255,255,255,.90);
}
.role-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 220;
  width: min(270px, calc(100vw - 30px));
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.90);
  background: linear-gradient(145deg, rgba(250,251,252,.98), rgba(245,248,250,.98));
  padding: 12px;
  box-shadow: 12px 14px 30px rgba(83, 122, 143, .10), -8px -8px 18px rgba(255,255,255,.85);
}
.role-menu-item {
  display: grid;
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  border-radius: 18px;
  padding: 11px;
  text-align: left;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.role-menu-item:hover {
  background: linear-gradient(145deg, #FCFDFE, #F0F5F8);
  box-shadow: inset 4px 4px 10px rgba(83, 122, 143, .06), inset -5px -5px 12px rgba(255,255,255,.90);
}
.role-menu-item:active {
  transform: scale(.98);
}
.role-menu-item span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  color: #fff;
  box-shadow: 0 12px 24px rgba(139, 168, 200, .20);
}
.role-menu-item b {
  color: #2C4563;
  font-size: 13px;
  font-weight: 950;
}
.role-menu-item small {
  color: #7A8FA0;
  font-size: 10px;
  font-weight: 800;
}
.neumo-icon {
  display: grid;
  height: 42px;
  width: 42px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.82);
  background: linear-gradient(145deg, #FAFBFC, #F0F5F8);
  color: var(--blue-deep);
  box-shadow: 8px 8px 18px rgba(83, 122, 143, .08), -7px -7px 18px rgba(255,255,255,.92);
}

.member-pill {
  display: none !important;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #E8F0F7;
  padding: 4px 10px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 900;
}
.member-pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #6DD7D0;
}
.notif-dot {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(139, 168, 200, .12);
}

.desktop-toolbar {
  display: none;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 6px;
}
@media (min-width: 768px) {
  .desktop-toolbar { display: flex; }
}
.nav-tab {
  min-width: 96px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue-deep);
  transition: all .18s ease;
}
.nav-tab.active,
.mobile-nav.active {
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  color: #fff;
  box-shadow: 8px 8px 18px rgba(139, 168, 200, .18), -6px -6px 14px rgba(255,255,255,.90), inset 1px 1px 0 rgba(255,255,255,.25);
}
.mobile-toolbar {
  display: flex;
}
@media (min-width: 768px) {
  .mobile-toolbar { display: none; }
}
.sticky-floating-nav {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 50;
  width: calc(100% - 34px);
  max-width: 430px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(245, 248, 250, .96);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 12px 12px 28px rgba(83, 122, 143, .12), -8px -8px 16px rgba(255,255,255,.90);
}
.mobile-nav {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--blue-deep);
  font-size: 14px;
}
.mobile-nav span {
  display: none;
  font-size: 12px;
  font-weight: 900;
}
.mobile-nav.active span { display: inline; }

.section-eyebrow,
.field-label {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
}
.field-label { color: #A0AABD; }

.btn-primary,
.btn-ghost,
.neumo-send {
  border-radius: 16px;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn-primary {
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  color: #fff;
  box-shadow: 8px 8px 20px rgba(139, 168, 200, .18), -6px -6px 14px rgba(255,255,255,.90), inset 1px 1px 0 rgba(255,255,255,.24);
}
.btn-ghost {
  background: linear-gradient(145deg, #FCFDFE, #E8F0F7);
  color: var(--blue-deep);
  box-shadow: 6px 6px 14px rgba(83, 122, 143, .08), -5px -5px 12px rgba(255,255,255,.90);
}
.btn-primary:active,
.btn-ghost:active,
.neumo-send:active { transform: scale(.96); }
.neumo-send {
  display: grid;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  box-shadow: 8px 8px 18px rgba(139, 168, 200, .16), -6px -6px 14px rgba(255,255,255,.88);
}

.desktop-home-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.event-tile {
  position: relative;
  flex: 0 0 290px;
  height: 420px;
  overflow: hidden;
  border-radius: 34px;
  background: #2C3E50;
  box-shadow: 12px 12px 28px rgba(83, 122, 143, .14), -8px -8px 16px rgba(255,255,255,.88);
  cursor: pointer;
}
.mini-stack {
  flex: 0 0 220px;
  height: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
  text-align: left;
  color: #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  box-shadow: 10px 10px 24px rgba(139, 168, 200, .16), -8px -8px 16px rgba(255,255,255,.88);
}

.cover-bazaar { background-image: linear-gradient(180deg, rgba(5,12,28,.04), rgba(5,12,28,.78)), url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=80"); }
.cover-gaya { background-image: linear-gradient(180deg, rgba(5,12,28,.04), rgba(5,12,28,.66)), url("https://images.unsplash.com/photo-1534452203293-494d7ddbf7e0?auto=format&fit=crop&w=1200&q=80"); }
.cover-food { background-image: linear-gradient(180deg, rgba(5,12,28,.04), rgba(5,12,28,.72)), url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1200&q=80"); }
.cover-tech { background-image: linear-gradient(180deg, rgba(5,12,28,.04), rgba(5,12,28,.76)), url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1200&q=80"); }

.ticker-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #FAFBFC, #F0F5F8);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: inset 6px 6px 12px rgba(83, 122, 143, .06), inset -6px -6px 12px rgba(255,255,255,.90);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-right: 1px solid rgba(139, 168, 200, .06);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
  color: #8B96AA;
}
.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(139, 168, 200, .10);
}

.story-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  width: 72px;
}
.story-avatar {
  display: grid;
  height: 62px;
  width: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 3px solid #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  color: #fff;
  box-shadow: 8px 8px 16px rgba(83, 122, 143, .12), -6px -6px 12px rgba(255,255,255,.88);
}

.community-card {
  border-radius: 30px;
  padding: 20px;
  background: linear-gradient(145deg, #FCFDFE, #E8F0F7);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 10px 10px 22px rgba(83, 122, 143, .10), -8px -8px 16px rgba(255,255,255,.88);
}

.map-bg {
  background:
    linear-gradient(90deg, rgba(139, 168, 200, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 168, 200, .06) 1px, transparent 1px),
    radial-gradient(circle at 24% 28%, rgba(139, 168, 200, .10), transparent 20%),
    radial-gradient(circle at 70% 66%, rgba(165, 189, 216, .14), transparent 25%),
    linear-gradient(135deg, #F5F8FA 0%, #EEF3F8 100%);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}
.map-label,
.map-event-pin,
.map-event-date {
  box-shadow: 6px 6px 14px rgba(83, 122, 143, .08), -5px -5px 12px rgba(255,255,255,.90);
}
.map-label {
  position: absolute;
  z-index: 2;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 950;
  color: #8B96AA;
  backdrop-filter: blur(12px);
}
.map-event-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 140px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  padding: 10px 12px 10px 10px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.92);
}
.map-pin-dot {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
}
.map-event-name {
  display: block;
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 950;
  color: var(--blue-deep);
}
.map-event-date {
  display: inline-flex;
  margin-top: 4px;
  border-radius: 999px;
  background: #E8F0F7;
  padding: 3px 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
}
.map-route {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 168, 200, .10), rgba(139, 168, 200, .28), rgba(139, 168, 200, .08));
}
.map-zone-ring {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(139, 168, 200, .12);
  background: rgba(139, 168, 200, .02);
}

.event-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #FCFDFE, #E8F0F7);
  box-shadow: 12px 12px 28px rgba(83, 122, 143, .12), -8px -8px 16px rgba(255,255,255,.88);
  cursor: pointer;
  display: block;
  width: 100%;
  min-width: 0;
}
.events-page {
  width: 100%;
  max-width: 100%;
}
.events-hero {
  width: 100%;
}
.event-category-row {
  max-width: 100%;
  padding-bottom: 4px;
}
.events-layout {
  display: grid;
  width: 100%;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .events-layout { grid-template-columns: 280px minmax(0, 1fr); }
}
.events-filter {
  display: none;
}
@media (min-width: 768px) {
  .events-filter { display: block; }
}
.events-results-panel {
  width: 100%;
  min-width: 0;
}
.events-summary-bar {
  width: 100%;
}
.events-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
@media (min-width: 768px) {
  .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.event-card-media {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.event-card-top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
}
.event-type-badge,
.event-fav-button {
  background: rgba(255,255,255,.95);
  color: var(--blue-deep);
  box-shadow: 6px 6px 14px rgba(44, 62, 80, .10);
  backdrop-filter: blur(12px);
}
.event-type-badge {
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-fav-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
}
.event-card-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}
.event-card-body {
  padding: 20px;
}
.event-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.event-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.info-tile {
  border-radius: 18px;
  padding: 13px;
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  box-shadow: inset 4px 4px 10px rgba(83, 122, 143, .06), inset -4px -4px 10px rgba(255,255,255,.90);
}
.category-pill,
.best-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
}
.category-pill { color: var(--blue-deep); background: #F5F8FA; border: 1px solid rgba(139, 168, 200, .08); }
.best-point { color: var(--blue); background: #E8F0F7; border: 1px solid rgba(139, 168, 200, .08); }

.home-tools-grid {
  display: grid;
  gap: 16px;
}
.home-tool-card {
  min-width: 0;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  border: 1px solid rgba(255,255,255,.85);
  padding: 9px 13px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 5px 5px 12px rgba(83, 122, 143, .08), -5px -5px 12px rgba(255,255,255,.90);
}
.quick-action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  padding: 14px;
  text-align: left;
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  color: var(--blue-deep);
  font-weight: 950;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.95), 6px 6px 14px rgba(83, 122, 143, .08), -5px -5px 12px rgba(255,255,255,.90);
}
.quick-action-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
  box-shadow: 5px 5px 12px rgba(139, 168, 200, .14);
}
.event-carousel-hero {
  position: relative;
  height: 56vh;
  min-height: 360px;
  overflow: hidden;
  background: #2C3E50;
}
.event-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .65s ease, transform 2.8s ease;
}
.event-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}
.event-carousel-dots {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 4;
  display: flex;
  gap: 7px;
}
.event-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  transition: width .25s ease, background .25s ease;
}
.event-carousel-dot.active {
  width: 24px;
  background: #fff;
}
.booking-thumb {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -40px 60px rgba(5,12,28,.16);
}
.workspace-tab-panel {
  display: grid;
  gap: 14px;
}
.workspace-post,
.workspace-logistic,
.workspace-doc {
  min-width: 0;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.88);
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  box-shadow: 8px 8px 16px rgba(83, 122, 143, .06), -6px -6px 14px rgba(255,255,255,.88);
  padding: 18px;
}
.workspace-post {
  display: flex;
  gap: 14px;
}
.workspace-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #3D5A75, #2C4563);
  font-size: 12px;
  font-weight: 950;
}
.decision-select {
  min-width: 145px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  box-shadow: inset 2px 2px 6px rgba(83, 122, 143, .06), inset -3px -3px 8px rgba(255,255,255,.85);
  color: #2C3E50;
  font-size: 11px;
  font-weight: 950;
  outline: none;
  padding: 10px 12px;
}
.notification-list {
  display: grid;
  gap: 12px;
}
.notification-item {
  display: flex;
  gap: 12px;
  border-radius: 22px;
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  border: 1px solid rgba(255,255,255,.88);
  padding: 14px;
  box-shadow: 6px 6px 14px rgba(83, 122, 143, .06), -5px -5px 12px rgba(255,255,255,.90);
}
.notification-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #A5BDD8, #8BA8C8);
}

.booth-map {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.90);
  background:
    linear-gradient(90deg, rgba(139, 168, 200, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 168, 200, .08) 1px, transparent 1px),
    linear-gradient(135deg, #FAFBFC, #E8F0F7);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: inset 6px 6px 14px rgba(83, 122, 143, .06), inset -6px -6px 14px rgba(255,255,255,.88);
}
.booth {
  position: absolute;
  border-radius: 14px;
  border: 2px solid transparent;
  color: #fff;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}
.booth.available { background: linear-gradient(145deg, #A5BDD8, #8BA8C8); }
.booth.taken { background: #D4DFE8; color: #8B96AA; cursor: not-allowed; }
.booth.selected { background: linear-gradient(145deg, #B8CBDD, #7A8FA0); box-shadow: 0 12px 24px rgba(139, 168, 200, .18); transform: scale(1.04); z-index: 5; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #3D5A75;
  color: #fff;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}
.profile-cover {
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 168, 200, .18), transparent 36%),
    linear-gradient(135deg, #34516F 0%, #425B75 65%, #A5BDD8 150%);
}
.social-active { color: #fff; box-shadow: 7px 7px 14px rgba(83, 122, 143, .12), -5px -5px 12px rgba(255,255,255,.88); }
.social-empty { color: #A0AABD; background: linear-gradient(145deg, #FAFBFC, #E8F0F7); }

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(44, 62, 80, .60);
  backdrop-filter: blur(14px);
  padding: 0;
}
.modal-panel {
  position: relative;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  border-radius: 34px 34px 0 0;
  background: var(--surface);
  box-shadow: 0 -20px 48px rgba(83, 122, 143, .14);
}
.modal-close {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  top: max(14px, env(safe-area-inset-top));
  z-index: 150;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-deep);
  background: linear-gradient(145deg, #FCFDFE, #E8F0F7);
  box-shadow: 10px 10px 20px rgba(83, 122, 143, .10), -8px -8px 16px rgba(255,255,255,.92);
}
.crony-toast {
  position: fixed;
  left: 50%;
  top: 92px;
  z-index: 180;
  display: flex;
  transform: translateX(-50%);
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(44, 62, 80, .92);
  padding: 12px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(44, 62, 80, .18);
}

.organiser-page {
  color: var(--blue-deep);
}
.organiser-hero {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 6%, rgba(165, 189, 216, .24), transparent 34%),
    linear-gradient(145deg, #34516F 0%, #425B75 56%, #8BA8C8 130%);
}
.organiser-hero::after {
  content: "";
  position: absolute;
  inset: auto 30px -70px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  filter: blur(8px);
}
.organiser-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}
.organiser-mobile-top {
  display: none;
}
.organiser-menu-backdrop {
  display: none;
}
.organiser-page-stage {
  min-width: 0;
}
.organiser-sidebar {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 132px);
  overflow-y: auto;
  border-radius: 32px;
}
.organiser-section {
  min-height: min(760px, calc(100vh - 170px));
  animation: organiserPageIn .28s ease both;
}
@keyframes organiserPageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.organiser-step {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 13px 14px;
  color: #7A8FA0;
  font-size: 12px;
  font-weight: 950;
  text-align: left;
  transition: transform .18s ease, color .18s ease, box-shadow .18s ease;
}
.organiser-step i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #FAFBFC, #E0EBF5);
  color: #8BA8C8;
  box-shadow: inset 2px 2px 5px rgba(83, 122, 143, .06), inset -3px -3px 7px rgba(255,255,255,.90);
}
.organiser-step.active,
.organiser-step:hover {
  color: #2C3E50;
  background: linear-gradient(145deg, #FCFDFE, #E8F0F7);
  box-shadow: 7px 7px 14px rgba(83, 122, 143, .08), -6px -6px 12px rgba(255,255,255,.88);
}
.organiser-step:active {
  transform: scale(.98);
}
.organiser-form-card {
  scroll-margin-top: 118px;
  border-radius: 34px;
}
.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #E8F0F7, #DFE9F5);
  padding: 9px 14px;
  color: #8BA8C8;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: inset 3px 3px 8px rgba(83, 122, 143, .06), inset -4px -4px 10px rgba(255,255,255,.90);
}
.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field-control {
  display: block;
  min-width: 0;
}
.field-control span {
  display: block;
  color: #A0AABD;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.field-control input,
.field-control textarea,
.field-control select {
  margin-top: 8px;
  width: 100%;
  min-width: 0;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.90);
  background: linear-gradient(145deg, #FAFBFC, #E8F0F7);
  padding: 13px 14px;
  color: #2C3E50;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  box-shadow: inset 4px 4px 10px rgba(83, 122, 143, .06), inset -5px -5px 10px rgba(255,255,255,.88);
}
.field-control textarea {
  min-height: 92px;
  resize: vertical;
}
.field-control input:focus,
.field-control textarea:focus,
.field-control select:focus {
  border-color: rgba(139, 168, 200, .30);
  box-shadow: inset 3px 3px 8px rgba(83, 122, 143, .06), inset -4px -4px 8px rgba(255,255,255,.92), 0 0 0 4px rgba(139, 168, 200, .08);
}
.upload-tile {
  display: flex;
  min-height: 96px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,.90);
  background: linear-gradient(145deg, #FCFDFE, #DFE9F5);
  color: #2C3E50;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  box-shadow: 8px 8px 16px rgba(83, 122, 143, .08), -7px -7px 16px rgba(255,255,255,.88);
}
.upload-tile i {
  color: #8BA8C8;
  font-size: 22px;
}
.organiser-event-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}
.organiser-board-grid,
.workspace-control-grid,
.payment-grid {
  display: grid;
  gap: 16px;
}
.organiser-board-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* CRONY Light Glass Theme Override */
:root {
  --blue: #2563eb;
  --blue-2: #67e8f9;
  --blue-deep: #111827;
  --ink: #111827;
  --muted: rgba(15, 23, 42, .58);
  --surface: rgba(255, 255, 255, .34);
  --surface-2: rgba(255, 255, 255, .58);
  --shadow-dark: rgba(68, 78, 96, .18);
  --shadow-light: rgba(255, 255, 255, .55);
  --crony-ink: #111827;
  --crony-muted: rgba(15, 23, 42, .58);
  --crony-soft: rgba(15, 23, 42, .40);
  --crony-glass: rgba(255, 255, 255, .34);
  --crony-glass-strong: rgba(255, 255, 255, .58);
  --crony-border: rgba(255, 255, 255, .56);
  --crony-border-soft: rgba(255, 255, 255, .36);
  --crony-blue: #2563eb;
  --crony-cyan: #67e8f9;
  --crony-peach: #f5b787;
  --crony-shadow: 0 24px 80px rgba(68, 78, 96, .18);
  --crony-shadow-soft: 0 14px 42px rgba(68, 78, 96, .13);
}

button:focus { outline: none; }
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .28);
  outline-offset: 3px;
}

body {
  color: var(--crony-ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(123, 211, 218, .72), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(245, 183, 135, .60), transparent 34%),
    radial-gradient(circle at 66% 5%, rgba(255,255,255,.90), transparent 24%),
    linear-gradient(135deg, #c7e3e2 0%, #e7ebe5 48%, #d7c6bb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -80px;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 48%, rgba(255,255,255,.30), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,.14), transparent 32%, rgba(255,255,255,.20));
  filter: blur(30px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.32), transparent 70%);
}

.app-shell {
  max-width: none;
  background: transparent;
  box-shadow: none;
}

.app-header {
  border: 1px solid var(--crony-border-soft);
  border-radius: 0 0 32px 32px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(30px) saturate(1.35);
  -webkit-backdrop-filter: blur(30px) saturate(1.35);
  box-shadow: var(--crony-shadow-soft);
}

#app {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.neumo-card,
.neumo-input,
.neumo-pill,
.stat-pill,
.community-card,
.event-card,
.workspace-post,
.workspace-logistic,
.workspace-doc,
.notification-item {
  border: 1px solid var(--crony-border);
  background: var(--crony-glass);
  backdrop-filter: blur(34px) saturate(1.35);
  -webkit-backdrop-filter: blur(34px) saturate(1.35);
  box-shadow: var(--crony-shadow);
}

.neumo-card { border-radius: 28px; }
.neumo-input { border-radius: 24px; }

.neumo-dark {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.54);
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(135deg, rgba(37,99,235,.92), rgba(103,232,249,.70));
  color: #fff;
  box-shadow: 0 20px 54px rgba(37,99,235,.20), inset 0 1px 0 rgba(255,255,255,.28);
}

.neumo-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(245,183,135,.28);
  filter: blur(6px);
  pointer-events: none;
}

.neumo-dark > * { position: relative; z-index: 1; }

.neumo-avatar,
.quick-action-icon,
.story-avatar,
.map-pin-dot,
.workspace-avatar,
.notification-icon {
  border: 1px solid rgba(255,255,255,.65);
  background: linear-gradient(135deg, rgba(37,99,235,.92), rgba(103,232,249,.80));
  box-shadow: 0 14px 36px rgba(37,99,235,.20), inset 0 1px 0 rgba(255,255,255,.45);
}

.role-menu,
[id^="post-menu-"] {
  border: 1px solid var(--crony-border) !important;
  background: rgba(255,255,255,.58) !important;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  box-shadow: var(--crony-shadow) !important;
}

.role-menu-item:hover,
[id^="post-menu-"] button:hover {
  background: rgba(255,255,255,.68) !important;
}

.desktop-toolbar {
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--crony-border);
  background: rgba(255,255,255,.34);
  backdrop-filter: blur(26px) saturate(1.25);
  -webkit-backdrop-filter: blur(26px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46), 0 12px 34px rgba(68,78,96,.10);
}

.nav-tab {
  min-width: 96px;
  padding: 10px 18px;
  color: rgba(15,23,42,.52);
}

.nav-tab.active,
.nav-tab:hover {
  background: rgba(255,255,255,.70);
  color: var(--crony-ink);
  box-shadow: 0 10px 26px rgba(68,78,96,.12), inset 0 1px 0 rgba(255,255,255,.72);
}

.neumo-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid var(--crony-border);
  background: rgba(255,255,255,.38);
  color: rgba(15,23,42,.70);
  box-shadow: var(--crony-shadow-soft), inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-toolbar {
  display: flex;
}

.sticky-floating-nav {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(30px) saturate(1.25);
  -webkit-backdrop-filter: blur(30px) saturate(1.25);
  box-shadow: 0 22px 65px rgba(68,78,96,.22), inset 0 1px 0 rgba(255,255,255,.55);
}

.mobile-nav {
  flex: 1;
  flex-direction: column;
  gap: 4px;
  height: auto;
  padding: 10px 8px;
  border-radius: 22px;
  color: rgba(15,23,42,.48);
  font-size: 10px;
}

.mobile-nav span {
  display: inline;
  font-size: 10px;
}

.mobile-nav.active,
.mobile-nav:hover {
  background: rgba(255,255,255,.70);
  color: var(--crony-ink);
  box-shadow: 0 10px 24px rgba(68,78,96,.13);
}

.mobile-feed-plus {
  display: grid !important;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.65);
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(103,232,249,.80));
  color: #fff;
  box-shadow: 0 18px 42px rgba(37,99,235,.24), inset 0 1px 0 rgba(255,255,255,.32);
  font-size: 16px !important;
}

.section-eyebrow,
.field-label {
  color: rgba(37,99,235,.68);
}

.field-label,
.field-control span {
  color: rgba(15,23,42,.48);
}

.btn-primary {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.70);
  background: rgba(255,255,255,.70);
  color: var(--crony-ink);
  box-shadow: 0 16px 38px rgba(68,78,96,.15), inset 0 1px 0 rgba(255,255,255,.75);
}

.btn-primary:hover { transform: translateY(-1px); background: rgba(255,255,255,.86); }

.btn-ghost {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.30);
  color: rgba(15,23,42,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
}

.neumo-send,
.booth.available,
.booth.selected {
  border: 1px solid rgba(255,255,255,.52);
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(59,130,246,.86));
  color: #fff;
  box-shadow: 0 18px 42px rgba(37,99,235,.24), inset 0 1px 0 rgba(255,255,255,.28);
}

.ticker-wrap,
.info-tile,
.tag-chip,
.quick-action-card,
.category-pill,
.best-point,
.status-pill,
.decision-select {
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
  color: rgba(15,23,42,.68);
}

.mini-card {
  border: 1px solid var(--crony-border);
  background: rgba(255,255,255,.50);
  color: var(--crony-ink);
  box-shadow: var(--crony-shadow-soft);
  backdrop-filter: blur(24px);
}

.event-tile,
.event-card {
  border: 1px solid rgba(255,255,255,.50);
  box-shadow: var(--crony-shadow);
}

.event-type-badge,
.event-fav-button {
  border: 1px solid rgba(255,255,255,.54);
  background: rgba(255,255,255,.58);
  color: rgba(15,23,42,.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 10px 24px rgba(68,78,96,.10);
}

.map-bg,
.booth-map {
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.16) 1px, transparent 1px),
    radial-gradient(circle at 24% 28%, rgba(37,99,235,.12), transparent 20%),
    radial-gradient(circle at 70% 66%, rgba(245,183,135,.20), transparent 25%),
    rgba(255,255,255,.24);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  backdrop-filter: blur(28px);
}

.map-label,
.map-event-pin,
.map-event-date {
  background: rgba(255,255,255,.66);
  color: rgba(15,23,42,.62);
  box-shadow: 0 12px 28px rgba(68,78,96,.12), inset 0 1px 0 rgba(255,255,255,.55);
}

.map-event-pin {
  border: 1px solid rgba(255,255,255,.68);
  backdrop-filter: blur(16px);
}

.map-event-name { color: var(--crony-ink); }
.map-event-date { color: var(--crony-blue); }

.field-control input,
.field-control textarea,
.field-control select,
textarea,
input {
  border-color: rgba(255,255,255,.54) !important;
  background: rgba(255,255,255,.42) !important;
  color: var(--crony-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55) !important;
  backdrop-filter: blur(18px);
}

.field-control input:focus,
.field-control textarea:focus,
.field-control select:focus,
textarea:focus,
input:focus {
  border-color: rgba(37,99,235,.32) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60), 0 0 0 4px rgba(37,99,235,.08) !important;
}

.profile-cover {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.46), transparent 36%),
    linear-gradient(135deg, rgba(37,99,235,.82), rgba(103,232,249,.58) 58%, rgba(245,183,135,.44));
}

.verified-badge {
  border: 1px solid rgba(255,255,255,.56);
  background: rgba(255,255,255,.52);
  color: var(--crony-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
}

.verified-badge.profile-status-approved {
  background: rgba(16,185,129,.16);
  color: #047857;
  border-color: rgba(16,185,129,.28);
}

.verified-badge.profile-status-pending {
  background: rgba(245,158,11,.16);
  color: #92400e;
  border-color: rgba(245,158,11,.28);
}

.modal-layer {
  background: rgba(15,23,42,.42);
}

.modal-panel {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: var(--crony-shadow);
}

.modal-close {
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  color: rgba(15,23,42,.70);
  box-shadow: var(--crony-shadow-soft);
}

.vendor-crm-grid {
  display: grid;
  gap: 14px;
}

.vendor-crm-section {
  border: 1px solid rgba(255,255,255,.50);
  border-radius: 28px;
  background: rgba(255,255,255,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
  padding: 18px;
}

.vendor-crm-photo {
  display: block;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 24px;
  background: rgba(255,255,255,.38);
}

.vendor-crm-photo img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.vendor-crm-doc {
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 22px;
  background: rgba(255,255,255,.38);
  padding: 14px;
}

.allocation-map-shell {
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 32px;
  background: rgba(255,255,255,.30);
  box-shadow: var(--crony-shadow-soft), inset 0 1px 0 rgba(255,255,255,.52);
  padding: 18px;
}

.allocation-map {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.20) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.20) 1px, transparent 1px),
    radial-gradient(circle at 20% 16%, rgba(37,99,235,.14), transparent 24%),
    radial-gradient(circle at 78% 78%, rgba(245,183,135,.22), transparent 28%),
    rgba(255,255,255,.24);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
}

.allocation-svg {
  display: block;
  width: 100%;
  height: 520px;
}

.allocation-hall {
  fill: rgba(255,255,255,.20);
  stroke: rgba(255,255,255,.72);
  stroke-width: .6;
}

.allocation-door-label {
  fill: rgba(15,23,42,.48);
  font-size: 2.1px;
  font-weight: 900;
  letter-spacing: .15em;
}

.allocation-booth {
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.allocation-booth:hover,
.allocation-booth.selected {
  transform: scale(1.04);
}

.allocation-booth rect {
  fill: rgba(255,255,255,.72);
  stroke: rgba(255,255,255,.95);
  stroke-width: .5;
  filter: drop-shadow(0 3px 5px rgba(68,78,96,.14));
}

.allocation-booth text {
  fill: rgba(15,23,42,.78);
  font-size: 2.6px;
  font-weight: 900;
  pointer-events: none;
}

.allocation-booth text + text {
  fill: rgba(15,23,42,.52);
  font-size: 1.7px;
}

.allocation-pending rect { fill: rgba(251,191,36,.76); }
.allocation-approved rect { fill: rgba(52,211,153,.76); }
.allocation-confirmed rect { fill: rgba(37,99,235,.78); }
.allocation-rejected rect { fill: rgba(248,113,113,.70); }
.allocation-confirmed text,
.allocation-rejected text { fill: #fff; }
.allocation-confirmed text + text,
.allocation-rejected text + text { fill: rgba(255,255,255,.78); }

.allocation-booth.selected rect {
  stroke: rgba(15,23,42,.62);
  stroke-width: .9;
}

.allocation-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  color: rgba(15,23,42,.54);
}

.allocation-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  background: rgba(255,255,255,.40);
  padding: 7px 10px;
}

.allocation-legend i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
}

.allocation-neighbour {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
  padding: 12px;
  color: rgba(15,23,42,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
}

.allocation-neighbour:hover {
  background: rgba(255,255,255,.62);
}

.floorplan-editor-shell,
.floorplan-editor-inspector {
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 32px;
  background: rgba(255,255,255,.30);
  box-shadow: var(--crony-shadow-soft), inset 0 1px 0 rgba(255,255,255,.52);
}

.floorplan-editor-shell {
  padding: 18px;
}

.floorplan-editor-canvas {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(37,99,235,.10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37,99,235,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.32), transparent 30%, rgba(255,255,255,.28)),
    rgba(255,255,255,.26);
  background-size: 28px 28px, 28px 28px, auto, auto;
  touch-action: none;
}

.floorplan-editor-svg {
  display: block;
  width: 100%;
  height: 560px;
  user-select: none;
}

.editor-hall {
  fill: rgba(255,255,255,.16);
  stroke: rgba(255,255,255,.76);
  stroke-width: .6;
}

.editor-hall-label {
  fill: rgba(15,23,42,.38);
  font-size: 2px;
  font-weight: 900;
  letter-spacing: .18em;
}

.editor-booth {
  cursor: grab;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .12s ease;
}

.editor-booth:active {
  cursor: grabbing;
}

.editor-booth:hover,
.editor-booth.selected {
  transform: scale(1.035);
}

.editor-booth rect {
  fill: rgba(255,255,255,.72);
  stroke: rgba(37,99,235,.34);
  stroke-width: .55;
  filter: drop-shadow(0 4px 8px rgba(68,78,96,.16));
}

.editor-booth.editor-type-standard rect { fill: rgba(255,255,255,.78); }
.editor-booth.editor-type-premium rect { fill: rgba(37,99,235,.72); }
.editor-booth.editor-type-food rect { fill: rgba(16,185,129,.68); }
.editor-booth.editor-type-sponsor rect { fill: rgba(245,158,11,.72); }
.editor-booth.editor-type-stage rect { fill: rgba(100,116,139,.64); }

.editor-booth.selected rect {
  fill: rgba(37,99,235,.78);
  stroke: rgba(255,255,255,.92);
  stroke-width: .8;
}

.editor-booth text {
  fill: rgba(15,23,42,.76);
  font-size: 2.6px;
  font-weight: 950;
  pointer-events: none;
}

.editor-booth text + text {
  fill: rgba(15,23,42,.50);
  font-size: 1.8px;
}

.editor-booth circle {
  fill: rgba(37,99,235,.58);
  stroke: rgba(255,255,255,.82);
  stroke-width: .35;
  pointer-events: none;
}

.editor-booth.selected text,
.editor-booth.selected text + text {
  fill: #fff;
}

.editor-booth.selected circle {
  fill: #fff;
}

.editor-symbol {
  cursor: grab;
  transform-box: fill-box;
  transform-origin: center;
}

.editor-symbol rect {
  fill: rgba(15,23,42,.08);
  stroke: rgba(15,23,42,.28);
  stroke-width: .5;
}

.editor-symbol image {
  pointer-events: none;
}

.editor-symbol text {
  fill: rgba(15,23,42,.62);
  font-size: 2.2px;
  font-weight: 950;
  pointer-events: none;
}

.editor-symbol-html {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  gap: 1px;
  overflow: hidden;
  color: rgba(15,23,42,.72);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 2.1px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.editor-symbol-html i {
  font-size: 4px;
}

.editor-symbol-html span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-symbol-html.symbol-entrance,
.editor-symbol-html.symbol-counter { color: #10b981; }
.editor-symbol-html.symbol-exit { color: #ef4444; }
.editor-symbol-html.symbol-stage,
.editor-symbol-html.symbol-speaker,
.editor-symbol-html.symbol-arch,
.editor-symbol-html.symbol-toilet { color: #475569; }
.editor-symbol-html.symbol-text { color: #111827; }
.editor-symbol-html.symbol-shape { color: #6366f1; }

.editor-symbol.selected rect,
.editor-symbol.selected image {
  outline: 1px solid rgba(37,99,235,.70);
  filter: drop-shadow(0 4px 8px rgba(37,99,235,.22));
}

.floorplan-builder {
  overflow: hidden;
  padding: 0 !important;
}

.floorplan-builder-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.46);
  background: rgba(255,255,255,.34);
  padding: 18px 22px;
}

.floorplan-builder-body {
  display: grid;
  min-height: 760px;
  grid-template-columns: 420px minmax(0, 1fr) 330px;
  background: rgba(241,245,249,.38);
}

.floorplan-builder.library-collapsed .floorplan-builder-body {
  grid-template-columns: 82px minmax(0, 1fr) 330px;
}

.floorplan-builder.library-collapsed .floorplan-library {
  display: grid;
  grid-template-columns: 82px;
}

.floorplan-builder.library-collapsed .floorplan-library-panel {
  display: none;
}

.floorplan-builder.inspector-collapsed .floorplan-builder-body {
  grid-template-columns: 420px minmax(0, 1fr);
}

.floorplan-builder.library-collapsed.inspector-collapsed .floorplan-builder-body {
  grid-template-columns: 82px minmax(0, 1fr);
}

.floorplan-builder.inspector-collapsed .floorplan-editor-inspector {
  display: none;
}

.floorplan-library {
  display: grid;
  min-width: 0;
  grid-template-columns: 82px minmax(0, 1fr);
  border-right: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.42);
}

.floorplan-library-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,.50);
  padding: 22px 10px;
}

.floorplan-library-rail button {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 68px;
  border-radius: 20px;
  color: rgba(15,23,42,.46);
  font-size: 10px;
  font-weight: 900;
}

.floorplan-library-rail button.active,
.floorplan-library-rail button:hover {
  background: rgba(255,255,255,.68);
  color: #14532d;
}

.floorplan-library-panel {
  max-height: 760px;
  overflow-y: auto;
  padding: 24px;
}

.floorplan-lib-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 22px;
  background: rgba(255,255,255,.48);
  color: #11320d;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.floorplan-lib-card i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  font-size: 24px;
  box-shadow: var(--crony-shadow-soft);
}

.floorplan-lib-card small {
  display: block;
  margin-top: -6px;
  color: rgba(15,23,42,.46);
  font-size: 10px;
  font-weight: 850;
}

.floorplan-upload-drop,
.floorplan-library-note {
  display: grid;
  gap: 10px;
  border: 1px dashed rgba(15,23,42,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.50);
  padding: 22px;
  color: rgba(15,23,42,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.floorplan-upload-drop i,
.floorplan-library-note i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 17px;
  background: rgba(37,99,235,.10);
  color: var(--crony-blue);
  font-size: 20px;
}

.floorplan-upload-drop strong,
.floorplan-library-note strong {
  display: block;
  color: rgba(15,23,42,.88);
  font-size: 13px;
  font-weight: 950;
}

.floorplan-upload-drop span,
.floorplan-library-note span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.floorplan-stage {
  position: relative;
  min-width: 0;
  padding: 34px;
}

.floorplan-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.floorplan-editor-inspector {
  max-height: 712px;
  overflow-y: auto;
  align-self: start;
  margin: 24px 24px 24px 0;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 28px;
  background: rgba(255,255,255,.56);
  padding: 24px;
  box-shadow: 0 28px 70px rgba(15,23,42,.14), inset 0 1px 0 rgba(255,255,255,.70);
  backdrop-filter: blur(28px) saturate(1.18);
  -webkit-backdrop-filter: blur(28px) saturate(1.18);
}

.floorplan-inspector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -24px -24px 0;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 18px 20px;
}

.floorplan-inspector-head span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(134,239,172,.26);
  color: #14532d;
}

.floorplan-inspector-head strong {
  color: rgba(15,23,42,.82);
  font-size: 13px;
  font-weight: 950;
}

.floorplan-inspector-head em {
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  padding: 5px 9px;
  color: var(--crony-blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.floorplan-inspector-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: rgba(15,23,42,.38);
}

.floorplan-inspector-head button:hover {
  background: rgba(15,23,42,.06);
  color: rgba(15,23,42,.70);
}

.floorplan-inspector-section {
  border-top: 1px solid rgba(15,23,42,.055);
  padding: 24px 0;
}

.floorplan-editor-canvas {
  height: 640px;
  min-height: 640px;
  overflow: auto;
  border-radius: 0;
  background-color: #eef0f2;
  touch-action: none;
}

.floorplan-builder.tool-hand .floorplan-editor-canvas,
.floorplan-builder.tool-hand .floorplan-editor-svg {
  cursor: grab;
}

.floorplan-editor-canvas.is-panning,
.floorplan-editor-canvas.is-panning .floorplan-editor-svg {
  cursor: grabbing !important;
}

.floorplan-builder.tool-pen .floorplan-editor-canvas,
.floorplan-builder.tool-pen .floorplan-editor-svg {
  cursor: crosshair;
}

.floorplan-editor-svg {
  width: 2200px;
  height: 1500px;
  min-width: 2200px;
  min-height: 1500px;
  background:
    radial-gradient(circle, rgba(15,23,42,.10) 1px, transparent 1px),
    #fff;
  background-size: 10px 10px;
  box-shadow: 0 26px 80px rgba(15,23,42,.10);
}

.editor-booth rect {
  fill: var(--booth-fill, rgba(255,255,255,.78)) !important;
  rx: 0;
}

.editor-booth.selected rect {
  fill: var(--booth-fill, rgba(37,99,235,.78)) !important;
  stroke: #6366f1;
  stroke-width: 1.3;
}

.editor-selection-marquee {
  fill: rgba(134,239,172,.18);
  stroke: rgba(34,197,94,.88);
  stroke-width: .55;
  stroke-dasharray: 2 2;
  pointer-events: none;
}

.floorplan-bottom-dock {
  position: sticky;
  bottom: 18px;
  left: 50%;
  z-index: 5;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: -76px auto 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  padding: 10px 12px;
  box-shadow: 0 18px 48px rgba(15,23,42,.14);
  backdrop-filter: blur(22px);
}

.floorplan-bottom-dock button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: rgba(15,23,42,.62);
}

.floorplan-bottom-dock button:hover {
  background: rgba(37,99,235,.10);
  color: var(--crony-blue);
}

.floorplan-bottom-dock button.active {
  background: #14532d;
  color: #fff;
}

.floorplan-bottom-dock span {
  width: 1px;
  height: 28px;
  background: rgba(15,23,42,.10);
}

.floorplan-bottom-dock strong {
  min-width: 48px;
  text-align: center;
  color: #14532d;
  font-size: 12px;
  font-weight: 950;
}

.floorplan-align-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0 -24px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 14px 20px;
}

.floorplan-align-bar button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: rgba(15,23,42,.42);
  font-size: 15px;
}

.floorplan-align-bar button:hover {
  background: rgba(37,99,235,.10);
  color: var(--crony-blue);
}

.floorplan-align-bar span {
  width: 1px;
  height: 22px;
  background: rgba(15,23,42,.10);
}

.floorplan-color-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.floorplan-color-picker {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.floorplan-color-picker input[type="color"] {
  width: 100%;
  height: 78px;
  border: 1px solid rgba(255,255,255,.68) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.62) !important;
  padding: 5px !important;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 12px 28px rgba(15,23,42,.08);
}

.floorplan-color-picker code {
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  padding: 14px 16px;
  color: rgba(15,23,42,.66);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.floorplan-color-swatches button {
  height: 42px;
  border: 2px solid rgba(255,255,255,.84);
  border-radius: 14px;
  background: var(--swatch);
  box-shadow: 0 10px 24px rgba(15,23,42,.10);
}

.floorplan-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.floorplan-type-grid button {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 18px;
  background: rgba(255,255,255,.50);
  padding: 14px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
}

.floorplan-type-grid button.active {
  border-color: rgba(37,99,235,.36);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(37,99,235,.12), inset 0 1px 0 rgba(255,255,255,.74);
}

.floorplan-type-grid i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 11px;
  background: var(--type-color);
  color: rgba(15,23,42,.72);
}

.floorplan-type-grid span,
.floorplan-type-grid strong,
.floorplan-type-grid small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floorplan-type-grid span {
  color: rgba(15,23,42,.84);
  font-size: 11px;
  font-weight: 950;
}

.floorplan-type-grid strong {
  color: var(--crony-blue);
  font-size: 12px;
  font-weight: 950;
}

.floorplan-type-grid small {
  color: rgba(15,23,42,.46);
  font-size: 10px;
  font-weight: 850;
}

body.floorplan-editor-mode .organiser-layout {
  grid-template-columns: minmax(0, 1fr);
}

body.floorplan-editor-mode .organiser-sidebar {
  display: none;
}

body.floorplan-editor-mode .organiser-page-stage {
  width: 100%;
}

body.floorplan-editor-mode {
  overflow: hidden;
}

body.floorplan-editor-mode .organiser-mobile-top,
body.floorplan-editor-mode .organiser-hero {
  display: none !important;
}

body.floorplan-editor-mode #org-dashboard-section,
body.floorplan-editor-mode .organiser-layout,
body.floorplan-editor-mode .organiser-page-stage {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

body.floorplan-editor-mode .organiser-page-stage {
  padding: 0 !important;
}

body.floorplan-editor-mode .organiser-section:not(#floorplan-editor) {
  display: none !important;
}

body.floorplan-editor-mode #floorplan-editor {
  height: 100dvh;
  border-radius: 0;
}

body.floorplan-editor-mode .floorplan-builder {
  height: 100%;
}

body.floorplan-editor-mode .floorplan-builder-topbar {
  min-height: 74px;
  padding: 12px 20px;
}

body.floorplan-editor-mode .floorplan-builder-body {
  height: calc(100dvh - 74px);
  min-height: 0;
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr) minmax(300px, 340px);
}

body.floorplan-editor-mode .floorplan-builder.library-collapsed .floorplan-builder-body {
  grid-template-columns: 82px minmax(0, 1fr) minmax(300px, 340px);
}

body.floorplan-editor-mode .floorplan-builder.inspector-collapsed .floorplan-builder-body {
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
}

body.floorplan-editor-mode .floorplan-builder.library-collapsed.inspector-collapsed .floorplan-builder-body {
  grid-template-columns: 82px minmax(0, 1fr);
}

body.floorplan-editor-mode .floorplan-library,
body.floorplan-editor-mode .floorplan-library-panel,
body.floorplan-editor-mode .floorplan-editor-inspector {
  max-height: calc(100dvh - 74px);
}

body.floorplan-editor-mode .floorplan-stage {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 22px;
}

body.floorplan-editor-mode .floorplan-stage-header {
  flex: 0 0 auto;
}

body.floorplan-editor-mode .floorplan-editor-canvas {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}

body.floorplan-editor-mode .floorplan-editor-svg {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
}

body.floorplan-editor-mode .floorplan-bottom-dock {
  position: absolute;
  bottom: 18px;
  margin: 0;
}

body.floorplan-editor-mode .floorplan-editor-inspector {
  margin: 18px 18px 18px 0;
}

@media (max-width: 1280px) {
  .floorplan-builder-body {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .floorplan-builder.library-collapsed .floorplan-builder-body,
  .floorplan-builder.library-collapsed.inspector-collapsed .floorplan-builder-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .floorplan-builder.inspector-collapsed:not(.library-collapsed) .floorplan-builder-body {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .floorplan-editor-inspector {
    grid-column: 1 / -1;
    max-height: none;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.48);
  }
  body.floorplan-editor-mode .floorplan-builder-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  body.floorplan-editor-mode .floorplan-builder.inspector-collapsed .floorplan-builder-body,
  body.floorplan-editor-mode .floorplan-builder.library-collapsed.inspector-collapsed .floorplan-builder-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  body.floorplan-editor-mode .floorplan-library-panel {
    display: none;
  }
  body.floorplan-editor-mode .floorplan-library {
    grid-template-columns: 82px;
  }
  body.floorplan-editor-mode .floorplan-editor-inspector {
    grid-column: auto;
    max-height: calc(100dvh - 74px);
    border-top: 0;
  }
  body.floorplan-editor-mode .floorplan-builder:not(.inspector-collapsed) .floorplan-builder-body {
    grid-template-columns: 82px minmax(0, 1fr) minmax(280px, 320px);
  }
}

@media (min-width: 768px) {
  .modal-layer {
    align-items: center;
    padding: 32px;
  }

  .modal-panel {
    width: min(1120px, calc(100vw - 64px));
    max-height: calc(100dvh - 64px);
    border-radius: 34px;
  }

  .modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
  }
}

.crony-toast {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.44);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  color: var(--crony-ink);
  box-shadow: var(--crony-shadow);
}

.upload-tile {
  border: 1px solid rgba(255,255,255,.54);
  background: rgba(255,255,255,.40);
  box-shadow: var(--crony-shadow-soft), inset 0 1px 0 rgba(255,255,255,.52);
}

.organiser-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(135deg, rgba(37,99,235,.92), rgba(103,232,249,.70));
}

.organiser-step.active,
.organiser-step:hover {
  background: rgba(255,255,255,.60);
  color: var(--crony-ink);
  box-shadow: 0 10px 26px rgba(68,78,96,.12), inset 0 1px 0 rgba(255,255,255,.72);
}

.organiser-step i {
  background: rgba(255,255,255,.38);
  color: var(--crony-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
}

[data-page="feed"] {
  max-width: 720px !important;
  margin: 0 auto;
}

[data-page="feed"] > .bg-white,
[data-page="feed"] #main-feed-container {
  border: 1px solid var(--crony-border) !important;
  border-radius: 28px;
  background: var(--crony-glass) !important;
  backdrop-filter: blur(34px) saturate(1.35);
  -webkit-backdrop-filter: blur(34px) saturate(1.35);
  box-shadow: var(--crony-shadow);
}

[data-page="feed"] > .sticky {
  top: 102px;
  margin-bottom: 14px;
}

[data-page="feed"] #main-feed-container {
  padding: 18px !important;
}

.post-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--crony-border) !important;
  background: var(--crony-glass-strong) !important;
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  box-shadow: var(--crony-shadow-soft) !important;
}

.post-card::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 70px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: rgba(15,23,42,.10);
}

.post-card .post-author-avatar {
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.70);
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(103,232,249,.78));
  box-shadow: 0 14px 34px rgba(37,99,235,.18), inset 0 1px 0 rgba(255,255,255,.30);
}

.post-card button {
  border-radius: 999px;
}

.post-card button:hover {
  background: rgba(255,255,255,.46);
}

@media (min-width: 768px) {
  .mobile-toolbar { display: none !important; }
}

@media (max-width: 767px) {
  .app-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 30px;
    padding: 12px !important;
  }

  .desktop-toolbar { display: none !important; }
  .mobile-toolbar { display: flex !important; }
  #app { padding-top: 102px !important; }

  .mobile-feed-nav {
    margin-top: -22px;
    gap: 5px;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-feed-nav.active .mobile-feed-plus,
  .mobile-feed-nav:hover .mobile-feed-plus {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(37,99,235,.30), inset 0 1px 0 rgba(255,255,255,.36);
  }

  [data-page="feed"] > .sticky {
    top: 96px;
  }
}
