@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --black: #070706;
  --graphite: #151411;
  --graphite-soft: #1d1b17;
  --panel: rgba(27, 25, 21, 0.78);
  --line: rgba(231, 219, 199, 0.13);
  --line-strong: rgba(231, 219, 199, 0.26);
  --text: #f3eee5;
  --muted: #9e978d;
  --platinum: #d8cfc1;
  --platinum-dark: #9f9689;
  --champagne: #c7ae84;
  --champagne-light: #ebdec9;
  --success: #45d37a;
  --danger: #ff8080;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 38px 100px rgba(0, 0, 0, 0.5);
  --ease: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 174, 132, 0.11), transparent 28rem),
    radial-gradient(circle at 14% 76%, rgba(216, 207, 193, 0.06), transparent 32rem),
    linear-gradient(145deg, #16140f 0%, #080807 45%, #0d0c0a 100%);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -20;
  overflow: hidden;
  pointer-events: none;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.light-one {
  width: 38rem;
  height: 38rem;
  top: -18rem;
  right: -8rem;
  background: rgba(199, 174, 132, 0.13);
}

.light-two {
  width: 32rem;
  height: 32rem;
  left: -14rem;
  top: 28%;
  background: rgba(221, 211, 193, 0.08);
}

.light-three {
  width: 26rem;
  height: 26rem;
  right: 18%;
  bottom: -12rem;
  background: rgba(141, 117, 81, 0.08);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
}

.topbar {
  width: min(1380px, 92%);
  min-height: 126px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 30;
}

.floating-brand {
  position: fixed;
  top: 28px;
  left: 36px;
  z-index: 100;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(235, 222, 201, 0.18), rgba(255,255,255,0.02) 58%),
    rgba(19, 18, 15, 0.84);
  border: 1px solid rgba(235, 222, 201, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 70px rgba(0,0,0,.52);
  backdrop-filter: blur(24px);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.floating-brand:hover {
  transform: translateY(-4px);
  border-color: rgba(235, 222, 201, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 34px 84px rgba(0,0,0,.58);
}

.brand-hma {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding-left: 0.18em;
  color: var(--champagne-light);
}

.brand-studio {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.36em;
  padding-left: 0.36em;
  color: var(--platinum-dark);
}

.navigation {
  display: flex;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(18, 17, 14, 0.72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(22px);
}

.nav {
  padding: 13px 23px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.nav:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav.active {
  color: #191611;
  background: linear-gradient(180deg, var(--champagne-light), #b7a487);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.56),
    0 10px 26px rgba(0,0,0,.3);
}

main {
  width: min(1380px, 92%);
  margin: 0 auto;
  padding-bottom: 110px;
}

.view {
  display: none;
  animation: viewIn 420ms ease;
}

.view.active {
  display: block;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 6vw;
  padding: 62px 0 96px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1,
.section-title h1,
.admin-head h1 {
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: .94;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero h1 span,
.section-title h1 span,
.admin-head h1 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(105deg, #8d857a 0%, #e8ddcc 34%, #b9ad9a 62%, #f1e7d7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 720px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.status-pill,
.session-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(23, 21, 18, 0.72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.open-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(69, 211, 122, 0.9);
}

.ghost-button,
.secondary,
.live-link {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--champagne-light);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.ghost-button:hover,
.secondary:hover,
.live-link:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(235, 222, 201, 0.07);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.hero-meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(231, 219, 199, 0.12);
}

.hero-meta span {
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: .18em;
}

.hero-meta p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-object {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.object-frame {
  width: min(460px, 34vw);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.metal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(235, 222, 201, 0.15);
}

.ring-outer {
  inset: 0;
  box-shadow:
    0 0 90px rgba(199, 174, 132, 0.08),
    inset 0 0 80px rgba(255,255,255,.018);
}

.ring-middle {
  inset: 10%;
  border-color: rgba(235, 222, 201, 0.08);
}

.record {
  width: 71%;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, #29241e 0 14%, transparent 14.5%),
    repeating-radial-gradient(circle at 50% 50%, #181714 0 5px, #0d0d0c 6px 8px);
  border: 1px solid rgba(235, 222, 201, 0.2);
  box-shadow:
    inset 0 0 70px rgba(255,255,255,.04),
    0 46px 100px rgba(0,0,0,.58);
  animation: floatRecord 7s ease-in-out infinite;
}

.record-reflection {
  position: absolute;
  width: 30%;
  height: 120%;
  left: 14%;
  top: -10%;
  transform: rotate(23deg);
  background: linear-gradient(90deg, transparent, rgba(235,222,201,.17), transparent);
  filter: blur(10px);
}

.record-center {
  width: 27%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: linear-gradient(145deg, #e0d3be, #927f63);
  color: #17130f;
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.5);
}

.record-center strong {
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: .12em;
  padding-left: .12em;
}

.record-center span {
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: .32em;
  padding-left: .32em;
}

.object-label {
  position: absolute;
  bottom: 14px;
  width: 76%;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .22em;
}

@keyframes floatRecord {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-13px) rotate(2deg);
  }
}

.panel {
  margin-bottom: 36px;
  padding: 46px;
  border-radius: var(--radius-xl);
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.057), rgba(255,255,255,.012) 43%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    var(--shadow);
  backdrop-filter: blur(28px);
}

.submission-panel {
  overflow: hidden;
}

.panel-glow {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(199, 174, 132, 0.09);
  filter: blur(90px);
  pointer-events: none;
}

.panel-head,
.rules-head,
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.panel-head {
  margin-bottom: 46px;
}

.panel h2,
.now-playing-content h2,
.login-card h2 {
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -.036em;
}

.panel-description {
  max-width: 600px;
  margin-top: 14px;
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

.form-section {
  padding: 36px 0;
  border-top: 1px solid rgba(231,219,199,.08);
}

.form-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.form-section-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.section-number,
.rule-index {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #1b1711;
  font-weight: 700;
  background: linear-gradient(145deg, var(--champagne-light), #9f8d70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46);
}

.form-section-title h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.form-section-title p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--platinum);
  font-size: 14px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 17px 18px;
  border-radius: var(--radius-md);
  outline: none;
  color: var(--text);
  background: rgba(8,8,7,.62);
  border: 1px solid rgba(231,219,199,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(235,222,201,.46);
  background: rgba(18,17,14,.78);
  box-shadow: 0 0 0 4px rgba(199,174,132,.08);
}

input::placeholder,
textarea::placeholder {
  color: #6e685f;
}

fieldset {
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.platform {
  min-height: 78px;
  padding: 14px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--platinum);
  background: rgba(15,14,12,.7);
  border: 1px solid rgba(231,219,199,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 600;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.platform:hover {
  transform: translateY(-3px);
  border-color: rgba(235,222,201,.27);
  background: rgba(30,27,22,.78);
}

.platform.active {
  color: #17130f;
  background: linear-gradient(145deg, var(--champagne-light), #aa9678);
  border-color: transparent;
}

.platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  font-size: 12px;
}

.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
}

.check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--champagne);
}

.primary {
  min-height: 64px;
  padding: 0 31px;
  border-radius: 20px;
  cursor: pointer;
  color: #18130f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  background: linear-gradient(145deg, #f0e5d4 0%, #c6b392 57%, #a18c6c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.62),
    0 20px 42px rgba(0,0,0,.3);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 26px 54px rgba(0,0,0,.38);
}

.primary.small {
  min-height: 52px;
  padding: 0 22px;
}

.message {
  margin-top: 18px;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.skip-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}

.skip-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.fine {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.section-title {
  max-width: 840px;
  padding: 92px 0 56px;
}

.section-title h1,
.admin-head h1 {
  font-size: clamp(54px, 6vw, 90px);
}

.status-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.status-emblem {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 23px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(235,222,201,.12), rgba(255,255,255,.02));
  border: 1px solid var(--line);
}

.count {
  margin: 14px 0;
  font-size: 76px;
  font-weight: 700;
  color: var(--champagne-light);
}

.now-playing {
  min-height: 338px;
  display: grid;
  grid-template-columns: 180px 1px 1fr;
  gap: 34px;
  align-items: center;
}

.now-playing-object {
  display: grid;
  place-items: center;
}

.mini-record {
  width: 134px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: repeating-radial-gradient(circle, #191714 0 4px, #0d0d0c 5px 7px);
  border: 1px solid var(--line);
  box-shadow: 0 28px 58px rgba(0,0,0,.42);
}

.mini-record-center {
  width: 43%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  color: #17130f;
  background: linear-gradient(145deg, var(--champagne-light), #9d896b);
}

.mini-record-center strong {
  font-size: 16px;
  letter-spacing: .12em;
  padding-left: .12em;
}

.mini-record-center span {
  margin-top: 4px;
  font-size: 5px;
  letter-spacing: .28em;
  padding-left: .28em;
}

.now-playing-divider {
  width: 1px;
  height: 180px;
  background: linear-gradient(transparent, var(--line-strong), transparent);
}

.live-artist {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 20px;
}

.privacy-note {
  margin-top: 28px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.rules-head {
  margin-bottom: 30px;
}

.rules-number {
  color: rgba(235,222,201,.09);
  font-size: 76px;
  font-weight: 700;
}

.rules ol {
  display: grid;
  gap: 16px;
  list-style: none;
}

.rules li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(231,219,199,.06);
}

.rules li p {
  color: var(--muted);
  line-height: 1.75;
}

.login-card {
  max-width: 540px;
  margin: 92px auto;
}

.login-card .muted {
  margin: 10px 0 26px;
}

.admin-head {
  align-items: flex-end;
  margin: 74px 0 34px;
}

.toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.sound-toggle {
  flex-direction: row;
  align-items: center;
  min-height: 52px;
  margin: 0;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(8,8,7,.5);
  border: 1px solid rgba(231,219,199,.08);
}

.sound-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--champagne);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.stat {
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne-light);
  font-size: 42px;
}

.stat span {
  color: var(--muted);
}

.admin-list {
  display: grid;
  gap: 18px;
}

footer {
  width: min(1380px, 92%);
  margin: 72px auto 42px;
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(231,219,199,.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand strong {
  color: var(--champagne-light);
}

.footer-brand span,
footer p {
  font-size: 13px;
}

::selection {
  color: #17130f;
  background: var(--champagne-light);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080807;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #3b352d;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-object {
    min-height: 450px;
  }

  .object-frame {
    width: min(440px, 58vw);
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    min-height: 174px;
    align-items: flex-end;
    padding-bottom: 20px;
  }

  .floating-brand {
    position: absolute;
    top: 24px;
    left: 0;
    width: 84px;
    height: 84px;
  }

  .navigation {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 42px;
  }

  .two-col,
  .skip-panel {
    grid-template-columns: 1fr;
  }

  .platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-head,
  .rules-head,
  .admin-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .now-playing {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .now-playing-divider {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .topbar,
  main,
  footer {
    width: min(92%, 520px);
  }

  .nav {
    padding: 11px 15px;
    font-size: 13px;
  }

  .hero {
    padding: 26px 0 62px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-object {
    min-height: 350px;
  }

  .object-frame {
    width: min(310px, 76vw);
  }

  .object-label {
    font-size: 7px;
  }

  .panel {
    padding: 26px;
    border-radius: 24px;
  }

  .platforms,
  .stats,
  .toolbar {
    grid-template-columns: 1fr;
  }

  .session-badge {
    min-height: 42px;
    font-size: 12px;
  }

  footer {
    flex-direction: column;
  }
}


    /* VERSION 12: HEVES LUXURY BRAND REFINEMENT */
    .show-branding{
      margin-bottom:18px;
    }

    .show-branding .eyebrow{
      margin-bottom:0;
    }

    .h-emblem{
      width:24%;
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        radial-gradient(circle at 34% 28%,rgba(255,255,255,.46),transparent 21%),
        linear-gradient(145deg,#eadcc6 0%,#c4ad86 48%,#8e785b 100%);
      color:#17130f;
      border:1px solid rgba(255,255,255,.38);
      box-shadow:
        inset 0 2px 3px rgba(255,255,255,.5),
        inset 0 -10px 18px rgba(80,58,32,.18),
        0 10px 24px rgba(0,0,0,.22);
    }

    .h-emblem strong{
      font-size:clamp(30px,3.2vw,54px);
      font-family:Georgia,"Times New Roman",serif;
      font-weight:600;
      line-height:1;
      letter-spacing:.01em;
      text-shadow:0 1px 0 rgba(255,255,255,.35);
    }

    .h-mini-emblem{
      width:43%;
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        radial-gradient(circle at 34% 28%,rgba(255,255,255,.42),transparent 20%),
        linear-gradient(145deg,#e8dbc5,#a58d6d);
      color:#17130f;
      border:1px solid rgba(255,255,255,.3);
      box-shadow:inset 0 1px 2px rgba(255,255,255,.45);
    }

    .h-mini-emblem strong{
      font-size:27px;
      font-family:Georgia,"Times New Roman",serif;
      font-weight:600;
      line-height:1;
    }

    .object-label{
      opacity:.82;
    }

    .heves-wordmark{
      top:34px;
      left:7vw;
    }

    .hero-object{
      transform:translateX(4.5vw);
    }

    .navigation{
      transform:translateY(-12px);
    }

    @media(max-width:860px){
      .heves-wordmark{
        top:28px;
        left:0;
      }

      .hero-object{
        transform:none;
      }

      .navigation{
        transform:none;
      }
    }


/* VERSION 13 — zentral gesteuerter Einreichungsstatus */
.status-pill.is-closed,
.session-badge.is-closed {
  color: #efb4b4;
  border-color: rgba(255, 126, 126, 0.25);
  background: rgba(76, 25, 25, 0.32);
}

.status-pill.is-closed .open-dot,
.session-badge.is-closed .open-dot,
.status-emblem.is-closed .open-dot {
  background: #ff7d7d;
  box-shadow: 0 0 18px rgba(255, 125, 125, 0.72);
}

.status-emblem.is-closed {
  border-color: rgba(255, 126, 126, 0.22);
  background: linear-gradient(145deg, rgba(255, 126, 126, 0.10), rgba(255,255,255,.01));
}

.closed-notice {
  margin: 4px 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  color: #efc2c2;
  line-height: 1.6;
  background: rgba(82, 26, 26, 0.28);
  border: 1px solid rgba(255, 126, 126, 0.20);
}

.submission-panel.is-closed {
  border-color: rgba(255, 126, 126, 0.15);
}

.submission-panel.is-closed .form-section {
  opacity: 0.55;
}

#submissionForm :disabled {
  cursor: not-allowed;
}

#submissionForm input:disabled,
#submissionForm textarea:disabled,
#submissionForm select:disabled,
#submissionForm .platform:disabled {
  opacity: 0.48;
  filter: grayscale(0.25);
}

#submitButton:disabled {
  color: #aaa298;
  background: linear-gradient(145deg, #39352f, #27241f);
  box-shadow: none;
  transform: none;
}

/* =========================================================
   VERSION 14 – PREMIUM ADMIN ENTRIES & ACTION BUTTONS
   ========================================================= */

.entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(235, 222, 201, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.008) 50%),
    rgba(18, 17, 14, .82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 22px 54px rgba(0,0,0,.26);
  backdrop-filter: blur(22px);
}

.entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,222,201,.55), transparent);
  opacity: .45;
}

.entry.priority {
  border-color: rgba(210, 185, 143, .34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 0 0 1px rgba(210,185,143,.08),
    0 24px 64px rgba(0,0,0,.3),
    0 0 36px rgba(210,185,143,.06);
}

.entry h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.entry .meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.entry p {
  margin-top: 14px;
  color: var(--platinum);
  font-size: 14px;
  line-height: 1.65;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 12px 8px 0 0;
  padding: 0 10px;
  border: 1px solid rgba(235,222,201,.13);
  border-radius: 999px;
  color: var(--platinum-dark);
  background: rgba(255,255,255,.025);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.tag.skip {
  color: #18130f;
  border-color: transparent;
  background: linear-gradient(145deg, var(--champagne-light), #a78f6e);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 470px;
}

.action-btn,
.actions .action-btn {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(235,222,201,.14);
  border-radius: 12px;
  appearance: none;
  color: var(--platinum);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(12,12,10,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--ease),
    border-color var(--ease),
    color var(--ease),
    background var(--ease),
    box-shadow var(--ease),
    filter var(--ease);
}

.action-btn:hover,
.actions .action-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(235,222,201,.32);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 12px 25px rgba(0,0,0,.22);
}

.action-btn:active,
.actions .action-btn:active {
  transform: translateY(0);
}

.action-listen {
  color: var(--champagne-light) !important;
  background:
    linear-gradient(145deg, rgba(210,185,143,.12), rgba(210,185,143,.025)),
    rgba(13,12,10,.9) !important;
}

.action-approve {
  color: #162018 !important;
  border-color: rgba(104,190,126,.28) !important;
  background: linear-gradient(145deg, #b9ddb9, #77ad82) !important;
}

.action-live {
  color: #17130f !important;
  border-color: rgba(235,222,201,.22) !important;
  background: linear-gradient(145deg, #f0e4d2, #bd9f72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 0 24px rgba(210,185,143,.11) !important;
}

.action-skip {
  color: var(--champagne-light) !important;
  border-color: rgba(210,185,143,.26) !important;
  background: linear-gradient(145deg, rgba(210,185,143,.14), rgba(56,45,31,.52)) !important;
}

.action-reject {
  color: #e2b8a9 !important;
  border-color: rgba(201,116,91,.2) !important;
  background: rgba(63,29,22,.32) !important;
}

.action-delete {
  color: #f0aaaa !important;
  border-color: rgba(231,104,104,.24) !important;
  background: linear-gradient(145deg, rgba(102,29,29,.42), rgba(42,15,15,.48)) !important;
}

.action-approve:hover,
.action-live:hover {
  filter: brightness(1.09);
}

.action-delete:hover,
.action-reject:hover {
  border-color: rgba(255,130,130,.42) !important;
}

.empty {
  padding: 38px;
  border: 1px dashed rgba(235,222,201,.15);
  border-radius: 22px;
  color: var(--muted);
  background: rgba(255,255,255,.012);
  text-align: center;
}

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

  .actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .entry {
    padding: 21px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .action-btn,
  .actions .action-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   VERSION 14.1 – FALLBACK FÜR ALTE ADMIN-BUTTON-AUSGABE
   Greift auch dann, wenn der Browser noch die ältere app.js
   ohne action-btn-Klassen verwendet.
   ========================================================= */
.actions button,
.actions a {
  min-height: 39px !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(235,222,201,.16) !important;
  border-radius: 12px !important;
  appearance: none !important;
  color: var(--platinum) !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.012)),
    rgba(12,12,10,.92) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045) !important;
  text-decoration: none !important;
  font: 700 12px/1 Inter,Arial,sans-serif !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: transform var(--ease),border-color var(--ease),filter var(--ease),box-shadow var(--ease) !important;
}

.actions button:hover,
.actions a:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(235,222,201,.34) !important;
  filter: brightness(1.07) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06),0 12px 26px rgba(0,0,0,.24) !important;
}

.actions a:first-child,
.actions button:first-child {
  color: var(--champagne-light) !important;
  background:
    linear-gradient(145deg,rgba(210,185,143,.13),rgba(210,185,143,.025)),
    rgba(13,12,10,.92) !important;
}

.actions button:nth-of-type(1) {
  color:#162018 !important;
  border-color:rgba(104,190,126,.3) !important;
  background:linear-gradient(145deg,#b9ddb9,#77ad82) !important;
}

.actions button:nth-of-type(2) {
  color:#17130f !important;
  border-color:rgba(235,222,201,.24) !important;
  background:linear-gradient(145deg,#f0e4d2,#bd9f72) !important;
}

.actions button:nth-of-type(3) {
  color:#21190f !important;
  border-color:rgba(210,185,143,.28) !important;
  background:linear-gradient(145deg,#d8bd92,#9e805c) !important;
}

.actions button:nth-last-of-type(2) {
  color:#efc1b4 !important;
  border-color:rgba(202,108,82,.24) !important;
  background:linear-gradient(145deg,rgba(127,55,40,.42),rgba(62,28,22,.7)) !important;
}

.actions button:last-of-type {
  color:#ffc2c2 !important;
  border-color:rgba(239,91,91,.28) !important;
  background:linear-gradient(145deg,rgba(145,44,44,.54),rgba(68,20,20,.76)) !important;
}


/* =========================================================
   VERSION 15 – MUSIC IDENTITY
   Dezente Schallwellen, Studio-Kopfhörer und Audio-Atmosphäre
   ========================================================= */

.music-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--champagne-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .045em;
}

.music-signature__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #18130f;
  font-size: 17px;
  background: linear-gradient(145deg, #f0e4d2, #b99b70);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.58),
    0 10px 24px rgba(0,0,0,.24),
    0 0 24px rgba(210,185,143,.11);
}

.hero-object {
  isolation: isolate;
}

.audio-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(210,185,143,.12);
  box-shadow: 0 0 70px rgba(210,185,143,.035);
}

.audio-orbit--one {
  width: 610px;
  height: 610px;
  animation: orbitPulse 5.8s ease-in-out infinite;
}

.audio-orbit--two {
  width: 710px;
  height: 710px;
  border-color: rgba(235,222,201,.065);
  animation: orbitPulse 5.8s ease-in-out 1.1s infinite reverse;
}

.sound-wave {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(420px, 74%);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  opacity: .72;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.sound-wave span {
  width: 2px;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(130,109,76,.15), var(--champagne-light), rgba(255,255,255,.22));
  box-shadow: 0 0 14px rgba(210,185,143,.2);
  animation: waveform 1.8s ease-in-out infinite;
}

.sound-wave span:nth-child(2n) { animation-delay: -.25s; }
.sound-wave span:nth-child(3n) { animation-delay: -.58s; }
.sound-wave span:nth-child(4n) { animation-delay: -.9s; }
.sound-wave span:nth-child(5n) { animation-delay: -1.2s; }

.headphone-arc {
  position: absolute;
  z-index: 3;
  width: min(560px, 86%);
  height: min(390px, 62%);
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(231,219,199,.09);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  pointer-events: none;
  opacity: .72;
  filter: drop-shadow(0 0 22px rgba(210,185,143,.07));
}

.headphone-arc::before {
  content: "";
  position: absolute;
  inset: 14px 22px auto;
  height: 88%;
  border: 1px solid rgba(210,185,143,.08);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
}

.headphone-cup {
  position: absolute;
  bottom: -38px;
  width: 36px;
  height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(235,222,201,.16), rgba(255,255,255,.018)),
    rgba(19,18,15,.82);
  border: 1px solid rgba(235,222,201,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 16px 34px rgba(0,0,0,.34);
}

.headphone-cup--left {
  left: -17px;
  transform: rotate(-7deg);
}

.headphone-cup--right {
  right: -17px;
  transform: rotate(7deg);
}

.record {
  transition: transform .7s cubic-bezier(.2,.75,.2,1), filter .7s ease;
}

.hero-object:hover .record {
  transform: scale(1.025);
  filter: brightness(1.055);
}

.hero-object:hover .record-reflection {
  animation: reflectionSweep 1.4s ease;
}

@keyframes waveform {
  0%, 100% { height: 16px; opacity: .36; }
  50% { height: 68px; opacity: .95; }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(.985); opacity: .42; }
  50% { transform: scale(1.025); opacity: .9; }
}

@keyframes reflectionSweep {
  0% { transform: translateX(-48px) rotate(23deg); opacity: .25; }
  50% { opacity: .85; }
  100% { transform: translateX(92px) rotate(23deg); opacity: .25; }
}

@media (max-width: 1180px) {
  .audio-orbit--one { width: 520px; height: 520px; }
  .audio-orbit--two { width: 610px; height: 610px; }
  .headphone-arc { width: min(500px, 80vw); }
}

@media (max-width: 860px) {
  .music-signature {
    font-size: 12px;
  }

  .audio-orbit--one { width: 430px; height: 430px; }
  .audio-orbit--two { width: 505px; height: 505px; }

  .headphone-arc {
    top: 38px;
    width: min(430px, 78vw);
    height: 300px;
  }

  .sound-wave {
    bottom: 28px;
    width: min(350px, 72vw);
  }
}

@media (max-width: 620px) {
  .music-signature {
    align-items: flex-start;
    line-height: 1.45;
  }

  .music-signature__icon {
    flex: 0 0 auto;
  }

  .audio-orbit--one { width: 315px; height: 315px; }
  .audio-orbit--two { width: 370px; height: 370px; }

  .headphone-arc {
    width: 305px;
    height: 220px;
    top: 24px;
  }

  .headphone-cup {
    width: 27px;
    height: 68px;
    bottom: -29px;
  }

  .sound-wave {
    height: 55px;
    bottom: 12px;
    gap: 6px;
  }

  .sound-wave span {
    animation-duration: 2.1s;
  }

  @keyframes waveform {
    0%, 100% { height: 10px; opacity: .32; }
    50% { height: 46px; opacity: .88; }
  }
}


/* =========================================================
   VERSION 16 – PREMIUM SUBMISSION EXPERIENCE
   ========================================================= */

.premium-submission-form {
  display: grid;
  gap: 24px;
}

.submission-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 8px;
  padding: 0 14px;
}

.submission-progress__line {
  position: absolute;
  z-index: 0;
  left: 12%;
  right: 12%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,219,199,.22), transparent);
}

.submission-progress__step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.submission-progress__step b {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--platinum-dark);
  background: #14120f;
  border: 1px solid rgba(231,219,199,.13);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.submission-progress__step.is-active b {
  color: #18130f;
  background: linear-gradient(145deg, var(--champagne-light), #9f8d70);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.48),
    0 0 28px rgba(210,185,143,.12);
}

.submission-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.009) 48%),
    rgba(14,13,11,.52);
  border: 1px solid rgba(231,219,199,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.032),
    0 22px 50px rgba(0,0,0,.18);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.submission-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -190px;
  right: -130px;
  border-radius: 50%;
  background: rgba(210,185,143,.075);
  filter: blur(58px);
  pointer-events: none;
}

.submission-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231,219,199,.17);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 66px rgba(0,0,0,.25);
}

