:root {
  --bg: #0e0e10;
  --bg-elev: #18181b;
  --bg-elev-2: #202024;
  --panel: #1c1c20;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-faint: #6b6b73;
  --accent: #e4252b;
  --accent-soft: #ff4d52;
  --border: #2a2a30;
  --radius: 12px;
  --player-h: 92px;
  --sidebar-w: 232px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  height: calc(100vh - var(--player-h));
}

/* ---------------- Sidebar ---------------- */
.sidebar {
  background: linear-gradient(180deg, #141416 0%, #0c0c0e 100%);
  border-right: 1px solid var(--border);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.brand-mark { font-size: 1.6rem; }
.brand-accent { color: var(--accent); }

.nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.nav-link {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--bg-elev); color: var(--text); }
.nav-link.active { background: var(--bg-elev-2); color: var(--text); }
.nav-studio { margin-top: 6px; color: var(--accent-soft); font-size: 0.9rem; }
.nav-studio:hover { background: var(--bg-elev); }
.nav-admin { color: var(--text-faint); font-size: 0.82rem; }
.nav-admin:hover { background: var(--bg-elev); color: var(--text-dim); }

/* Hochgeladene Bilder füllen ihre Kachel (rund/eckig erbt vom Container) */
.tile-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

.sidebar-foot {
  margin-top: auto;
  padding-top: 22px;
  color: var(--text-faint);
  font-size: 0.74rem;
  line-height: 1.5;
}
.legal-links { display: flex; gap: 14px; margin-top: 10px; }
.legal-links a { color: var(--text-faint); font-size: 0.72rem; }
.legal-links a:hover { color: var(--text-dim); }

/* ---------------- Main ---------------- */
.main { display: flex; flex-direction: column; overflow: hidden; }

.topbar {
  padding: 18px 30px;
  border-bottom: 1px solid var(--border);
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.search { display: flex; gap: 10px; flex: 1; max-width: 760px; }
.search input[type="search"] {
  flex: 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 11px 18px;
  font-size: 0.95rem;
  outline: none;
}
.search input[type="search"]:focus { border-color: var(--accent); }
.search-genre {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 0 14px;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}
.search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.search-btn:hover { background: var(--accent-soft); }

.view { padding: 30px; overflow-y: auto; flex: 1; }

/* ---------------- Hero / Home ---------------- */
.hero {
  background: radial-gradient(120% 140% at 0% 0%, #2a0c0d 0%, #141416 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 34px;
}
.hero h1 { font-size: 2.4rem; margin: 0 0 10px; letter-spacing: -1px; }
.hero p { color: var(--text-dim); font-size: 1.05rem; max-width: 620px; margin: 0; line-height: 1.55; }
.hero-donate-btn {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 999px; padding: 12px 24px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.hero-donate-btn:hover { background: var(--accent-soft); transform: translateY(-1px); }
.radio-btn {
  flex-shrink: 0; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 999px; padding: 11px 20px;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.radio-btn:hover { background: var(--accent-soft); transform: translateY(-1px); }

.donate-btn {
  flex-shrink: 0; white-space: nowrap;
  background: transparent; color: var(--accent-soft);
  border: 1px solid var(--accent); border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
.donate-btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.app-toast {
  position: fixed; left: 50%; bottom: calc(var(--player-h) + 20px);
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-elev-2); color: var(--text);
  border: 1px solid var(--accent); border-radius: 10px;
  padding: 12px 22px; font-size: 0.9rem; max-width: 90vw;
  opacity: 0; pointer-events: none; z-index: 200;
  transition: opacity 0.25s, transform 0.25s;
}
.app-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.radio-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: radio-pulse 1.6s infinite;
}
@keyframes radio-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.section-title {
  font-size: 1.25rem;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .count { color: var(--text-faint); font-size: 0.85rem; font-weight: 400; }

/* ---------------- Karten-Grid ---------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, border-color 0.15s;
}
.card:hover { background: var(--bg-elev-2); transform: translateY(-3px); border-color: #3a3a42; }
.card-art {
  aspect-ratio: 1/1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  user-select: none;
}
.card-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.card-sub { color: var(--text-dim); font-size: 0.83rem; }
.tag {
  display: inline-block;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.72rem;
  padding: 2px 9px;
  border-radius: 999px;
  margin-top: 10px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.tags .tag { margin-top: 0; }
.card .tags { margin-top: 10px; }

/* ---------------- Künstlerprofil ---------------- */
.artist-head {
  display: flex;
  gap: 26px;
  align-items: flex-end;
  background: linear-gradient(180deg, #221012 0%, var(--bg) 100%);
  background-size: cover;
  background-position: center;
  padding: 36px 30px;
  border-radius: var(--radius);
  margin: -30px -30px 30px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
/* dunkler Overlay über dem Banner, damit Text lesbar bleibt */
.artist-head[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0.35) 0%, rgba(14,14,16,0.85) 100%);
  z-index: 0;
}
.artist-head > * { position: relative; z-index: 1; }
.artist-avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.artist-head h1 { font-size: 2.8rem; margin: 0 0 8px; letter-spacing: -1px; }
.artist-head .meta { color: var(--text-dim); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.artist-bio { color: var(--text-dim); max-width: 760px; line-height: 1.6; margin-bottom: 30px; }

/* Teilen-Button + Social-Links im Profilkopf */
.artist-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); color: var(--text);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-weight: 600; font-size: 0.88rem; cursor: pointer;
  backdrop-filter: blur(4px); transition: background 0.15s, transform 0.12s;
}
.share-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  font-size: 1.05rem; text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.report-btn {
  background: none; color: var(--text-faint);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; font-size: 0.82rem; cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.report-btn:hover { color: var(--accent-soft); border-color: var(--accent); }

/* Melde-Dialog (Modal) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-box h3 { margin: 0 0 8px; font-size: 1.2rem; }
.report-label { display: block; font-size: 0.82rem; color: var(--text-dim); font-weight: 600; margin: 14px 0 4px; }
.report-reason, .report-details {
  width: 100%; background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); padding: 10px 12px; font-size: 0.92rem;
  font-family: inherit; outline: none;
}
.report-reason:focus, .report-details:focus { border-color: var(--accent); }
.report-details { resize: vertical; }
.modal-box .btn-row { display: flex; gap: 10px; margin-top: 18px; }

/* Top Tracks Grid */
.top-tracks-grid { margin-bottom: 30px; }
.top-tracks-grid h3 { margin-bottom: 16px; font-size: 1.3rem; }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.track-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.track-card:hover { transform: translateY(-4px); }
.track-cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  background-size: cover;
  background-position: center;
}
.track-cover img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.track-cover:hover .play-overlay { opacity: 1; }
.track-info { font-size: 0.85rem; }
.track-title { font-weight: 600; margin-bottom: 2px; line-height: 1.3; }
.track-artist { color: var(--text-dim); font-size: 0.8rem; margin-bottom: 2px; }
.track-release { color: var(--text-faint); font-size: 0.75rem; }

/* Videos Grid */
.artist-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  max-width: 100%;
}
.artist-video-iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.release { margin-bottom: 32px; }
.release-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.release-cover {
  width: 72px; height: 72px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: #fff;
}
.release-info h3 { margin: 0; font-size: 1.2rem; }
.release-info .sub { color: var(--text-faint); font-size: 0.85rem; }
.play-all {
  margin-left: auto;
  background: var(--accent); color: #fff; border: none;
  border-radius: 999px; padding: 9px 20px; font-weight: 700; cursor: pointer;
}
.play-all:hover { background: var(--accent-soft); }

/* ---------------- Track-Liste ---------------- */
.tracklist { display: flex; flex-direction: column; }
.track {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
}
.track:hover { background: var(--bg-elev); }
.track.playing { background: var(--bg-elev-2); }
.track.playing .track-title { color: var(--accent-soft); }
.track-idx { color: var(--text-faint); text-align: center; font-variant-numeric: tabular-nums; }
.track:hover .track-idx .num { display: none; }
.track-idx .play-ico { display: none; color: var(--accent-soft); }
.track:hover .track-idx .play-ico { display: inline; }
.track-title { font-weight: 600; }
.track-sub { color: var(--text-dim); font-size: 0.82rem; }
.track-dur { color: var(--text-faint); font-variant-numeric: tabular-nums; font-size: 0.85rem; }

/* ---------------- Suche / Leerzustände ---------------- */
.empty { color: var(--text-dim); text-align: center; padding: 60px 20px; }
.empty .big { font-size: 2rem; margin-bottom: 10px; }
.search-section { margin-bottom: 34px; }
.row-list { display: flex; flex-direction: column; gap: 2px; }
.row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
}
.row:hover { background: var(--bg-elev); }
.row-art {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; flex-shrink: 0;
}
.row-main { flex: 1; }
.row-main .t { font-weight: 600; }
.row-main .s { color: var(--text-dim); font-size: 0.82rem; }

.manifest { max-width: 700px; line-height: 1.7; }
.manifest h1 { font-size: 2.2rem; }
.manifest p { color: var(--text-dim); font-size: 1.05rem; }
.manifest .lead { color: var(--text); font-size: 1.25rem; font-weight: 600; }
.manifest .manifest-foot { margin-top: 30px; color: var(--text-faint); font-size: 0.92rem; font-style: italic; }

/* ---------------- Player ---------------- */
.player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  z-index: 50;
}
.player-track { display: flex; align-items: center; gap: 14px; min-width: 0; }
.player-cover {
  width: 56px; height: 56px; border-radius: 8px;
  background: var(--bg-elev-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.player-meta { min-width: 0; }
.player-title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { color: var(--text-dim); font-size: 0.84rem; }
.player-artist:hover { color: var(--accent-soft); }

.player { position: fixed; /* war schon, aber nochmal klar: relativer Anker für Canvas */ }
.waveform {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.waveform.active { opacity: 1; }
.player > *:not(.waveform) { position: relative; z-index: 2; }
.player-controls, .player-seek, .player-right, .player-track { position: relative; z-index: 2; }

.player-center { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.player-controls { display: flex; align-items: center; gap: 18px; }
.ctrl {
  background: none; border: none; color: var(--text);
  font-size: 1.1rem; cursor: pointer; opacity: 0.85;
}
.ctrl:hover { opacity: 1; }
.ctrl-loop { font-size: 1rem; opacity: 0.6; }
.ctrl-loop.active { opacity: 1; color: var(--accent-soft); }
.ctrl-play {
  background: #fff; color: #000;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ctrl-play:hover { transform: scale(1.06); }

.player-seek { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 560px; }
.time { color: var(--text-faint); font-size: 0.72rem; font-variant-numeric: tabular-nums; width: 34px; }
.time:last-child { text-align: right; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 999px;
  background: var(--border);
  cursor: pointer; flex: 1;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-soft);
}
input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border: none; border-radius: 50%;
  background: var(--accent-soft);
}
#seek { background: linear-gradient(to right, var(--accent) 0%, var(--accent) 0%, var(--border) 0%); }

.player-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.player-right input[type="range"] { max-width: 110px; }
.vol-icon { color: var(--text-dim); }

/* ================ Kontaktformular ================ */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}
.contact-page h1 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}
.contact-page .lead {
  color: var(--text-dim);
  margin: 0 0 26px;
  line-height: 1.6;
}
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.5;
}
.char-counter {
  color: var(--text-faint);
  font-size: 0.78rem;
  text-align: right;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.captcha-q {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--text);
  min-width: 180px;
}
.captcha-row input {
  flex: 1;
  min-width: 100px;
  max-width: 160px;
}
.form-hint {
  color: var(--text-faint);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 4px 0 0;
}
.contact-status {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.contact-status.ok { color: #6cd28a; }
.contact-status.error { color: var(--accent-soft); }

/* ================ Editor Layout (Profil + Anleitung) ================ */
.editor-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.editor-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editor-sidebar {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.editor-sidebar h3 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}

.guide-section {
  margin-bottom: 18px;
}

.guide-section h4 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.guide-section p {
  margin: 0 0 8px 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.guide-section ul {
  margin: 8px 0;
  padding-left: 20px;
  list-style: disc;
}

.guide-section li {
  margin-bottom: 4px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.guide-section.danger {
  background: rgba(228, 37, 43, 0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px;
  margin: 20px -8px 0 -8px;
}

.guide-section.danger h4 {
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.legal-text {
  margin: 12px 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

.legal-list {
  margin: 12px 0;
  padding-left: 20px;
  list-style: disc;
}

.legal-list li {
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

.legal-list strong {
  color: var(--text);
  font-weight: 700;
}

.editor-sidebar hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px -8px;
}

@media (max-width: 1100px) {
  .editor-layout {
    grid-template-columns: 1fr;
  }
  .editor-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .player { grid-template-columns: 1fr 1.4fr; }
  .player-right { display: none; }
  .editor-layout {
    padding: 0 12px;
  }
}
