/* ============================================================
   TLMDirect — Dark Mode CSS  (mobile-first, no framework)
   Colors: bg=#111111  accent=#e63946  surface=#1a1a1a  text=#f0f0f0
   ============================================================ */

:root {
  --bg:         #111111;
  --surface:    #1a1a1a;
  --surface2:   #222222;
  --surface3:   #2a2a2a;
  --border:     #333333;
  --accent:     #e63946;
  --accent-dim: #c1121f;
  --accent-hover:#c1121f;
  --text:       #f0f0f0;
  --text-muted: #888888;
  --text-dim:   #666666;
  --player-h:   80px;
  --nav-h:      60px;
  --radius:     8px;
  --radius-lg:  14px;
  --transition: 0.2s ease;
}

/* ── Themes ── */
[data-theme="light-gray"] {
  --bg:          #f5f5f5;
  --surface:     #ffffff;
  --surface2:    #ececec;
  --surface3:    #e0e0e0;
  --border:      #d0d0d0;
  --text:        #111111;
  --text-muted:  #666666;
  --text-dim:    #999999;
  --accent:      #444444;
  --accent-dim:  #222222;
  --accent-hover:#222222;
}

[data-theme="light-nature"] {
  --bg:          #f4f1eb;
  --surface:     #fdf9f3;
  --surface2:    #ede8de;
  --surface3:    #ddd6c8;
  --border:      #c8beae;
  --text:        #2c2416;
  --text-muted:  #7a6e5e;
  --text-dim:    #a0947e;
  --accent:      #6b8f4e;
  --accent-dim:  #4e6e38;
  --accent-hover:#4e6e38;
}

[data-theme="light-pastel"] {
  --bg:          #fef6fb;
  --surface:     #ffffff;
  --surface2:    #fce9f5;
  --surface3:    #f8d8ee;
  --border:      #e8c4df;
  --text:        #2d1f2a;
  --text-muted:  #8a6080;
  --text-dim:    #b090a8;
  --accent:      #c472a8;
  --accent-dim:  #a85890;
  --accent-hover:#a85890;
}

[data-theme="dark-nature"] {
  --bg:          #1a1e14;
  --surface:     #242b1c;
  --surface2:    #2e3824;
  --surface3:    #38452c;
  --border:      #4a5a38;
  --text:        #d8e4c8;
  --text-muted:  #8a9e78;
  --text-dim:    #607050;
  --accent:      #7db05a;
  --accent-dim:  #96c872;
  --accent-hover:#96c872;
}

[data-theme="dark-pastel"] {
  --bg:          #1a1520;
  --surface:     #241b2e;
  --surface2:    #2e2238;
  --surface3:    #382a44;
  --border:      #4a3860;
  --text:        #e8d8f4;
  --text-muted:  #9878b8;
  --text-dim:    #6a5080;
  --accent:      #c882d8;
  --accent-dim:  #d896e8;
  --accent-hover:#d896e8;
}

/* ── Dim (half-dark) Themes ── */
[data-theme="dim-gray"] {
  --bg:          #242424;
  --surface:     #2e2e2e;
  --surface2:    #383838;
  --surface3:    #424242;
  --border:      #505050;
  --text:        #e8e8e8;
  --text-muted:  #a0a0a0;
  --text-dim:    #787878;
  --accent:      #e63946;
  --accent-dim:  #c1121f;
  --accent-hover:#c1121f;
}

[data-theme="dim-nature"] {
  --bg:          #242820;
  --surface:     #2e3428;
  --surface2:    #384030;
  --surface3:    #424c38;
  --border:      #586048;
  --text:        #dce8cc;
  --text-muted:  #8aaa78;
  --text-dim:    #687856;
  --accent:      #7db05a;
  --accent-dim:  #96c872;
  --accent-hover:#96c872;
}

[data-theme="dim-pastel"] {
  --bg:          #28202e;
  --surface:     #32283c;
  --surface2:    #3c3048;
  --surface3:    #463854;
  --border:      #584870;
  --text:        #ecdcf8;
  --text-muted:  #a888c8;
  --text-dim:    #7a6090;
  --accent:      #c882d8;
  --accent-dim:  #d896e8;
  --accent-hover:#d896e8;
}

/* dark-gray = default :root — no override needed */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: var(--player-h);
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

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

