/* ============================================================
   VOTEVIBE THEME — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --bg-deep:        #06060f;
  --bg-base:        #0a0a18;
  --bg-card:        #0f0f20;
  --bg-card-hover:  #141428;
  --bg-input:       rgba(255,255,255,0.05);
  --border:         rgba(255,255,255,0.08);
  --border-hover:   rgba(255,255,255,0.15);

  --accent-purple:  #7c3aed;
  --accent-pink:    #ec4899;
  --accent-cyan:    #22d3ee;
  --accent-green:   #10b981;

  --grad-primary:   linear-gradient(135deg, #7c3aed, #ec4899);
  --grad-hero:      linear-gradient(135deg, #6d28d9 0%, #9333ea 40%, #ec4899 100%);
  --grad-card:      linear-gradient(180deg, rgba(124,58,237,0.12) 0%, rgba(236,72,153,0.06) 100%);

  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted:     rgba(255,255,255,0.38);

  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'Outfit', sans-serif;

  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-full:    9999px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:    0 0 30px rgba(124,58,237,0.2);

  --container:      1200px;
  --nav-h:          68px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(236,72,153,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 60% 90%, rgba(34,211,238,0.08) 0%, transparent 60%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout Helpers ─────────────────────────────────────── */
.vv-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .vv-container { padding: 0 32px; }
}

.vv-section { padding: 60px 0; }
.vv-section--sm { padding: 40px 0; }

/* ── Noise Texture Overlay ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* ── Navigation ─────────────────────────────────────────── */
.vv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.vv-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vv-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.vv-nav__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.vv-nav__logo span { color: rgba(255,255,255,0.55); font-weight: 400; }

.vv-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.vv-nav__menu a {
  display: block;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}

.vv-nav__menu a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.vv-nav__menu .current-menu-item a,
.vv-nav__menu .current_page_item a {
  color: var(--text-primary);
  background: rgba(124,58,237,0.2);
  box-shadow: inset 0 0 0 1px rgba(124,58,237,0.35);
}

/* Mobile hamburger */
.vv-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
}

.vv-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 640px) {
  .vv-nav__toggle { display: flex; }
  .vv-nav__menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px 16px 20px;
    background: rgba(10,10,24,0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    gap: 2px;
  }
  .vv-nav__menu.is-open { display: flex; }
  .vv-nav__menu a { padding: 10px 14px; font-size: 15px; }
}

/* ── Page Hero Banner ───────────────────────────────────── */
.vv-hero {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.vv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.vv-hero__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.vv-hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.vv-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.vv-badge--live { color: #6ee7b7; }
.vv-badge--live::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
}

/* ── Main Content Area ──────────────────────────────────── */
.vv-main {
  position: relative;
  z-index: 1;
  padding: 28px 0 80px;
}

.vv-page-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .vv-page-wrap { padding: 0 32px; }
}

/* ── Glass Card ─────────────────────────────────────────── */
.vv-glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ── Buttons ────────────────────────────────────────────── */
.vv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.vv-btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124,58,237,0.25);
}

.vv-btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.35);
}

.vv-btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.vv-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.vv-btn--voted {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 6px 20px rgba(16,185,129,0.22);
}

.vv-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Forms / Inputs ─────────────────────────────────────── */
.vv-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.vv-input::placeholder { color: var(--text-muted); }
.vv-input:focus {
  border-color: rgba(124,58,237,0.5);
  background: rgba(255,255,255,0.08);
}

/* ── Footer ─────────────────────────────────────────────── */
.vv-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.vv-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.vv-footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════════════════════════ */
.vv-landing-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.vv-landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  font-size: 12px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vv-landing-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.vv-landing-hero__title .grad {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vv-landing-hero__sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.vv-landing-hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vv-landing-hero__cta .vv-btn {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
}

/* Stats bar */
.vv-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin: 48px 0;
  overflow: hidden;
}

.vv-stats__item {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.vv-stats__item:last-child { border-right: none; }

.vv-stats__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.vv-stats__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Feature cards */
.vv-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 48px 0;
}

.vv-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.vv-feature-card:hover {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.06);
  transform: translateY(-3px);
}