.submission-card__head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}

.submission-card__head h3 {
  margin: 1px 0 7px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.submission-card__head > div > p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.submission-card__kicker {
  margin-bottom: 6px;
  color: var(--champagne);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
}

.submission-card__symbol {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--champagne-light);
  font-size: 19px;
  background: rgba(235,222,201,.045);
  border: 1px solid rgba(231,219,199,.1);
}

.premium-fields label,
.premium-link-field,
.premium-message-field {
  margin-bottom: 0;
}

.input-shell {
  position: relative;
  display: block;
}

.input-shell .input-icon {
  position: absolute;
  z-index: 2;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--champagne);
  background: rgba(235,222,201,.045);
  border: 1px solid rgba(231,219,199,.075);
  font-size: 11px;
  font-weight: 700;
}

.input-shell input {
  padding-left: 58px;
  min-height: 60px;
}

.premium-platforms {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.premium-platforms .platform {
  min-height: 108px;
  flex-direction: column;
  gap: 6px;
  border-radius: 21px;
}

.premium-platforms .platform > span:nth-child(2) {
  font-size: 14px;
}

.premium-platforms .platform small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.premium-platforms .platform.selected small,
.premium-platforms .platform.active small {
  color: rgba(23,19,15,.66);
}

.platform-icon--spotify {
  font-family: Georgia, serif;
  font-style: italic;
}

.premium-link-field {
  margin-top: 4px;
}

.premium-upload-label {
  margin-top: 6px;
}

.file-drop-zone {
  position: relative;
  min-height: 240px;
  padding: 34px 24px;
  border-radius: 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  cursor: pointer;
  text-align: center;
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 0%, rgba(210,185,143,.09), transparent 48%),
    rgba(8,8,7,.48);
  border: 1px dashed rgba(231,219,199,.23);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.file-drop-zone:hover,
.file-drop-zone.is-dragging {
  transform: translateY(-3px);
  border-color: rgba(235,222,201,.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(210,185,143,.15), transparent 52%),
    rgba(18,16,13,.64);
  box-shadow: 0 0 0 4px rgba(210,185,143,.055);
}

.file-drop-zone__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 50%;
  color: #18130f;
  font-size: 24px;
  background: linear-gradient(145deg, #f0e4d2, #a88e68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 18px 34px rgba(0,0,0,.28);
}

.file-drop-zone strong {
  color: var(--text);
  font-size: 18px;
}

.file-drop-zone small {
  margin-top: 5px;
  color: #777066;
}

.file-selection-name {
  margin-top: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--champagne-light);
  background: rgba(235,222,201,.055);
  border: 1px solid rgba(231,219,199,.09);
  font-size: 11px;
}