/* ── Utility ── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 32px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-secondary {
  background: var(--surface2); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface3); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn-icon {
  background: transparent; border: none;
  color: var(--text-muted); padding: 8px;
  border-radius: 50%; transition: all var(--transition);
}
.btn-icon:hover { color: var(--text); background: var(--surface2); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-paypal {
  background: #FFC439; color: #003087;
  border: 1px solid #e0aa00; font-weight: 700;
}
.btn-paypal:hover { background: #e0aa00; }
.btn-success {
  background: #28a745; color: #fff;
  border: none;
}
.btn-success:hover { background: #218838; }
.paypal-container-wrap {
  flex-basis: 100%; padding: 10px 0 4px;
  border-top: 1px solid var(--border);
}
.paypal-container-wrap .paypal-buttons { max-width: 400px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ── Nav ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--surface);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 20px; gap: 16px;
}
.nav-logo {
  font-size: 20px; font-weight: 800;
  color: var(--accent); letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--text); }
.nav-search {
  flex: 1; max-width: 400px;
  position: relative;
}
.nav-search input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px 8px 38px;
  color: var(--text); font-size: 14px;
  outline: none; transition: border-color var(--transition);
}
.nav-search input:focus { border-color: var(--accent); }
.nav-search input::placeholder { color: var(--text-dim); }
.nav-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); font-size: 14px; pointer-events: none;
}
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-user { display: flex; align-items: center; gap: 10px; }
.nav-user-email { font-size: 13px; color: var(--text-muted); display: none; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.nav-links {
  display: none;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  flex-direction: column; gap: 4px;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: var(--text); padding: 10px 0;
  font-size: 15px; border-bottom: 1px solid var(--border);
}
.nav-links a:last-child { border-bottom: none; }

@media (min-width: 640px) {
  .hamburger { display: none; }
  .nav-links {
    display: flex; position: static;
    background: transparent; border: none; padding: 0;
    flex-direction: row; gap: 4px;
  }
  .nav-links a {
    padding: 8px 12px; border-bottom: none;
    border-radius: var(--radius); font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
  }
  .nav-links a:hover { color: var(--text); background: var(--surface2); }
  .nav-user-email { display: block; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--surface2) 0%, var(--bg) 60%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900; letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--text-muted); max-width: 500px; margin: 0 auto 28px;
  line-height: 1.6;
}

/* ── Main Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Headers ── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
}
.section-header h2 {
  font-size: 20px; font-weight: 700;
}

/* ── Band Grid ── */
.bands-section { padding: 40px 0; }
.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.band-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.band-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.band-card-artwork {
  aspect-ratio: 1/1;
  background: var(--surface2);
  overflow: hidden; position: relative;
}
.band-card-artwork img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.band-card:hover .band-card-artwork img { transform: scale(1.04); }
.band-card-artwork .placeholder-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--text-dim);
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
}
.band-card-info { padding: 14px 16px; }
.band-card-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.band-card-meta { font-size: 12px; color: var(--text-muted); }