.vv-feature-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.15));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.vv-feature-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vv-feature-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA section */
.vv-cta-section {
  text-align: center;
  padding: 64px 32px;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.vv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.vv-cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
}

.vv-cta-section__sub {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
  position: relative;
}

.vv-cta-section .vv-btn {
  position: relative;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.vv-cta-section .vv-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   WORDPRESS PLUGIN OVERRIDES
   Styles for top-100-voting plugin output
══════════════════════════════════════════════════════════ */

/* Plugin wrapper containers */
.top100-chart-wrapper,
.top100-voting-app,
[class*="top100-"] {
  font-family: var(--font-body) !important;
  color: var(--text-primary) !important;
}

/* ── Chart header area ── */
.top100-header,
.top100-chart-header {
  background: var(--grad-hero) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  border: none !important;
}

.top100-chart-title,
.top100-title {
  font-family: var(--font-display) !important;
  font-size: clamp(22px, 4vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  margin: 0 0 4px !important;
}

.top100-chart-subtitle {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
}

/* ── Search / filter area ── */
.top100-filters,
.top100-search-wrap {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-xl) !important;
  padding: 16px !important;
  margin-bottom: 16px !important;
}

.top100-search input,
.top100-search-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
}

.top100-search input:focus,
.top100-search-input:focus {
  border-color: rgba(124,58,237,0.5) !important;
  outline: none !important;
}

/* Filter pills / decade/genre buttons */
.top100-filter-btn,
.top100-decade-btn,
.top100-genre-btn,
.top100-filters button {
  padding: 6px 14px !important;
  border-radius: var(--radius-full) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: var(--font-body) !important;
}

.top100-filter-btn:hover,
.top100-decade-btn:hover,
.top100-genre-btn:hover {
  background: rgba(255,255,255,0.1) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-hover) !important;
}

.top100-filter-btn.active,
.top100-decade-btn.active,
.top100-genre-btn.active,
.top100-filter-btn--active {
  background: var(--grad-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(124,58,237,0.3) !important;
}

/* View switcher */
.top100-view-switcher,
.top100-view-toggle {
  display: flex !important;
  gap: 4px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  padding: 4px !important;
}

.top100-view-btn,
.top100-view-toggle button {
  width: 34px !important;
  height: 34px !important;
  border-radius: var(--radius-sm) !important;
  background: transparent !important;
  border: none !important;
  color: var(--text-muted) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.top100-view-btn.active,
.top100-view-btn--active,
.top100-view-toggle button.active {
  background: var(--grad-primary) !important;
  color: #fff !important;
}

/* ── LIST VIEW ── */
.top100-track-list,
.top100-tracks {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.top100-track-item,
.top100-track {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 14px 16px !important;
  transition: background 0.2s, border-color 0.2s !important;
  cursor: pointer !important;
}

.top100-track-item:hover,
.top100-track:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: var(--border-hover) !important;
}

/* Rank number */
.top100-rank,
.top100-track-rank {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  min-width: 36px !important;
  text-align: center !important;
  color: var(--text-secondary) !important;
  flex-shrink: 0 !important;
}

/* Album art in list */
.top100-track-art,
.top100-artwork,
.top100-track-image {
  width: 56px !important;
  height: 56px !important;
  border-radius: var(--radius-md) !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  background: rgba(124,58,237,0.2) !important;
}

/* Track info */
.top100-track-info { flex: 1 !important; min-width: 0 !important; }

.top100-track-title {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 2px !important;
}

.top100-track-artist {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Genre & year badges */
.top100-genre-badge,
.top100-year-badge,
.top100-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 9px !important;
  border-radius: var(--radius-full) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
}

/* Media buttons (Spotify/YouTube) */
.top100-media-btn,
.top100-youtube-btn,
.top100-spotify-btn,
.top100-share-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: var(--radius-sm) !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
}

.top100-media-btn:hover,
.top100-youtube-btn:hover,
.top100-spotify-btn:hover {
  background: rgba(255,255,255,0.12) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-hover) !important;
}

/* VIBE / Vote button */
.top100-vote-btn,
.top100-vibe-btn,
button.top100-vote {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-md) !important;
  background: var(--grad-primary) !important;
  border: none !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 16px rgba(124,58,237,0.25) !important;
  white-space: nowrap !important;
}

