/* ============================================================
   HAV1 — Cyberpunk Futuristic Instagram Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --bg-deep:    #06060f;
  --bg-card:    rgba(10,10,28,0.85);
  --bg-glass:   rgba(0,245,255,0.04);
  --neon-cyan:  #00f5ff;
  --neon-pink:  #ff00cc;
  --neon-gold:  #ffd700;
  --neon-green: #00ff88;
  --neon-purple:#a855f7;
  --text-main:  #e2e8f5;
  --text-muted: #7889a4;
  --border:     rgba(0,245,255,0.18);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --glow-cyan:  0 0 20px rgba(0,245,255,0.4), 0 0 60px rgba(0,245,255,0.1);
  --glow-pink:  0 0 20px rgba(255,0,204,0.4), 0 0 60px rgba(255,0,204,0.1);
  --font-head:  'Orbitron', monospace;
  --font-body:  'Exo 2', sans-serif;
  --font-mono:  'Share Tech Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Background Grid ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(168,85,247,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0,245,255,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(255,0,204,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 3px; }

/* ── Main wrapper ── */
#app {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ── Header / Profile — moldura 9:19 definida em index.php ── */
.hav1-header {
  text-align: center;
  position: relative;
}

.hav1-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.hav1-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box,
              linear-gradient(135deg, var(--neon-cyan), var(--neon-pink)) border-box;
  box-shadow: var(--glow-cyan);
}

.hav1-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: var(--glow-cyan);
}

.hav1-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hav1-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* ── Section ── */
.section {
  margin-bottom: 36px;
}

/* ── Separator ── */
.separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.separator span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Social Mini Buttons ── */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--btn-color, var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.2s;
}

.social-btn:hover::before { opacity: 0.12; }
.social-btn:hover {
  border-color: var(--btn-color, var(--neon-cyan));
  box-shadow: 0 0 16px rgba(var(--btn-rgb, 0,245,255),0.3);
  transform: translateY(-2px);
}

.social-btn svg,
.social-btn i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: var(--btn-color, var(--neon-cyan));
  position: relative;
  z-index: 1;
}

.social-btn span { position: relative; z-index: 1; }

/* ── Sites Carousel ── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

.site-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
}

.site-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.site-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(168,85,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.site-card-body {
  padding: 20px;
}

.site-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.site-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.site-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #000;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--neon-cyan);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* ── Dev Links ── */
.dev-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dev-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}

.dev-link:hover {
  border-color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.25);
  color: var(--neon-gold);
  transform: translateY(-2px);
}

/* ── News Feed — grid 2×3, 6 por página ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
}

.news-card:hover { border-color: var(--neon-pink); transform: translateY(-2px); }

.news-card-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.news-card-thumb-placeholder {
  height: 100px;
  background: linear-gradient(135deg, rgba(255,0,204,0.1), rgba(0,245,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.news-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  min-height: 72px;
}

.news-card-summary {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card-views {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.62rem;
  color: rgba(0, 245, 255, 0.75);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.news-pag-info {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.news-pagination { margin-top: 14px; }

.news-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
}

.news-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-summary {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.news-card-expand {
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(255,0,204,0.1);
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  border-radius: 20px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.news-card-expand:hover {
  background: var(--neon-pink);
  color: #000;
}

/* ── Filter Pills ── */
.filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filter-pill {
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.08);
  box-shadow: 0 0 10px rgba(0,245,255,0.2);
}

/* ── Music Player ── */
.music-player {
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.music-player::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
}

.music-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.music-cover {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.3);
  flex-shrink: 0;
}

.music-cover.spin {
  animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.music-cover-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.music-info { flex: 1; min-width: 0; }

.music-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-cyan);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Progress */
.music-progress-wrap {
  margin-bottom: 12px;
}

.music-progress {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.music-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  cursor: pointer;
}

.music-times {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 4px;
}

.music-plays {
  flex-shrink: 0;
  font-size: 0.65rem;
  color: rgba(0, 245, 255, 0.75);
  letter-spacing: 0.04em;
}

/* Controls */
.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-btn:hover { color: var(--text-main); }

.ctrl-btn.play-btn {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #000;
  font-size: 20px;
  box-shadow: 0 0 16px rgba(0,245,255,0.4);
}

.ctrl-btn.play-btn:hover { transform: scale(1.08); }

/* Volume */
.music-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.vol-slider {
  -webkit-appearance: none;
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-pink);
  cursor: pointer;
}

.music-playlist {
  margin-top: 16px;
  max-height: none;
  overflow: visible;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.8rem;
}

.playlist-item:hover { background: rgba(0,245,255,0.07); }
.playlist-item.active { background: rgba(0,245,255,0.1); color: var(--neon-cyan); }

.playlist-num {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  flex-shrink: 0;
}