/* ── Band Page ── */
.band-hero {
  display: flex; flex-direction: column;
  gap: 24px; padding: 32px 0;
}
@media (min-width: 640px) {
  .band-hero { flex-direction: row; align-items: flex-start; gap: 32px; }
}
.band-artwork-wrap {
  flex-shrink: 0; width: 100%; max-width: 280px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface2);
  align-self: center;
}
@media (min-width: 640px) {
  .band-artwork-wrap { width: 240px; }
}
.band-artwork-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.band-info { flex: 1; min-width: 0; }
.band-name {
  font-size: clamp(22px, 5vw, 38px); font-weight: 900;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.band-bio { color: var(--text-muted); line-height: 1.7; font-size: 15px; margin-bottom: 20px; }

/* ── Track List ── */
.tracklist { margin-top: 32px; }
.tracklist h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.track-item {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.track-item:hover { border-color: var(--accent); background: var(--surface2); }
.track-item.playing { border-color: var(--accent); background: rgba(230,57,70,0.08); }
.track-play-btn {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--accent); border: none;
  border-radius: 50%; color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.track-play-btn:hover { background: var(--accent-dim); transform: scale(1.08); }
.track-info { flex: 1; min-width: 0; }
.track-title { font-size: 15px; font-weight: 600; margin-bottom: 3px; truncate: ellipsis; white-space: nowrap; overflow: hidden; }
.track-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; }
.track-meta span { display: flex; align-items: center; gap: 4px; }
.track-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.track-price {
  font-size: 13px; font-weight: 700; color: var(--accent);
  background: rgba(230,57,70,0.12);
  padding: 4px 10px; border-radius: 4px;
}

/* ── Comments ── */
.comments-section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.comments-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.comment-form { margin-bottom: 24px; }
.comment-form textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text); padding: 12px 14px;
  font-size: 14px; resize: vertical; min-height: 80px;
  outline: none; transition: border-color var(--transition);
}
.comment-form textarea:focus { border-color: var(--accent); }
.comment-form textarea::placeholder { color: var(--text-dim); }
.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.comment-meta { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.comment-meta strong { color: var(--text-muted); }
.comment-text { font-size: 14px; line-height: 1.6; color: var(--text); }

/* ── Forms / Auth ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text); padding: 10px 14px;
  font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-dim); }
.form-error { font-size: 12px; color: var(--accent); margin-top: 4px; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 400px;
  padding: 28px 24px;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-size: 20px; font-weight: 700; }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 22px; cursor: pointer; line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: var(--text); }
.modal-tabs {
  display: flex; gap: 0; margin-bottom: 24px;
  background: var(--surface2); border-radius: var(--radius);
  padding: 3px;
}
.modal-tab {
  flex: 1; padding: 8px; text-align: center;
  background: none; border: none; color: var(--text-muted);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border-radius: 6px; transition: all var(--transition);
}
.modal-tab.active { background: var(--accent); color: #fff; }

/* ── Player (bottom persistent) ── */
.player {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: var(--surface);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  z-index: 150;
  display: flex; align-items: center;
  padding: 0 12px; gap: 12px;
}
.player.idle { opacity: 0.5; pointer-events: none; }
.player-art {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--surface2); border-radius: var(--radius);
  overflow: hidden;
}
.player-art img { width: 100%; height: 100%; object-fit: cover; }
.player-art .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--text-dim); }
.player-info { flex: 1; min-width: 0; }
.player-title { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-band { font-size: 11px; color: var(--text-muted); }
.player-controls { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.player-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 20px; padding: 8px; cursor: pointer;
  border-radius: 50%; transition: color var(--transition), background var(--transition);
  line-height: 1;
}
.player-btn:hover { color: var(--text); background: var(--surface2); }
.player-btn.play-pause { font-size: 24px; color: var(--text); }
.player-progress {
  flex: 1; min-width: 60px; max-width: 200px;
  display: flex; flex-direction: column; gap: 3px;
}
.progress-bar-wrap {
  position: relative; height: 4px; background: var(--surface3);
  border-radius: 2px; cursor: pointer;
}
.progress-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent); border-radius: 2px;
  pointer-events: none; width: 0%;
  transition: width 0.3s linear;
}
.progress-bar-wrap:hover .progress-bar { filter: brightness(1.2); }
.progress-times {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--text-dim);
}
.player-volume {
  display: none; align-items: center; gap: 6px; flex-shrink: 0;
}
.player-volume input[type=range] {
  -webkit-appearance: none; width: 70px; height: 4px;
  background: var(--surface3); border-radius: 2px; cursor: pointer;
}
.player-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  background: var(--text); border-radius: 50%;
}
@media (min-width: 500px) { .player-volume { display: flex; } }
@media (min-width: 640px) { .player-progress { max-width: 280px; } }

/* ── Downloads / Playlists Pages ── */
.page-section { padding: 32px 0; }
.page-title { font-size: 26px; font-weight: 800; margin-bottom: 28px; }
.download-item, .playlist-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 10px;
  transition: border-color var(--transition);
}
.download-item:hover, .playlist-item:hover { border-color: var(--accent); }
.download-art {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  background: var(--surface2);
}
.download-art img { width: 100%; height: 100%; object-fit: cover; }
.download-info { flex: 1; min-width: 0; }
.download-title { font-size: 15px; font-weight: 600; }
.download-band { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }

/* ── Success Page ── */
.success-page {
  min-height: calc(100vh - var(--nav-h) - var(--player-h));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.success-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 440px; width: 100%;
  text-align: center;
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-card h1 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.success-card p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Toasts ── */
.toast-container {
  position: fixed; bottom: 90px; right: 16px; z-index: 999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px; color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: slideIn 0.2s ease;
  max-width: 280px;
}
.toast.success { border-left: 3px solid #2ecc71; }
.toast.error   { border-left: 3px solid var(--accent); }
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* ── Loader ── */
.loader {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  color: var(--text-muted); gap: 10px;
}
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive tweaks ── */
@media (max-width: 400px) {
  .track-actions { flex-direction: column; gap: 4px; }
  .player-progress { display: none; }
}

/* Format download selector */
.format-download {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.format-select {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  cursor: pointer;
}
.format-select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Hero tagline */
.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn.active { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }

/* Hero Logo */
.hero-logo {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── Theme Switcher UI ── */
.theme-switcher-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-toggle-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
  transition: all .15s;
  line-height: 1;
}
.theme-toggle-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

.theme-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.theme-btn {
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: all .15s;
  white-space: nowrap;
}
.theme-btn:hover {
  color: var(--text);
  background: var(--surface3);
}
.theme-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface);
}
.theme-group { display: flex; flex-direction: column; gap: 4px; }
.theme-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 2px 4px;
  opacity: .7;
}
.theme-group-btns { display: flex; flex-direction: column; gap: 3px; }
.theme-panel { gap: 10px; min-width: 200px; }