.top100-vote-btn:hover,
.top100-vibe-btn:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 22px rgba(124,58,237,0.35) !important;
}

.top100-vote-btn.voted,
.top100-vote-btn--voted {
  background: linear-gradient(135deg, #065f46, #10b981) !important;
  box-shadow: 0 4px 16px rgba(16,185,129,0.2) !important;
}

.top100-vote-count,
.top100-vibe-count {
  background: rgba(0,0,0,0.25) !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
}

/* ── GRID VIEW ── */
.top100-grid-view,
.top100-tracks--grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}

@media (max-width: 640px) {
  .top100-grid-view,
  .top100-tracks--grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.top100-grid-view .top100-track-item,
.top100-tracks--grid .top100-track {
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden !important;
  border-radius: var(--radius-xl) !important;
  background: var(--bg-card) !important;
}

/* Grid album art */
.top100-grid-view .top100-track-art,
.top100-grid-view .top100-artwork,
.top100-grid-view .top100-track-image,
.top100-tracks--grid .top100-artwork {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  border-radius: 0 !important;
  position: relative !important;
}

/* Rank badge overlay on grid cards */
.top100-grid-rank,
.top100-rank-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background: var(--grad-primary) !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  padding: 4px 10px !important;
  border-radius: var(--radius-full) !important;
  z-index: 2 !important;
}

.top100-grid-genre {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: rgba(0,0,0,0.7) !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 4px 9px !important;
  border-radius: var(--radius-full) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 2 !important;
}

/* Grid play overlay */
.top100-grid-play {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--grad-primary) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 18px !important;
  opacity: 0 !important;
  transition: opacity 0.2s !important;
  cursor: pointer !important;
  z-index: 3 !important;
}

.top100-track-item:hover .top100-grid-play,
.top100-track:hover .top100-grid-play { opacity: 1 !important; }

/* Grid card body */
.top100-grid-body {
  padding: 14px 14px 16px !important;
}

.top100-grid-view .top100-track-title {
  font-size: 14px !important;
  margin-bottom: 2px !important;
}

.top100-grid-view .top100-track-artist {
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.top100-grid-view .top100-vote-btn,
.top100-grid-view .top100-vibe-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 10px !important;
  border-radius: var(--radius-md) !important;
}

/* Media buttons in grid - icon only */
.top100-grid-actions {
  display: flex !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
}

/* ── Modals ── */
.top100-modal-overlay,
.top100-modal-backdrop {
  background: rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(4px) !important;
}

.top100-modal,
.top100-modal-content {
  background: rgba(12,12,24,0.96) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius-xl) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(20px) !important;
  padding: 24px !important;
}

.top100-modal-title {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}

/* Share modal */
.top100-share-options {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

.top100-share-btn-option {
  padding: 10px !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.18s !important;
}

.top100-share-btn-option:hover {
  background: rgba(255,255,255,0.1) !important;
  color: var(--text-primary) !important;
}

/* ── Request Form (plugin) ── */
.top100-request-form,
.top100-submit-form {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
}

.top100-form-group {
  margin-bottom: 20px !important;
}

.top100-form-label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 6px !important;
  text-transform: none !important;
}

.top100-form-input,
.top100-request-form input,
.top100-request-form select,
.top100-request-form textarea,
.top100-submit-form input,
.top100-submit-form select {
  width: 100% !important;
  padding: 12px 16px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  -webkit-appearance: none !important;
}

.top100-request-form input:focus,
.top100-request-form select:focus,
.top100-submit-form input:focus {
  border-color: rgba(124,58,237,0.5) !important;
  background: rgba(255,255,255,0.08) !important;
}

.top100-request-form input::placeholder,
.top100-submit-form input::placeholder {
  color: var(--text-muted) !important;
}

.top100-request-form select option,
.top100-submit-form select option {
  background: #0f0f20 !important;
  color: var(--text-primary) !important;
}

.top100-submit-btn,
.top100-request-form button[type="submit"],
.top100-submit-form button[type="submit"] {
  background: var(--grad-primary) !important;
  border: none !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 13px 28px !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  box-shadow: 0 6px 20px rgba(124,58,237,0.25) !important;
}