.playlist-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.playlist-plays {
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(0, 245, 255, 0.75);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.playlist-dur { flex-shrink: 0; color: var(--text-muted); font-family: var(--font-mono); font-size: 0.68rem; }

/* ── Streaming Cards ── */
.streaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.streaming-card {
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.streaming-card.spotify {
  background: linear-gradient(135deg, #0a1f0a, #1a1a1a);
  border-color: rgba(30,215,96,0.3);
}

.streaming-card.youtube-music {
  background: linear-gradient(135deg, #1a0808, #1a1a1a);
  border-color: rgba(255,0,0,0.3);
}

.streaming-card:hover { transform: translateY(-3px); }

.streaming-card.spotify:hover { box-shadow: 0 8px 30px rgba(30,215,96,0.25); }
.streaming-card.youtube-music:hover { box-shadow: 0 8px 30px rgba(255,0,0,0.25); }



.streaming-bg-logo {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 55%;
  height: 90%;
  min-width: 140px;
  min-height: 140px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  filter: none;
}
.streaming-bg-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.streaming-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 80px;
  padding: 18px 18px 12px 18px;
}


.streaming-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px #000, 0 0 2px #000;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.streaming-card.spotify .streaming-name { color: #1ed760; }
.streaming-card.youtube-music .streaming-name { color: #ff0000; }

.streaming-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  border-color: var(--neon-gold);
  box-shadow: 0 4px 20px rgba(255,215,0,0.15);
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.product-img-placeholder {
  height: 100px;
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,0,204,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.product-body { padding: 10px; }

.product-title {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.product-actions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.product-btn {
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
  transition: all 0.15s;
}

.product-btn.video {
  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);
  color: #ff4444;
}

.product-btn.store {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--neon-gold);
}

.product-btn:hover { transform: scale(1.05); }

/* ── Footer ── */
.hav1-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ── Modals ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-sheet {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
}

.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.modal-content { padding: 0 20px 30px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-main);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* News modal */
.news-modal-header {
  position: relative;
}

.news-modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-modal-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 14px;
}

.news-modal-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.news-rich-body p { margin: 0 0 1em; }
.news-rich-body p:last-child { margin-bottom: 0; }
.news-link-chip {
  display: inline;
  background: rgba(0, 245, 255, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
}
.news-link-chip a { color: var(--neon-cyan); text-decoration: none; }

.news-modal-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.news-modal-mentions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.news-mention-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.06);
  color: var(--neon-cyan);
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.15s;
}
.news-mention-chip:hover { background: rgba(0, 245, 255, 0.14); }

.news-modal-source {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.news-modal-source a { color: var(--neon-cyan); text-decoration: none; }
.news-modal-source a:hover { text-decoration: underline; }

.news-modal-foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.news-images-carousel {
  position: relative;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}

.news-carousel-track-inner { position: relative; min-height: 160px; }

.news-carousel-slide {
  display: none;
  width: 100%;
}
.news-carousel-slide.active { display: block; }
.news-carousel-slide img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.nc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.nc-prev { left: 8px; }
.nc-next { right: 8px; }

.news-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}
.nc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
}
.nc-dot.active { background: var(--neon-cyan); }

/* Playlist modal */
.playlist-service-title {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 16px;
}

.playlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pl-card {
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.pl-card.spotify { background: rgba(30,215,96,0.1); border: 1px solid rgba(30,215,96,0.3); }
.pl-card.youtube-music { background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); }

.pl-card:hover { transform: scale(1.03); }

.pl-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 8px;
}

.pl-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Store modal */
.store-group { margin-bottom: 20px; }

.store-group-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.store-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.15s;
  border: 1px solid transparent;
}

.store-card:hover { background: var(--bg-glass); border-color: var(--border); }

.store-icon { font-size: 24px; }
.store-info { flex: 1; }
.store-name { font-size: 0.82rem; font-weight: 600; }
.store-hint { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ── Section Titles ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 4px;
  height: 14px;
  background: linear-gradient(var(--neon-cyan), var(--neon-pink));
  border-radius: 2px;
}

/* ── Glitch Effect for title ── */
@keyframes glitch {
  0%, 90%, 100% { text-shadow: none; transform: none; }
  92% { transform: translateX(2px); text-shadow: -2px 0 var(--neon-pink); }
  94% { transform: translateX(-2px); text-shadow: 2px 0 var(--neon-cyan); }
  96% { transform: translateX(1px); text-shadow: -1px 0 var(--neon-purple); }
}

.hav1-name { animation: glitch 5s infinite; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .streaming-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .social-row { gap: 8px; }
  .social-btn { padding: 8px 12px; font-size: 0.66rem; }
}

/* ── Scan lines overlay ── */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Loading skeleton ── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Neon pulse */
@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.neon-pulse { animation: neonPulse 2s ease-in-out infinite; }

/* Visualizer bars (music) */
.visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-left: auto;
}

.viz-bar {
  width: 3px;
  background: var(--neon-cyan);
  border-radius: 1px;
  animation: vizAnim 0.8s ease-in-out infinite;
}

.viz-bar:nth-child(1) { animation-delay: 0s; }
.viz-bar:nth-child(2) { animation-delay: 0.1s; }
.viz-bar:nth-child(3) { animation-delay: 0.2s; }
.viz-bar:nth-child(4) { animation-delay: 0.15s; }
.viz-bar:nth-child(5) { animation-delay: 0.05s; }

@keyframes vizAnim {
  0%, 100% { height: 4px; }
  50% { height: 20px; }
}

.visualizer.paused .viz-bar { animation-play-state: paused; }