.file-drop-zone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.premium-message-field {
  position: relative;
}

.premium-message-field textarea {
  min-height: 190px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.65;
}

.character-hint {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: #777066;
  font-size: 10px;
  font-weight: 500;
}

.submission-card--final {
  background:
    radial-gradient(circle at 88% 10%, rgba(210,185,143,.11), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.011) 48%),
    rgba(17,15,12,.68);
}

.premium-legal {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.premium-legal .check {
  margin: 0;
  padding: 16px 17px;
  border-radius: 17px;
  background: rgba(8,8,7,.46);
  border: 1px solid rgba(231,219,199,.075);
}

.premium-submit-button {
  width: 100%;
  min-height: 78px;
  justify-content: space-between;
  padding: 0 25px 0 29px;
  border-radius: 22px;
}

.premium-submit-button__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.premium-submit-button__label small {
  color: rgba(24,19,15,.62);
  font-size: 8px;
  letter-spacing: .24em;
}

.premium-submit-button__label > span {
  font-size: 17px;
}

.premium-submit-button__arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23,19,15,.11);
  font-size: 19px;
  transition: transform var(--ease), background var(--ease);
}

.premium-submit-button:hover .premium-submit-button__arrow {
  transform: translateX(4px);
  background: rgba(23,19,15,.16);
}