.top100-submit-btn:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-1px) !important;
}

/* Form sections */
.top100-form-section-title {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-left: 3px solid #7c3aed !important;
  padding-left: 12px !important;
  margin-bottom: 20px !important;
  color: var(--text-primary) !important;
}

/* Pending / live badge in plugin */
.top100-pending-badge,
.top100-live-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 12px !important;
  border-radius: var(--radius-full) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.top100-pending-badge {
  background: rgba(251,191,36,0.1) !important;
  border: 1px solid rgba(251,191,36,0.25) !important;
  color: #fde68a !important;
}

.top100-live-badge {
  background: rgba(16,185,129,0.1) !important;
  border: 1px solid rgba(16,185,129,0.25) !important;
  color: #6ee7b7 !important;
}

/* Reset button */
.top100-reset-btn {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-secondary) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.top100-reset-btn:hover {
  background: rgba(255,255,255,0.1) !important;
  color: var(--text-primary) !important;
}

/* ══════════════════════════════════════════════════════════
   WP DEFAULT OVERRIDES
══════════════════════════════════════════════════════════ */

/* Kill WP default body/content bg */
.wp-site-blocks,
.entry-content,
.site-content,
.page-content {
  background: transparent !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
}

/* Remove WP default margins */
.wp-block-post-content,
.entry-content > *:first-child { margin-top: 0 !important; }

/* Admin bar offset */
body.admin-bar .vv-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .vv-nav { top: 46px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .vv-stats { flex-direction: column; }
  .vv-stats__item { border-right: none; border-bottom: 1px solid var(--border); }
  .vv-stats__item:last-child { border-bottom: none; }

  .vv-features { grid-template-columns: 1fr; }

  .top100-track-item,
  .top100-track {
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .top100-vote-btn,
  .top100-vibe-btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(124,58,237,0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.65); }

/* ══════════════════════════════════════════════════════════
   REAL PLUGIN HTML — Exact class overrides
   Based on actual plugin output HTML
══════════════════════════════════════════════════════════ */

/* ── Hero / Header section ──────────────────────────────── */
.vv-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.vv-hero.gradient-header {
    background: var(--grad-hero);
    padding: 28px 28px 24px;
}

.vv-hero-inner {
    position: relative;
    z-index: 2;
}

.vv-hero-title {
    font-family: var(--font-display) !important;
    font-size: clamp(22px, 4vw, 34px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin: 0 0 6px !important;
}

.vv-hero-subtitle {
    font-size: 14px !important;
    color: rgba(255,255,255,0.72) !important;
    margin: 0 0 20px !important;
    font-family: var(--font-body) !important;
}

/* Glow blob */
.vv-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255,255,255,0.12), transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* ── Header Badges ──────────────────────────────────────── */
.vv-header-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.vv-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 13px !important;
    border-radius: var(--radius-full) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    font-family: var(--font-body) !important;
}

.vv-badge-pending {
    background: rgba(0,0,0,0.22) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: rgba(255,255,255,0.9) !important;
}

.vv-badge-pending strong {
    font-weight: 800 !important;
    color: #fde68a !important;
}

.vv-badge-live {
    background: rgba(0,0,0,0.22) !important;
    border: 1px solid rgba(16,185,129,0.3) !important;
    color: #6ee7b7 !important;
}

.vv-muted {
    color: rgba(255,255,255,0.5) !important;
    font-weight: 400 !important;
}

/* Live dot pulse */
.vv-dot {
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25) !important;
    animation: vv-pulse 1.4s ease-in-out infinite !important;
}

@keyframes vv-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
    50%       { box-shadow: 0 0 0 5px rgba(16,185,129,0.08); }
}

/* ── Share Modal (plugin output) ────────────────────────── */
.vv-share-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9000 !important;
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s !important;
}

.vv-share-modal-overlay[aria-hidden="false"] {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vv-share-modal {
    background: rgba(10,10,24,0.97) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: var(--radius-xl) !important;
    width: min(480px, calc(100vw - 32px)) !important;
    padding: 24px !important;
    box-shadow: 0 24px 64px rgba(0,0,0,0.55) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
}

.vv-share-head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

.vv-share-title {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin: 0 0 2px !important;
}

.vv-share-subtitle {
    font-size: 13px !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

.vv-share-close {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 7px 12px !important;
    border-radius: var(--radius-md) !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-secondary) !important;
    font-size: 13px !important;
    cursor: pointer !important;
    transition: all 0.18s !important;
    font-family: var(--font-body) !important;
}

.vv-share-close:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--text-primary) !important;
}

