/* Austin Aux - Modern Web Stylesheet */

:root {
  /* Backgrounds */
  --bg-navy: #111c30;
  --bg-navy-glow: #192b45;
  --bg-canvas: radial-gradient(circle at center, var(--bg-navy-glow) 0%, var(--bg-navy) 100%);

  /* Typography */
  --text-white: #ffffff;
  --text-tagline: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Accents / Gradient */
  --accent-cyan: #38a3a5;
  --accent-mint: #57cc99;
  --gradient-aux: linear-gradient(135deg, #38a3a5 0%, #57cc99 100%);
  --gradient-aux-reverse: linear-gradient(135deg, #57cc99 0%, #38a3a5 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(25, 43, 69, 0.6) 0%, rgba(17, 28, 48, 0.8) 100%);

  /* Card Surfaces & Borders */
  --surface-card: rgba(25, 43, 69, 0.45);
  --surface-card-hover: rgba(25, 43, 69, 0.75);
  --surface-glass: rgba(17, 28, 48, 0.75);
  --border-subtle: rgba(87, 204, 153, 0.15);
  --border-hover: rgba(87, 204, 153, 0.4);
  --border-active: #57cc99;

  /* Spacing & Sizing */
  --max-width: 1200px;
  --header-height: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Background Texture Overlay */
  --bg-texture-image: url('../assets/bg-circuit-texture-wide.jpg');
  --bg-texture-opacity: 0.08;
}

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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-white);
  background-color: var(--bg-navy);
  background-image: var(--bg-canvas);
  background-attachment: fixed;
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  color: var(--text-tagline);
  background: transparent;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Integrated Circuit Background Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: var(--bg-texture-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: var(--bg-texture-opacity);
  mix-blend-mode: screen;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-tagline);
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.15rem;
  color: var(--text-tagline);
  opacity: 0.9;
}

a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-cyan);
}

/* Gradient Text Utility */
.gradient-text {
  background: var(--gradient-aux);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 3rem 0;
  position: relative;
}

.section-alt {
  background: rgba(11, 19, 34, 0.92);
  border-top: 1px solid rgba(87, 204, 153, 0.14);
  border-bottom: 1px solid rgba(87, 204, 153, 0.14);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.35);
}

.section-alt .card {
  background: rgba(22, 37, 60, 0.65);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.section-header .subtitle {
  color: var(--accent-mint);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

/* Client-Side PJAX Transition & Progress */
.pjax-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-aux);
  box-shadow: 0 0 10px var(--accent-mint);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: width 0.25s ease-out, opacity 0.2s ease-out;
}

main {
  flex: 1;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

main.pjax-loading {
  opacity: 0;
  transform: translateY(4px);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-brand-text span {
  color: var(--accent-mint);
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  max-width: 520px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-tagline);
  position: relative;
  padding: 0.4rem 0.6rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--accent-mint);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--gradient-aux);
  border-radius: var(--radius-full);
}

/* Navigation Dropdown Menu (Plugins under Tools) */
.nav-item-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-chevron {
  margin-left: 5px;
  transition: transform var(--transition-fast), stroke var(--transition-fast);
  display: inline-block;
  vertical-align: middle;
}

.nav-item-has-dropdown:hover .nav-chevron,
.nav-item-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
  stroke: var(--accent-mint);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: rgba(13, 22, 38, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(87, 204, 153, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 163, 165, 0.25);
  padding: 0.65rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1050;
}

/* Invisible hover bridge between nav-link and dropdown */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Force-collapse dropdown and reset chevron when retracted via click/interaction */
@media (min-width: 881px) {
  .nav-item-has-dropdown.menu-collapsed .nav-dropdown {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(10px) !important;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease !important;
  }

  .nav-item-has-dropdown.menu-collapsed .nav-chevron {
    transform: rotate(0deg) !important;
    stroke: currentColor !important;
  }
}

.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: rgba(56, 163, 165, 0.15);
  border-color: rgba(87, 204, 153, 0.25);
  transform: translateX(3px);
}

.nav-dropdown-item.active {
  background: rgba(87, 204, 153, 0.18);
  border-color: var(--accent-mint);
}

.dropdown-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dropdown-item-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.dropdown-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(87, 204, 153, 0.2);
  color: var(--accent-mint);
  border: 1px solid rgba(87, 204, 153, 0.4);
}

.dropdown-item-desc {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.18rem;
  line-height: 1.35;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.35rem 0.4rem;
}