.submission-trust {
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  letter-spacing: .045em;
}

.submission-panel.is-closed .submission-card {
  opacity: .72;
}

@media (max-width: 1050px) {
  .premium-platforms {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 760px) {
  .submission-progress {
    padding: 0;
  }

  .submission-progress__step span {
    display: none;
  }

  .submission-card {
    padding: 27px 22px;
  }

  .submission-card__head {
    grid-template-columns: auto minmax(0,1fr);
  }

  .submission-card__symbol {
    display: none;
  }

  .premium-platforms {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 480px) {
  .submission-card {
    padding: 23px 18px;
    border-radius: 21px;
  }

  .submission-card__head {
    gap: 13px;
  }

  .submission-card__head h3 {
    font-size: 21px;
  }

  .section-number {
    width: 43px;
    height: 43px;
  }

  .premium-platforms {
    grid-template-columns: 1fr;
  }

  .file-drop-zone {
    min-height: 210px;
  }

  .premium-submit-button {
    min-height: 72px;
  }
}


/* HEVES PLATINUM BLACK FINAL POLISH */
/* Nur Farbfeinschliff, keine Layout- oder Funktionsänderung */
:root {
  --champagne: #bfc3c8;
  --champagne-light: #f1f3f5;
  --platinum: #d9dde2;
  --platinum-dark: #8d949c;
}

body {
  background:
    radial-gradient(circle at 76% 18%, rgba(217,221,226,0.08), transparent 28rem),
    radial-gradient(circle at 14% 76%, rgba(217,221,226,0.04), transparent 32rem),
    linear-gradient(145deg, #101114 0%, #060708 45%, #0b0d10 100%);
}

.light-one { background: rgba(217,221,226,0.08); }
.light-two { background: rgba(217,221,226,0.04); }
.light-three { background: rgba(141,148,156,0.05); }

.music-signature__icon, .file-drop-zone__icon {
 background: linear-gradient(145deg,#f1f3f5,#8d949c);
}

.primary, .action-live {
 background: linear-gradient(145deg,#f1f3f5,#bfc3c8,#8d949c);
}

.record-center, .h-emblem {
 background: linear-gradient(145deg,#f1f3f5,#bfc3c8,#8d949c);
}


/* VERSION 17.2 – LINK-ONLY SUBMISSION */
.platforms{grid-template-columns:repeat(3,1fr);}
@media(max-width:860px){.platforms{grid-template-columns:repeat(3,1fr);}}
@media(max-width:620px){.platforms{grid-template-columns:1fr;}}