.vv-share-close-text { font-weight: 500 !important; }

.vv-share-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

.vv-share-tile {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    border-radius: var(--radius-md) !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-secondary) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.18s !important;
    cursor: pointer !important;
}

.vv-share-tile:hover {
    background: rgba(124,58,237,0.12) !important;
    border-color: rgba(124,58,237,0.35) !important;
    color: var(--text-primary) !important;
}

.vv-share-ico {
    width: 32px !important;
    height: 32px !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(255,255,255,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: var(--text-primary) !important;
}

.vv-share-label { font-weight: 500 !important; }

.vv-share-copy { margin-top: 4px !important; }

.vv-share-copy-label {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.vv-share-copy-row {
    display: flex !important;
    gap: 8px !important;
}

.vv-share-input {
    flex: 1 !important;
    padding: 10px 14px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-secondary) !important;
    font-size: 13px !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    min-width: 0 !important;
}

.vv-share-copy-btn {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-md) !important;
    background: var(--grad-primary) !important;
    border: none !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: filter 0.18s !important;
    font-family: var(--font-body) !important;
}

.vv-share-copy-btn:hover { filter: brightness(1.08) !important; }

/* ══════════════════════════════════════════════════════════
   HEADER STYLES — Compact / Minimal / Hidden
   Applied via body class + customizer CSS in <head>
══════════════════════════════════════════════════════════ */

/* Compact style base — override gradient with glass card */
.vv-header-compact .vv-hero,
.vv-header-compact .gradient-header {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 22px;
}

.vv-header-compact .vv-hero-glow { display: none; }
.vv-header-compact .vv-hero-title { font-size: clamp(16px, 2.5vw, 22px) !important; }

/* Minimal — no background */
.vv-header-minimal .vv-hero,
.vv-header-minimal .gradient-header {
    background: transparent;
    border: none;
    padding: 0 0 16px;
    box-shadow: none;
}

.vv-header-minimal .vv-hero-glow { display: none; }

