/* ——— PHONE MOCKUP STYLES ——— */

.phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.phone-frame {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 9 / 19;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .phone-frame { width: 340px; }
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

.phone-bezel {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #1a1c1b 0%, #0a0b0a 60%);
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(240, 236, 228, 0.08),
    0 0 0 2px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(240, 236, 228, 0.06),
    0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0b0a;
  border-radius: 34px;
  overflow: hidden;
}

.status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 22px 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  z-index: 5;
}
.status-icons { display: flex; align-items: center; gap: 6px; color: var(--ink); }
.signal-dots { display: inline-flex; align-items: flex-end; gap: 1.5px; }
.signal-dots span {
  display: block; width: 2.5px; background: currentColor; border-radius: 0.5px;
}
.signal-dots span:nth-child(1) { height: 3px; }
.signal-dots span:nth-child(2) { height: 5px; }
.signal-dots span:nth-child(3) { height: 7px; }
.signal-dots span:nth-child(4) { height: 9px; }

.screen-stack { position: absolute; inset: 0; }
.screen-slot {
  position: absolute;
  inset: 0;
  transition: opacity .6s ease, transform .6s ease;
}
.screen-slot.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.screen-slot.off { opacity: 0; transform: translateY(6px); pointer-events: none; }

.screen {
  position: absolute;
  inset: 0;
  padding-top: 44px;
  font-family: var(--sans);
  color: var(--ink);
}

/* MAP */
.screen-map {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45, 122, 58, 0.25), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(76, 184, 95, 0.12), transparent 60%),
    #0a0d0b;
}
.map-canvas { position: absolute; inset: 44px 0 0 0; background: #07120c; }
.map-streets { position: absolute; inset: 0; width: 100%; height: 100%; }

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(76, 184, 95, 0.15);
  animation: pulse-ring 2.5s ease-out infinite;
}
.map-pin-dot {
  position: relative;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  background: var(--green);
  color: #0a1f10;
  border-radius: 999px;
  padding: 4px 6px;
  border: 2px solid #0a0d0b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.map-pin-hot .map-pin-dot {
  background: var(--green-bright);
  font-size: 11px;
  padding: 6px 9px;
  transform: scale(1.15);
}
.map-pin-hot .map-pin-ring {
  inset: -14px;
  background: rgba(108, 212, 126, 0.22);
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-top {
  position: absolute;
  top: 54px; left: 14px; right: 14px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.map-loc, .map-filter {
  background: rgba(14, 15, 14, 0.75);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.map-loc { flex: 1; color: var(--ink); }
.map-filter {
  color: var(--green-bright);
  border-color: rgba(76, 184, 95, 0.3);
  background: rgba(76, 184, 95, 0.08);
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.map-card {
  position: absolute;
  bottom: 16px; left: 12px; right: 12px;
  background: rgba(17, 19, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 14px;
  z-index: 4;
}
.map-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.map-card-name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.map-card-meta {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 4px;
  font-family: var(--mono);
}
.hype-badge { text-align: right; }
.hype-score {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.9;
  color: var(--green-bright);
  font-style: italic;
}
.hype-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.map-card-stats {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
  padding-top: 10px;
  border-top: 1px solid var(--hairline);
}
.stat-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* VENUE */
.screen-venue { background: #0a0b0a; padding-top: 44px; }
.venue-cover {
  position: relative;
  height: 36%;
  overflow: hidden;
}
.venue-cover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue-back {
  position: absolute;
  top: 14px; left: 14px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(10,11,10,0.7);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.venue-live {
  position: absolute;
  top: 18px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,11,10,0.7);
  border: 1px solid rgba(76, 184, 95, 0.3);
  border-radius: 999px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
}
.venue-live .dot { width: 6px; height: 6px; }

.venue-body { padding: 16px 18px; }
.venue-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}
.venue-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.venue-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.hype-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 0.85;
  color: var(--green-bright);
}
.hype-bar {
  height: 4px;
  background: var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.hype-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  border-radius: 2px;
  animation: hype-shine 3s ease-in-out infinite alternate;
}
@keyframes hype-shine {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--hairline-strong);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ink-muted);
}
.venue-section-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.venue-feed { display: flex; flex-direction: column; gap: 10px; }

.feed-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.feed-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(76, 184, 95, 0.15);
  border: 1px solid rgba(76, 184, 95, 0.3);
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feed-body { flex: 1; min-width: 0; }
.feed-text { font-size: 13px; color: var(--ink); line-height: 1.35; }
.feed-time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* FEED */
.screen-feed { background: #0a0b0a; padding-top: 56px; }
.feed-head {
  padding: 6px 18px 14px;
  border-bottom: 1px solid var(--hairline);
}
.feed-head-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.feed-head-sub {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-top: 6px;
}
.feed-list {
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
}
.feed-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.feed-row-left { flex: 1; min-width: 0; }
.feed-row-name, .feed-row-meta, .feed-row-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-row:last-child { border-bottom: 0; }
.feed-row-name {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.feed-row-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.feed-row-text {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
}
.feed-row-score {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.feed-row-score.up { background: rgba(76, 184, 95, 0.12); color: var(--green-bright); }
.feed-row-score.dn { background: rgba(240, 236, 228, 0.06); color: var(--ink-muted); }

/* dots indicator under phone */
.phone-dots {
  display: flex;
  gap: 8px;
}
.phone-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink-ghost);
  transition: all .25s ease;
  border: none;
  padding: 0;
  cursor: pointer;
}
.phone-dot.on {
  background: var(--green);
  width: 24px;
}