.nav-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-mint);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-all:hover {
  background: rgba(87, 204, 153, 0.12);
  color: var(--text-white);
}

.dropdown-arrow {
  transition: transform 0.18s ease;
}

.nav-dropdown-all:hover .dropdown-arrow {
  transform: translateX(3px);
}

/* Header Right Group (Player + Mobile Actions) */
.header-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  margin-left: 0.75rem;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-aux);
  color: #0b1320;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(56, 163, 165, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-aux-reverse);
  color: #0b1320;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(87, 204, 153, 0.45);
}

.btn-secondary {
  background: rgba(25, 43, 69, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: rgba(25, 43, 69, 0.95);
  border-color: var(--accent-mint);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-mint);
  color: var(--accent-mint);
}

.btn-outline:hover {
  background: rgba(87, 204, 153, 0.15);
  color: var(--text-white);
  border-color: var(--accent-cyan);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  padding: 3.5rem 0 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56, 163, 165, 0.15);
  border: 1px solid rgba(56, 163, 165, 0.35);
  color: var(--accent-mint);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-mint);
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-tagline);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-card-preview {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  backdrop-filter: blur(10px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.status-dot-active {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-mint);
}

/* Spotify Embed Player Styling */
.spotify-embed-container {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(17, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.spotify-embed-container:hover {
  border-color: rgba(87, 204, 153, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   Sticky Header Mini-Player (Option 3)
   ========================================================================== */
.header-player-wrap {
  width: 340px;
  flex-shrink: 0;
}

.header-player-card {
  height: 80px;
  border-radius: 12px;
  background: rgba(17, 28, 48, 0.85);
  border: 1px solid rgba(87, 204, 153, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.header-player-card:hover {
  border-color: var(--accent-mint);
  box-shadow: 0 6px 22px rgba(87, 204, 153, 0.25);
}

.header-player-card.player-highlight-pulse {
  border-color: var(--accent-mint);
  box-shadow: 0 0 25px rgba(87, 204, 153, 0.6);
  transform: scale(1.02);
}

.header-player-card.is-playing {
  border-color: var(--accent-mint);
  box-shadow: 0 0 22px rgba(87, 204, 153, 0.38);
}

.header-player-card iframe {
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 10px;
  display: block;
}

.header-spotify-embed-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-player-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  background: rgba(17, 28, 48, 0.9);
}

.header-player-loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(87, 204, 153, 0.25);
  border-top-color: var(--accent-mint);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

@media (min-width: 881px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

.btn-playing {
  background: linear-gradient(135deg, #27797b 0%, #45a47a 100%) !important;
  box-shadow: 0 0 15px rgba(87, 204, 153, 0.4) !important;
}

/* Hero Album Showcase Box (for index.html Hero Visual) */
.hero-album-showcase {
  display: flex;
  gap: 1.5rem;
  background: rgba(17, 28, 48, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 0;
  align-items: center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-album-showcase:hover {
  transform: none; /* Keep showcase aligned within preview card */
  border-color: rgba(87, 204, 153, 0.25);
}

.hero-album-showcase.is-card-playing {
  border-color: var(--accent-mint);
  box-shadow: 0 0 24px rgba(87, 204, 153, 0.35);
}

.hero-album-cover-wrap.release-cover,
.hero-album-cover-wrap {
  position: relative;
  width: 195px;
  height: 195px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-album-cover-wrap:hover {
  border-color: rgba(87, 204, 153, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(87, 204, 153, 0.25);
  transform: translateY(-2px);
}

.hero-album-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Ensure full featured album artwork is showcased without any cropping on hover */
.hero-album-showcase:hover .hero-album-cover,
.hero-album-cover-wrap:hover .hero-album-cover,
.hero-card-preview:hover .hero-album-cover,
.hero-album-showcase:hover .release-cover img {
  transform: none !important;
}

.hero-album-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hero-album-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.hero-album-desc {
  font-size: 0.85rem;
  color: var(--text-tagline);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.hero-player-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

/* Cards & Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-4 .release-card {
  border-radius: var(--radius-md);
}

.grid-4 .release-content {
  padding: 1.15rem;
}

.grid-4 .release-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.grid-4 .release-content p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid-4 .stream-links {
  gap: 0.35rem;
  margin-top: auto;
}

.grid-4 .stream-pill {
  font-size: 0.72rem;
  padding: 0.28rem 0.55rem;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-aux);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56, 163, 165, 0.15);
  border: 1px solid rgba(56, 163, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Badges & Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-tagline);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-free {
  background: rgba(87, 204, 153, 0.2);
  color: var(--accent-mint);
  border: 1px solid rgba(87, 204, 153, 0.35);
}

.badge-vst {
  background: rgba(56, 163, 165, 0.2);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 163, 165, 0.35);
}

.badge-version {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Filter Controls (for tools.html) */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(25, 43, 69, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-tagline);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(25, 43, 69, 0.9);
  color: var(--text-white);
  border-color: var(--accent-mint);
}

.filter-btn.active {
  background: var(--gradient-aux);
  color: #0b1320;
  border-color: transparent;
  font-weight: 700;
}

/* Forms & Inputs (Contact & Newsletter) */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-tagline);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(17, 28, 48, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 3px rgba(87, 204, 153, 0.2);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-card,
.contact-form-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

select.form-control option {
  background-color: #111c30;
  color: var(--text-white);
}

.section-alt .card p,
.faq-card p {
  color: var(--text-tagline);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Music Release Showcase */
.release-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #192b45 0%, #111c30 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.release-card:hover .release-cover img {
  transform: scale(1.05);
}

.release-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 28, 48, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
}

.release-cover:hover .release-cover-overlay,
.release-card.is-card-playing .release-cover-overlay {
  opacity: 1;
}

.release-play-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #57cc99 0%, #38a3a5 100%);
  color: #0b1320;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55), 0 0 15px rgba(87, 204, 153, 0.25);
  transform: scale(0.88);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.release-play-badge svg {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  stroke: none;
  opacity: 1;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

/* Optical centering: A right-pointing triangle has its visual weight concentrated along its left base,
   so shifting it ~2px to the right achieves true optical centering within the circular badge */
.release-play-badge .play-icon-svg,
.release-play-badge svg:has(polygon) {
  transform: translateX(2px);
}

/* Pause icon is geometrically symmetric, keep exactly centered */
.release-play-badge .pause-icon-svg,
.release-play-badge svg:has(rect) {
  transform: none;
}

.release-cover:hover .release-play-badge {
  transform: scale(1.06);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.6), 0 0 28px rgba(87, 204, 153, 0.75);
}

.release-cover:active .release-play-badge {
  transform: scale(0.96);
}

.release-card.is-card-playing {
  border-color: var(--accent-mint);
  box-shadow: 0 0 24px rgba(87, 204, 153, 0.35);
}

.stream-pill-play {
  background: rgba(87, 204, 153, 0.14) !important;
  border-color: var(--accent-mint) !important;
  color: var(--accent-mint) !important;
  font-weight: 600 !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stream-pill-play:hover {
  background: var(--accent-mint) !important;
  color: var(--bg-navy) !important;
  border-color: transparent !important;
  box-shadow: 0 0 14px rgba(87, 204, 153, 0.4);
}

.stream-pill-play.is-playing {
  background: var(--accent-mint) !important;
  color: var(--bg-navy) !important;
  box-shadow: 0 0 14px rgba(87, 204, 153, 0.45);
}

.release-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.stream-pill {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-tagline);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stream-pill:hover {
  background: var(--accent-cyan);
  color: #0b1320;
  font-weight: 600;
  border-color: transparent;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: rgba(10, 17, 30, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 320px;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-mint);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-glass);
  border: 1px solid var(--accent-mint);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* About Page Profile Card & Avatar */
.about-profile-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-aux);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.about-avatar-frame {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 1.75rem auto;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient-aux);
  box-shadow: 0 0 35px rgba(56, 163, 165, 0.4), 0 12px 28px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #111c30;
}

.about-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.about-avatar-frame:hover .about-avatar-img {
  transform: scale(1.08);
}

/* Subtle feathered vignette overlay to marry the avatar with the dark aesthetic */
.about-avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 65%, rgba(17, 28, 48, 0.35) 100%);
  box-shadow: inset 0 0 15px rgba(17, 28, 48, 0.4);
}

/* Responsive Media Queries (Ordered Descending) */
@media (max-width: 1100px) {
  .header-player-wrap {
    width: 300px;
  }
  .nav-menu {
    max-width: 440px;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .plugin-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .site-header {
    height: 64px;
    padding: 0;
  }

  .site-header .container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: 100%;
  }

  /* Hide cumbersome desktop/dropdown header navigation on mobile */
  .nav-main {
    display: none !important;
  }

  .header-right-group {
    display: none !important;
  }

  .mobile-toggle {
    display: none !important;
  }

  .header-player-wrap {
    display: none !important;
  }

  /* ==========================================================================
     Mobile Bottom Navigation Bar (Tools, Music, About, Home)
     ========================================================================== */
  .mobile-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    background: rgba(11, 19, 32, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-top: 1px solid rgba(87, 204, 153, 0.28) !important;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 999999 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 100%;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    transition: transform 0.18s ease, stroke 0.18s ease;
  }

  .bottom-nav-item:active {
    transform: scale(0.92);
  }

  .bottom-nav-item.active {
    color: var(--accent-mint);
    font-weight: 600;
  }

  .bottom-nav-item.active svg {
    stroke: var(--accent-mint);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(87, 204, 153, 0.5));
  }

  .bottom-nav-item.active::after {
    content: '';
    position: absolute;
    top: 4px;
    width: 16px;
    height: 2px;
    background: var(--gradient-aux);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(87, 204, 153, 0.8);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.25rem 0;
  }

  .hero {
    padding: 2.5rem 0 2rem 0;
  }

  .plugin-hero {
    padding: 2rem 0 1.5rem;
  }

  .plugin-features-section {
    padding: 2.25rem 0;
  }
}

@media (max-width: 540px) {
  .hero-album-showcase {
    flex-direction: column;
    text-align: center;
  }
  .hero-album-cover-wrap.release-cover,
  .hero-album-cover-wrap {
    width: 175px;
    height: 175px;
  }
  .hero-album-meta,
  .hero-player-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   Social Media Landing Page (new.html)
   ========================================================================== */
/* Centered Brand Header for Social Landing (new.html) */
.social-landing-header {
  height: 64px;
  background: rgba(17, 28, 48, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.social-landing-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.social-header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  text-decoration: none;
}

.social-header-brand:hover {
  transform: scale(1.08);
}

.social-header-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(87, 204, 153, 0.45));
  transition: filter var(--transition-fast);
}

.social-header-brand:hover .social-header-logo {
  filter: drop-shadow(0 0 18px rgba(87, 204, 153, 0.75));
}

.social-landing {
  padding: 1.5rem 0 2.5rem;
  position: relative;
}

.social-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-profile-card {
  text-align: center;
  margin-bottom: 2.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-aux);
  box-shadow: 0 0 25px rgba(87, 204, 153, 0.45);
  margin-bottom: 1.1rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-avatar-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(87, 204, 153, 0.65);
}

.social-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.social-name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.social-name-row h1 {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.social-verified-icon {
  color: var(--accent-mint);
  display: inline-flex;
}

.social-bio {
  font-size: 0.95rem;
  color: var(--text-tagline);
  margin: 0 0 0.85rem 0;
  line-height: 1.45;
}

.social-handle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(87, 204, 153, 0.1);
  border: 1px solid rgba(87, 204, 153, 0.3);
  color: var(--accent-mint);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.35rem;
  letter-spacing: 0.02em;
}

.social-channels-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.social-channel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-tagline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-channel-btn:hover {
  background: rgba(87, 204, 153, 0.2);
  border-color: var(--accent-mint);
  color: var(--accent-mint);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 204, 153, 0.35);
}

.social-section-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
}

.social-section-header span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.social-releases-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.social-release-card {
  background: rgba(17, 28, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.social-release-card:hover {
  border-color: rgba(87, 204, 153, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.social-release-card.is-card-playing {
  border-color: var(--accent-mint);
  box-shadow: 0 0 25px rgba(87, 204, 153, 0.35);
}

.social-release-header {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  margin-bottom: 0.95rem;
}

.social-release-thumb-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  aspect-ratio: 1 / 1;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.social-release-thumb-wrap:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.02);
}

.social-release-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-release-meta {
  flex: 1;
  min-width: 0;
}

.social-release-meta .card-meta {
  margin-bottom: 0.25rem;
}

.social-release-meta h3 {
  font-size: 1.15rem;
  margin: 0 0 0.15rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-white);
}

.social-release-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.35rem;
  min-height: 42px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.platform-pill svg {
  flex-shrink: 0;
}

.platform-pill.platform-spotify {
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.32);
  color: #1ed760;
}
.platform-pill.platform-spotify:hover {
  background: #1ed760;
  color: #0b1320;
  box-shadow: 0 0 16px rgba(30, 215, 96, 0.5);
  transform: translateY(-2px);
}

.platform-pill.platform-apple {
  background: linear-gradient(135deg, #38383e 0%, #18181b 50%, #0a0a0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.platform-pill.platform-apple:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 100%);
  color: #09090b;
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.platform-pill.platform-youtube {
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.32);
  color: #ff4d4d;
}
.platform-pill.platform-youtube:hover {
  background: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Hub Links Section */
.social-hub-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.social-hub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-hub-link:hover {
  background: rgba(87, 204, 153, 0.12);
  border-color: var(--accent-mint);
  color: var(--accent-mint);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 204, 153, 0.25);
}

.social-hub-link-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-hub-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(87, 204, 153, 0.15);
  color: var(--accent-mint);
}

/* ==========================================================================
   Official Audio Plugins & Dedicated Product Pages
   ========================================================================== */
.tool-promo-link {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tool-promo-link:hover {
  border-color: rgba(56, 163, 165, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 16px rgba(56, 163, 165, 0.2);
}

.tool-promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.tool-promo-link:hover .tool-promo-img {
  /* Prevent inner image expansion so plugin header and controls are 100% visible */
  transform: none;
  filter: brightness(1.06);
}

.tool-card-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  width: 100%;
}

.tool-card-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Dedicated Plugin Product Pages */
.plugin-hero {
  padding: 2.25rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.plugin-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.plugin-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4px;
  background: var(--gradient-aux);
  box-shadow: 0 0 40px rgba(56, 163, 165, 0.35), 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.plugin-hero-visual:hover {
  transform: translateY(-4px);
}

.plugin-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
}

.plugin-tagline-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.plugin-format-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(56, 163, 165, 0.15);
  border: 1px solid rgba(56, 163, 165, 0.4);
  color: var(--accent-mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plugin-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.plugin-cta-btn-main {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.pwyw-notice {
  font-size: 0.82rem;
  color: var(--text-tagline);
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pwyw-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(87, 204, 153, 0.18);
  color: var(--accent-mint);
  border: 1px solid rgba(87, 204, 153, 0.4);
}

.pwyw-highlight {
  color: var(--accent-mint);
  font-weight: 600;
}

.plugin-specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.plugin-specs-strip span strong {
  color: var(--text-white);
}

/* Feature Deep-Dives */
.plugin-features-section {
  padding: 3rem 0;
}

.plugin-feature-card {
  background: rgba(20, 34, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.plugin-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(87, 204, 153, 0.35);
}

.plugin-feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.plugin-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(87, 204, 153, 0.15);
  border: 1px solid rgba(87, 204, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.plugin-feature-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-white);
}

.plugin-feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.plugin-feature-spec-pill {
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  color: var(--accent-cyan);
  align-self: flex-start;
  margin-top: auto;
}

/* Parameters & Specifications Table */
.spec-table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 28, 48, 0.6);
  margin-top: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.spec-table th {
  background: rgba(25, 43, 69, 0.5);
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  color: var(--accent-mint);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-tagline);
}

.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.spec-table code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.82rem;
  color: var(--accent-cyan);
}

/* DAW Compatibility Grid */
.daw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.daw-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-tagline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.daw-pill:hover {
  background: rgba(87, 204, 153, 0.1);
  border-color: var(--accent-mint);
  color: var(--text-white);
  transform: translateY(-2px);
}

.daw-status {
  font-size: 0.68rem;
  color: var(--accent-mint);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Bottom CTA Banner */
.plugin-bottom-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: radial-gradient(circle at center, rgba(56, 163, 165, 0.25) 0%, rgba(17, 28, 48, 0.95) 100%);
  border: 1px solid rgba(87, 204, 153, 0.35);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Image Gallery / Lightbox Modal System
   ========================================================================== */
.image-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: zoom-out;
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-modal.active .lightbox-container {
  transform: scale(1);
}

.lightbox-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(87, 204, 153, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(87, 204, 153, 0.15);
  background: #080f1a;
  cursor: zoom-out;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 88vw;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.lightbox-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(17, 28, 48, 0.95);
  border: 1px solid rgba(87, 204, 153, 0.4);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close-btn:hover {
  background: var(--accent-mint);
  color: var(--bg-navy);
  border-color: var(--accent-mint);
  transform: scale(1.08);
}

.lightbox-close-btn:active {
  transform: scale(0.94);
}

body.lightbox-open {
  overflow: hidden !important;
}

@media (max-width: 600px) {
  .lightbox-close-btn {
    top: -12px;
    right: -8px;
    width: 38px;
    height: 38px;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 76vh;
    border-radius: 8px;
  }

  .lightbox-caption {
    font-size: 0.82rem;
    margin-top: 10px;
  }
}