.vv-header-minimal .vv-hero-title {
    background: var(--grad-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.vv-header-minimal .vv-hero-subtitle {
    color: var(--text-secondary) !important;
}

/* Hidden — remove completely */
.vv-header-hidden .vv-hero,
.vv-header-hidden .gradient-header { display: none !important; }


/* ── Non-sticky nav variant ─────────────────────────────── */
.vv-nav:not(.vv-nav--sticky) {
    position: relative;
    top: auto;
}

/* ══════════════════════════════════════════════════════════
   REQUEST FORM — Mobile App Style Inputs
══════════════════════════════════════════════════════════ */

/* Form wrapper */
.top100-submit-form,
.top100-request-form,
[class*="vv-submit"],
[class*="vv-request-form"] {
    font-family: var(--font-body) !important;
}

/* Section titles (Music Information / Contact Information) */
.top100-submit-form h4,
.top100-submit-form h3,
.top100-request-form h4,
.top100-request-form h3,
[class*="vv-form"] h4,
[class*="vv-form"] h3 {
    font-family: var(--font-display) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 20px !important;
}

/* The pink left border accent */
.top100-submit-form h4::before,
.top100-submit-form h3::before,
.top100-request-form h4::before,
.top100-request-form h3::before {
    content: '' !important;
    display: block !important;
    width: 3px !important;
    height: 18px !important;
    background: var(--grad-primary) !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

/* Field labels */
.top100-submit-form label,
.top100-request-form label,
[class*="vv-form"] label,
[class*="vv-field"] label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.01em !important;
    font-family: var(--font-body) !important;
}

/* ── The big app-style inputs ─────────────────────────── */
.top100-submit-form input[type="text"],
.top100-submit-form input[type="email"],
.top100-submit-form input[type="url"],
.top100-submit-form input[type="number"],
.top100-submit-form input[type="search"],
.top100-submit-form textarea,
.top100-request-form input[type="text"],
.top100-request-form input[type="email"],
.top100-request-form input[type="url"],
.top100-request-form input[type="number"],
.top100-request-form input[type="search"],
.top100-request-form textarea,
[class*="vv-input"],
[class*="vv-field"] input,
[class*="vv-field"] textarea {
    width: 100% !important;
    height: 56px !important;
    padding: 0 20px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2) !important;
    caret-color: #D946EF !important;
}

/* Textarea taller */
.top100-submit-form textarea,
.top100-request-form textarea,
[class*="vv-field"] textarea {
    height: auto !important;
    min-height: 120px !important;
    padding: 16px 20px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

/* Placeholder */
.top100-submit-form input::placeholder,
.top100-request-form input::placeholder,
[class*="vv-field"] input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Focus state — glow ring */
.top100-submit-form input:focus,
.top100-submit-form textarea:focus,
.top100-request-form input:focus,
.top100-request-form textarea:focus,
[class*="vv-field"] input:focus,
[class*="vv-field"] textarea:focus {
    border-color: rgba(217, 70, 239, 0.6) !important;
    background: rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        inset 0 1px 3px rgba(0,0,0,0.2),
        0 0 0 3px rgba(217, 70, 239, 0.12) !important;
}

/* Select dropdown */
.top100-submit-form select,
.top100-request-form select,
[class*="vv-field"] select {
    width: 100% !important;
    height: 56px !important;
    padding: 0 44px 0 20px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    color: #fff !important;
    font-size: 15px !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    cursor: pointer !important;
    transition: border-color 0.2s !important;
}

.top100-submit-form select option,
.top100-request-form select option {
    background: #12051e !important;
    color: #fff !important;
}

/* Genre search input specifically */
input[placeholder*="search genres"],
input[placeholder*="Search genres"],
input[placeholder*="Type to search"] {
    height: 56px !important;
    padding: 0 20px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
    outline: none !important;
    -webkit-appearance: none !important;
}

input[placeholder*="search genres"]:focus,
input[placeholder*="Search genres"]:focus,
input[placeholder*="Type to search"]:focus {
    border-color: rgba(217, 70, 239, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.12) !important;
}

/* Helper text below genre field */
.top100-submit-form p,
.top100-request-form p {
    font-size: 12px !important;
    color: rgba(255,255,255,0.38) !important;
    margin: 6px 0 0 !important;
    line-height: 1.5 !important;
}

/* Error message */
.top100-field-error,
[class*="vv-error"] {
    font-size: 12px !important;
    color: #f87171 !important;
    margin-top: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

/* Field spacing */
.top100-submit-form .top100-field,
.top100-request-form .top100-field,
[class*="vv-field"] {
    margin-bottom: 20px !important;
}

/* Two-column grid for artist/title */
@media (min-width: 600px) {
    .top100-submit-form .top100-grid-2,
    .top100-request-form .top100-grid-2,
    [class*="top100-form-row"],
    [class*="vv-form-row"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
}

/* Submit button */
.top100-submit-form button[type="submit"],
.top100-request-form button[type="submit"],
[class*="vv-submit-btn"],
button[class*="vv-submit"] {
    width: 100% !important;
    height: 56px !important;
    background: linear-gradient(135deg, #D946EF, #8B5CF6) !important;
    border: none !important;
    border-radius: 16px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 8px 28px rgba(217, 70, 239, 0.3) !important;
    letter-spacing: 0.01em !important;
    margin-top: 8px !important;
}

.top100-submit-form button[type="submit"]:hover,
.top100-request-form button[type="submit"]:hover {
    filter: brightness(1.08) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(217, 70, 239, 0.4) !important;
}

.top100-submit-form button[type="submit"]:active,
.top100-request-form button[type="submit"]:active {
    transform: translateY(0) !important;
}

/* Submission note below button */
.top100-submit-note,
[class*="vv-submit-note"] {
    text-align: center !important;
    font-size: 12px !important;
    color: rgba(255,255,255,0.38) !important;
    margin-top: 12px !important;
    line-height: 1.5 !important;
}

/* Form card container */
.top100-form-card,
[class*="vv-form-card"],
.top100-submit-form > div,
.top100-request-form > div {
    background: rgba(20, 8, 35, 0.65) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    margin-bottom: 16px !important;
}

@media (max-width: 640px) {
    .top100-submit-form input[type="text"],
    .top100-submit-form input[type="email"],
    .top100-submit-form input[type="url"],
    .top100-submit-form input[type="number"],
    .top100-request-form input[type="text"],
    .top100-request-form input[type="email"],
    .top100-request-form input[type="url"],
    .top100-request-form input[type="number"],
    .top100-submit-form select,
    .top100-request-form select,
    input[placeholder*="search genres"],
    input[placeholder*="Type to search"] {
        height: 52px !important;
        font-size: 16px !important; /* prevent iOS zoom */
        border-radius: 14px !important;
    }

    .top100-submit-form button[type="submit"],
    .top100-request-form button[type="submit"] {
        height: 52px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
    }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PAGE — App-Style Inputs (broad targeting)
══════════════════════════════════════════════════════════ */

/* ── All inputs on the request page ────────────────────── */
body.page-request input[type="text"],
body.page-request input[type="email"],
body.page-request input[type="url"],
body.page-request input[type="number"],
body.page-request input[type="search"],
body.page-request input:not([type]),
body.page-request select,
body.page-request textarea {
    width: 100% !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 20px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-family: "Plus Jakarta Sans", "Outfit", ui-sans-serif, system-ui, sans-serif !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    display: block !important;
    box-sizing: border-box !important;
    caret-color: #D946EF !important;
    line-height: normal !important;
}

body.page-request textarea {
    height: auto !important;
    min-height: 110px !important;
    padding: 16px 20px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

/* Placeholder text */
body.page-request input::placeholder,
body.page-request textarea::placeholder {
    color: rgba(255, 255, 255, 0.28) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Focus — glowing pink ring */
body.page-request input:focus,
body.page-request select:focus,
body.page-request textarea:focus {
    border-color: rgba(217, 70, 239, 0.55) !important;
    background: rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.13) !important;
    outline: none !important;
}

/* Select arrow */
body.page-request select {
    padding: 0 44px 0 20px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    cursor: pointer !important;
}

body.page-request select option {
    background: #12051e !important;
    color: #fff !important;
}

/* ── Labels ─────────────────────────────────────────────── */
body.page-request label,
body.page-request .vv-label,
body.page-request [class*="field-label"],
body.page-request [class*="form-label"] {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 9px !important;
    letter-spacing: 0.015em !important;
    text-transform: none !important;
}

/* ── Field spacing ──────────────────────────────────────── */
body.page-request [class*="field"],
body.page-request [class*="form-group"],
body.page-request [class*="vv-field"],
body.page-request .top100-field {
    margin-bottom: 18px !important;
}

/* ── Helper / hint text ─────────────────────────────────── */
body.page-request [class*="hint"],
body.page-request [class*="help"],
body.page-request [class*="note"],
body.page-request small {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.32) !important;
    margin-top: 6px !important;
    line-height: 1.5 !important;
    display: block !important;
}

/* ── Submit button ──────────────────────────────────────── */
body.page-request button[type="submit"],
body.page-request input[type="submit"],
body.page-request [class*="submit-btn"],
body.page-request [class*="vv-btn-submit"] {
    width: 100% !important;
    height: 58px !important;
    background: linear-gradient(135deg, #D946EF 0%, #8B5CF6 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: "Plus Jakarta Sans", "Outfit", sans-serif !important;
    cursor: pointer !important;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s !important;
    box-shadow: 0 8px 28px rgba(217, 70, 239, 0.35) !important;
    letter-spacing: 0.02em !important;
    margin-top: 10px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

body.page-request button[type="submit"]:hover,
body.page-request input[type="submit"]:hover {
    filter: brightness(1.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(217, 70, 239, 0.45) !important;
}

body.page-request button[type="submit"]:active,
body.page-request input[type="submit"]:active {
    transform: translateY(0) !important;
    filter: brightness(0.98) !important;
}

/* ── iOS: prevent auto-zoom on focus (font-size >= 16px) ── */
@media (max-width: 768px) {
    body.page-request input,
    body.page-request select,
    body.page-request textarea {
        font-size: 16px !important;
    }
}

