    :root {
      color-scheme: dark;

      --bg: #000000;
      --text: #ffffff;
      --muted: #cccccc;
      --muted-soft: rgba(204,204,204,.72);

      --accent: #F38FB1;
      --accent-2: #F7A6C6;
      --accent-soft: rgba(247,166,198,.10);
      --accent-line: rgba(247,166,198,.42);

      --line: rgba(255,255,255,.16);
      --line-soft: rgba(255,255,255,.08);
      --panel: rgba(255,255,255,.025);
      --panel-strong: rgba(255,255,255,.045);
      --input: rgba(255,255,255,.035);

      --warning: #ff9f43;
      --warning-soft: rgba(255,159,67,.13);
      --danger: #ff4d4d;
      --danger-soft: rgba(255,77,77,.12);
      --success: #4ade80;
      --success-soft: rgba(74,222,128,.11);

      --radius-sm: 10px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;

      --content: min(1280px, 100%);
      --wizard: min(1220px, 100%);
    }

    * {
      box-sizing: border-box;
    }

    html {
      background: #000;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at 18% 4%, rgba(247,166,198,.11), transparent 28rem),
        radial-gradient(circle at 82% 16%, rgba(243,143,177,.07), transparent 30rem),
        #000;
      color: var(--text);
      font-family: Poppins, Inter, Arial, sans-serif;
      font-weight: 400;
      letter-spacing: 0;
      padding: 0;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 0%, rgba(247,166,198,.055) 45%, transparent 62%),
        radial-gradient(circle at 50% 110%, rgba(88,60,180,.08), transparent 36rem);
      opacity: .9;
      z-index: -1;
    }

    .shell {
      width: var(--content);
      margin: 0 auto;
      padding: 0 28px 36px;
    }

    header {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 28px;
    }

    .brand {
      display: inline-grid;
      gap: 6px;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--text);
      text-decoration: none;
    }

    .brand:hover {
      border-color: transparent;
    }

    .eyebrow {
      display: inline-block;
      color: var(--accent-2);
      font-size: 12px;
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .brand-title {
      color: var(--text);
      font-size: 22px;
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 26px;
      flex-wrap: wrap;
    }

    a,
    button {
      color: var(--text);
      text-decoration: none;
      font: inherit;
      cursor: pointer;
    }

    nav a,
    nav button {
      border: 0;
      border-radius: 0;
      background: transparent;
      padding: 8px 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .035em;
      text-transform: uppercase;
      position: relative;
    }

    nav a::after,
    nav button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .16s ease;
    }

    nav a:hover,
    nav button:hover {
      color: var(--text);
    }

    nav a:hover::after,
    nav button:hover::after {
      transform: scaleX(1);
    }

    main {
      min-height: calc(100vh - 150px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(0,0,0,.62);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
      padding: clamp(28px, 4vw, 54px);
      overflow: hidden;
    }

    h1 {
      margin: 0 0 22px;
      color: var(--text);
      font-size: clamp(42px, 6vw, 82px);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -.025em;
    }

    h2 {
      margin: 0 0 18px;
      color: var(--text);
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.16;
      font-weight: 750;
      letter-spacing: -.015em;
    }

    p {
      margin: 0 0 22px;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    form {
      display: grid;
      gap: 16px;
      width: 100%;
      max-width: 620px;
      margin-top: 20px;
    }

    label {
      display: grid;
      gap: 9px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
      font-weight: 500;
      letter-spacing: .005em;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 54px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--input);
      color: var(--text);
      padding: 14px 16px;
      font: inherit;
      font-size: 16px;
      line-height: 1.4;
      outline: none;
    }

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

    input::placeholder,
    textarea::placeholder {
      color: rgba(204,204,204,.68);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--accent-line);
      box-shadow: 0 0 0 4px rgba(247,166,198,.08);
    }

    a:not(.brand):not(nav a),
    button:not(nav button) {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.025);
      color: var(--text);
      padding: 10px 14px;
      font-weight: 650;
    }

    a:not(.brand):not(nav a):hover,
    button:not(nav button):hover {
      border-color: var(--accent-line);
      background: rgba(247,166,198,.055);
    }

    button.primary,
    a.primary {
      border-color: var(--accent);
      background: var(--accent);
      color: #060606;
      font-weight: 800;
    }

    button:disabled {
      opacity: .55;
      cursor: not-allowed;
    }

    .message {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.025);
      color: var(--muted);
      white-space: pre-wrap;
      font-size: 14px;
      line-height: 1.65;
    }

    .message.show {
      display: block;
    }

    .message.error {
      border-color: rgba(255,77,77,.45);
      color: #ffd1d1;
      background: var(--danger-soft);
    }

    .message.success {
      border-color: rgba(74,222,128,.42);
      color: #d1ffe2;
      background: var(--success-soft);
    }

    .small-muted,
    .meta {
      color: var(--muted-soft);
      font-size: 14px;
      line-height: 1.65;
    }

    .loading {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .grid,
    .quick-grid,
    .release-card-grid,
    .upload-grid {
      display: grid;
      gap: 18px;
    }

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

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

    .release-card-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 18px;
    }

    .card,
    .quick-card,
    .artist-row,
    .release-card,
    .status-panel,
    .upload-panel,
    .wizard-panel,
    .wizard-sidebar,
    .choice-card {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.022);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.028);
    }

    .card,
    .quick-card,
    .artist-row,
    .status-panel,
    .upload-panel,
    .wizard-panel,
    .wizard-sidebar,
    .choice-card {
      padding: 22px;
    }

    .card:hover,
    .quick-card:hover,
    .artist-row:hover,
    .choice-card:hover {
      border-color: rgba(247,166,198,.22);
    }

    .badge-row,
    .wizard-meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: rgba(255,255,255,.018);
      color: var(--muted);
      padding: 7px 10px;
      font-size: 12px;
      line-height: 1;
      font-weight: 650;
      letter-spacing: .02em;
      white-space: nowrap;
    }

    .badge.brand {
      border-color: rgba(247,166,198,.32);
      color: #ffd7e5;
      background: rgba(247,166,198,.07);
    }

    .badge.good {
      border-color: rgba(74,222,128,.34);
      color: #d1ffe2;
      background: var(--success-soft);
    }

    .badge.warn {
      border-color: rgba(255,159,67,.45);
      color: #ffe1bd;
      background: var(--warning-soft);
    }

    .portal-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
      gap: 22px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .hero-panel {
      padding: clamp(28px, 4vw, 46px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 12% 0%, rgba(247,166,198,.10), transparent 24rem),
        rgba(255,255,255,.018);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .status-panel {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .user-pill {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.018);
      color: var(--muted);
      padding: 10px 12px;
      font-size: 14px;
      overflow-wrap: anywhere;
    }

    .stat-line {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--line-soft);
      padding-bottom: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .stat-line strong {
      color: var(--text);
    }

    .section-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      margin: 30px 0 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .section-heading h2 {
      margin: 0;
    }

    .release-card {
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      padding: 0;
    }

    .release-cover {
      width: 100%;
      aspect-ratio: 1 / 1;
      background:
        radial-gradient(circle at 30% 20%, rgba(247,166,198,.20), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.018));
      border-bottom: 1px solid var(--line-soft);
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.70);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .release-card-body {
      padding: 16px;
      display: grid;
      gap: 10px;
    }

    .release-card-title {
      color: var(--text);
      font-weight: 850;
      line-height: 1.18;
      overflow-wrap: anywhere;
    }

    .empty {
      color: var(--muted);
      border: 1px dashed var(--line);
      border-radius: var(--radius-lg);
      padding: 20px;
      margin-top: 16px;
    }

    .progress-shell {
      width: 100%;
      height: 10px;
      border-radius: 6px;
      overflow: hidden;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      margin-top: 10px;
    }

    .progress-bar {
      width: 0%;
      height: 100%;
      background: var(--accent);
      transition: width .18s ease;
    }

    .upload-result {
      display: grid;
      gap: 6px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
      overflow-wrap: anywhere;
    }

    .choice-shell {
      min-height: min(720px, calc(100vh - 170px));
      display: grid;
      align-content: center;
    }

    .choice-header {
      max-width: 820px;
      margin-bottom: 30px;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .choice-card {
      width: 100%;
      min-height: 190px;
      text-align: center;
      cursor: pointer;
      transition: border-color .15s ease, transform .15s ease, background .15s ease;
    }

    .choice-card:hover {
      transform: translateY(-1px);
      background: rgba(247,166,198,.045);
    }

    .choice-card strong {
      display: block;
      color: var(--text);
      font-size: 28px;
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: -.018em;
    }

    .choice-card span {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
    }

    .choice-card b {
      display: inline-block;
      margin-top: 24px;
      color: var(--accent-2);
    }

    /* Wizard */

    .wizard-top-card {
      width: var(--wizard);
      margin: 0 auto;
      padding: 0 0 34px;
      border: 0;
      border-bottom: 1px solid var(--line);
      background: transparent;
    }

    .wizard-top-card.compact {
      padding-bottom: 34px;
    }

    .wizard-header-inner {
      display: grid;
      gap: 20px;
      justify-items: start;
    }

    .wizard-back-button {
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      color: var(--muted) !important;
      font-size: 14px;
      font-weight: 650;
      text-transform: none;
    }

    .wizard-back-button:hover {
      color: var(--text) !important;
    }

    .wizard-header-main {
      display: grid;
      gap: 12px;
      width: 100%;
    }

    .wizard-header-main h1 {
      margin: 0 0 4px !important;
      max-width: 980px;
      font-size: clamp(44px, 5.6vw, 76px);
      line-height: 1.02;
    }

    .wizard-meta-row.compact {
      margin-top: 8px !important;
      gap: 10px !important;
    }

    .wizard-workspace {
      width: var(--wizard);
      margin: 26px auto 0 !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 320px !important;
      gap: 20px !important;
      align-items: start;
    }

    .wizard-workspace.help-collapsed {
      grid-template-columns: minmax(0, 1fr) 64px !important;
    }

    .wizard-workspace-main {
      min-width: 0;
    }

    .wizard-step-list {
      width: 100% !important;
      margin: 0 !important;
      display: grid !important;
      gap: 14px !important;
    }

    .wizard-step-section {
      width: 100% !important;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.016);
      overflow: hidden;
    }

    .wizard-step-section.is-open {
      border-color: rgba(247,166,198,.25);
      background: rgba(247,166,198,.022);
    }

    .wizard-step-toggle {
      width: 100% !important;
      min-height: 76px;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 18px;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      color: var(--text);
      padding: 22px 24px !important;
      text-align: center;
    }

    .wizard-step-toggle:hover {
      background: rgba(247,166,198,.035) !important;
    }

    .wizard-step-left strong {
      color: var(--text);
      font-size: 18px !important;
      line-height: 1.2;
      font-weight: 800 !important;
    }

    .wizard-step-right {
      display: flex !important;
      align-items: center !important;
      justify-content: flex-end !important;
      gap: 12px !important;
      flex: 0 0 auto;
    }

    .wizard-step-status {
      width: 28px !important;
      height: 28px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 8px !important;
      font-size: 15px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
    }

    .wizard-step-status.is-open {
      color: #ffe1bd !important;
      background: var(--warning-soft) !important;
      border: 1px solid rgba(255,159,67,.48) !important;
    }

    .wizard-step-status.is-complete {
      color: #d1ffe2 !important;
      background: var(--success-soft) !important;
      border: 1px solid rgba(74,222,128,.38) !important;
    }

    .wizard-step-chevron {
      width: 34px !important;
      height: 34px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 10px !important;
      border: 1px solid var(--line) !important;
      background: rgba(255,255,255,.018) !important;
      color: var(--text) !important;
      font-size: 22px !important;
      line-height: 1 !important;
    }

    .wizard-step-content {
      padding: 26px !important;
      border-top: 1px solid var(--line-soft) !important;
    }

    .wizard-help-panel {
      position: sticky !important;
      top: 18px !important;
      margin-top: 0 !important;
      border: 1px solid var(--line) !important;
      border-radius: var(--radius-lg) !important;
      background: rgba(255,255,255,.018) !important;
      padding: 22px !important;
    }

    .wizard-help-panel.is-collapsed {
      width: 64px !important;
      min-width: 64px !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      display: flex !important;
      justify-content: center !important;
      align-items: flex-start !important;
    }

    .wizard-help-toggle {
      width: 44px !important;
      height: 44px !important;
      min-width: 44px !important;
      padding: 0 !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 10px !important;
      color: var(--accent-2) !important;
      font-size: 18px !important;
      font-weight: 900 !important;
      background: rgba(255,255,255,.018) !important;
      border: 1px solid var(--line) !important;
    }

    .wizard-help-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line-soft);
    }

    .wizard-help-head h2 {
      margin: 8px 0 0;
      font-size: 28px;
      line-height: 1.12;
    }

    .wizard-help-close {
      flex: 0 0 auto;
      padding: 8px 10px !important;
      font-size: 12px;
      border-radius: 10px !important;
    }

    .wizard-help-intro {
      color: var(--muted) !important;
      font-size: 15px !important;
      line-height: 1.8 !important;
      margin-bottom: 18px !important;
    }

    .wizard-help-tips {
      display: grid;
      gap: 12px;
    }

    .wizard-help-tip {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      padding: 12px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.014);
    }

    .wizard-help-tip-icon {
      width: 24px !important;
      height: 24px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 8px !important;
      font-size: 14px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
      color: var(--accent-2);
      border: 1px solid rgba(247,166,198,.22);
      background: rgba(247,166,198,.08);
    }

    .wizard-help-tip-icon.is-warning {
      color: #ffe1bd !important;
      background: var(--warning-soft) !important;
      border-color: rgba(255,159,67,.48) !important;
    }

    .wizard-help-tip-icon.is-success {
      color: #d1ffe2 !important;
      background: var(--success-soft) !important;
      border-color: rgba(74,222,128,.38) !important;
    }

    .wizard-help-tip p {
      margin: 0 !important;
      color: var(--muted) !important;
      font-size: 14px !important;
      line-height: 1.65 !important;
    }


    .required-mark {
      color: #ff6b8a;
      font-weight: 900;
      margin-left: 4px;
      font-size: .95em;
      line-height: 1;
      vertical-align: text-top;
    }

    .required-hint {
      color: rgba(255,255,255,.56);
      font-size: 12px;
      line-height: 1.45;
      margin-top: 8px;
    }



    .wizard-cover-tile-wrap {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 16px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .wizard-cover-frame {
      width: min(100%, 320px);
      aspect-ratio: 1 / 1;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      background:
        radial-gradient(circle at 30% 18%, rgba(247,166,198,.14), transparent 32%),
        rgba(255,255,255,.035);
      overflow: hidden;
      position: relative;
      display: grid;
      place-items: center;
      margin: 0 auto;
      box-shadow: 0 22px 70px rgba(0,0,0,.32);
    }

    .wizard-cover-tile {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 24px;
      background: transparent;
      display: grid;
      place-items: center;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      padding: 18px;
      color: var(--text);
      text-align: center;
      transition: transform .18s ease, background .18s ease, opacity .18s ease;
    }

    .wizard-cover-tile:not(.has-cover):hover .wizard-cover-plus {
      transform: translateY(-1px) scale(1.03);
      border-color: rgba(247,166,198,.48);
      background: rgba(247,166,198,.10);
    }

    .wizard-cover-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 18px;
    }

    .wizard-cover-tile.is-loading::after {
      content: "";
      position: absolute;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 3px solid rgba(255,255,255,.28);
      border-top-color: rgba(255,255,255,.92);
      animation: wizardCoverSpin .8s linear infinite;
      z-index: 5;
    }

    .wizard-cover-tile.is-loading::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.34);
      z-index: 4;
    }

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

    .wizard-cover-inline-error {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(248,113,113,.36);
      background: rgba(127,29,29,.18);
      color: #fecaca;
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-cover-inline-error:not(:empty) {
      display: block;
    }

    .wizard-cover-card {
      padding-top: 22px !important;
    }

    .wizard-cover-header {
      margin: 0 0 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.20);
    }

    .wizard-cover-header h3 {
      display: inline-flex;
      align-items: baseline;
      gap: 2px;
      margin: 0 0 12px;
      line-height: 1.15;
    }

    .wizard-cover-header .required-mark {
      margin-left: 0;
      transform: translateY(-1px);
    }

    .wizard-cover-header p {
      margin: 0;
    }


    .wizard-cover-plus {
      width: 74px;
      height: 74px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.18);
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      font-size: 48px;
      line-height: 1;
      color: var(--pink);
      background: rgba(255,255,255,.04);
      box-shadow: 0 18px 50px rgba(0,0,0,.26);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .wizard-cover-empty-title {
      display: block;
      font-weight: 800;
      margin-top: 4px;
    }

    .wizard-cover-empty-subtitle {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .wizard-cover-delete-x {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      padding: 0;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(0,0,0,.62);
      color: #fff;
      font-size: 20px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 3;
      box-shadow: 0 10px 28px rgba(0,0,0,.35);
      transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }

    .wizard-cover-delete-x:hover {
      transform: scale(1.04);
      background: rgba(127,29,29,.88);
      border-color: rgba(248,113,113,.72);
    }

    .wizard-cover-tile.has-cover {
      cursor: default;
      background: transparent;
      padding: 0;
    }

    .wizard-cover-tile.has-cover:hover {
      transform: none;
      background: transparent;
    }


    .wizard-cover-side {
      width: 100%;
      max-width: 420px;
      min-width: 0;
      margin: 0 auto;
      text-align: center;
    }

    .wizard-cover-file-input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .wizard-canvas-layout {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      justify-content: center;
    }

    .wizard-canvas-frame {
      width: 184px;
      aspect-ratio: 9 / 16;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      background:
        radial-gradient(circle at 30% 18%, rgba(247,166,198,.14), transparent 32%),
        rgba(255,255,255,.035);
      overflow: hidden;
      position: relative;
      display: grid;
      place-items: center;
      margin: 0 auto;
      box-shadow: 0 22px 70px rgba(0,0,0,.32);
    }

    .wizard-canvas-frame video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #000;
    }

    .wizard-canvas-empty-button {
      width: 100%;
      height: 100%;
      border: 0;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      display: grid;
      place-items: center;
      padding: 18px;
      text-align: center;
    }

    .wizard-canvas-empty-button:hover .wizard-canvas-plus {
      transform: translateY(-1px) scale(1.03);
      border-color: rgba(247,166,198,.48);
      background: rgba(247,166,198,.10);
    }

    .wizard-canvas-plus {
      width: 74px;
      height: 74px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.18);
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      font-size: 48px;
      line-height: 1;
      color: var(--pink);
      background: rgba(255,255,255,.04);
      box-shadow: 0 18px 50px rgba(0,0,0,.26);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .wizard-canvas-empty-title {
      display: block;
      font-weight: 800;
      margin-top: 4px;
    }

    .wizard-canvas-empty-subtitle {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .wizard-canvas-delete-x {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      padding: 0;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(0,0,0,.68);
      color: #fff;
      font-size: 20px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      box-shadow: 0 10px 28px rgba(0,0,0,.35);
      transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }

    .wizard-canvas-delete-x:hover {
      transform: scale(1.04);
      background: rgba(127,29,29,.88);
      border-color: rgba(248,113,113,.72);
    }

    .wizard-canvas-side {
      width: 100%;
      max-width: 420px;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }



    .wizard-canvas-upload-state {
      display: none;
      width: 100%;
      max-width: 360px;
      margin-top: 0;
      padding: 14px 15px;
      border: 1px solid rgba(247,166,198,.24);
      border-radius: 18px;
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.16), transparent 38%),
        rgba(255,255,255,.035);
      box-shadow: 0 18px 50px rgba(0,0,0,.24);
    }

    .wizard-canvas-upload-state.is-visible {
      display: block;
    }

    .wizard-canvas-progress-shell {
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
      position: relative;
    }

    .wizard-canvas-progress-bar {
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(247,166,198,.88), rgba(255,255,255,.9));
      position: relative;
      overflow: hidden;
      transition: width .22s ease;
    }

    .wizard-canvas-progress-bar::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-100%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: wizardCanvasProgressShine 1.15s linear infinite;
    }

    .wizard-canvas-message {
      display: none;
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-canvas-message:not(:empty) {
      display: block;
    }

    /*
     * Canvas-Validierungsfehler sollen klar als Fehler erkennbar sein.
     * Andere Motion-Art-Hinweise behalten weiterhin ihre normale Farbe.
     */
    #wizardCanvasUploadResult.wizard-canvas-message:not(:empty) {
      color: #ff8f8f;
      font-weight: 700;
    }

    @keyframes wizardCanvasProgressShine {
      to {
        transform: translateX(100%);
      }
    }

    @media (max-width: 720px) {
      .wizard-canvas-frame {
        width: min(100%, 220px);
      }

      .wizard-canvas-side {
        min-width: 100%;
      }
    }

    .wizard-motion-root {
      margin-top: 18px;
    }

    .wizard-motion-choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 16px;
    }

    .wizard-motion-choice-card {
      width: 100%;
      min-height: 78px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 20px;
      background:
        radial-gradient(circle at 22% 0%, rgba(247,166,198,.12), transparent 36%),
        rgba(255,255,255,.035);
      color: var(--text);
      padding: 16px;
      text-align: center;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .wizard-motion-choice-card:hover,
    .wizard-motion-choice-card.is-selected {
      transform: translateY(-1px);
      border-color: rgba(247,166,198,.52);
      background:
        radial-gradient(circle at 22% 0%, rgba(247,166,198,.18), transparent 38%),
        rgba(255,255,255,.05);
    }

    .wizard-motion-choice-card strong {
      font-size: 15px;
      line-height: 1.25;
    }

    .wizard-motion-choice-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-motion-panel {
      display: none;
    }

    .wizard-motion-panel.is-visible {
      display: block;
    }

    .wizard-motion-slot {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 22px;
      padding: 16px;
      margin-top: 12px;
      background:
        radial-gradient(circle at 28% 0%, rgba(247,166,198,.10), transparent 34%),
        rgba(255,255,255,.025);
    }

    .wizard-motion-slot-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .wizard-motion-slot-head h4 {
      margin: 0 0 6px;
      font-size: 16px;
    }

    .wizard-motion-slot-head p {
      margin: 0;
    }

    .wizard-motion-drop {
      margin-top: 14px;
      display: flex;
      justify-content: center;
    }

    .wizard-motion-upload-button {
      width: min(100%, 260px);
      min-height: 188px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      background:
        radial-gradient(circle at 30% 18%, rgba(247,166,198,.14), transparent 34%),
        rgba(255,255,255,.035);
      color: var(--text);
      display: grid;
      place-items: center;
      padding: 18px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 22px 70px rgba(0,0,0,.24);
    }

    .wizard-motion-upload-button:hover .wizard-canvas-plus {
      transform: translateY(-1px) scale(1.03);
      border-color: rgba(247,166,198,.48);
      background: rgba(247,166,198,.10);
    }

    .wizard-motion-file-pill {
      width: min(100%, 360px);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      padding: 13px 14px;
      background: rgba(255,255,255,.035);
      display: flex;
      flex-direction: column;
      gap: 5px;
      text-align: center;
    }

    .wizard-motion-file-pill span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
      word-break: break-word;
    }

    .wizard-motion-small-delete {
      min-height: 34px !important;
      padding: 8px 12px !important;
      border-radius: 12px !important;
      font-size: 13px !important;
    }

    .wizard-upload-cancel-button {
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 34px;
      margin: 10px auto 0;
      padding: 8px 12px;
      border: 1px solid rgba(248, 113, 113, 0.45);
      border-radius: 12px;
      background: rgba(127, 29, 29, 0.18);
      color: #fecaca;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
    }

    .wizard-upload-cancel-button:hover:not(:disabled) {
      border-color: rgba(248, 113, 113, 0.75);
      background: rgba(127, 29, 29, 0.28);
    }

    .wizard-upload-cancel-button:disabled {
      cursor: wait;
      opacity: 0.75;
    }

    .wizard-upload-cancel-notice {
      width: min(520px, 100%);
      margin: 10px auto 0;
      padding: 10px 12px;
      border: 1px solid rgba(251, 146, 60, 0.45);
      border-radius: 14px;
      background: rgba(251, 146, 60, 0.12);
      color: #fed7aa;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.4;
      text-align: center;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    }

    .wizard-motion-upload-state {
      display: none;
      width: min(100%, 360px);
      margin: 14px auto 0;
      padding: 14px 15px;
      border: 1px solid rgba(247,166,198,.24);
      border-radius: 18px;
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.16), transparent 38%),
        rgba(255,255,255,.035);
      box-shadow: 0 18px 50px rgba(0,0,0,.24);
    }

    .wizard-motion-upload-state.is-visible {
      display: block;
    }

    .wizard-motion-request-box {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 22px;
      padding: 16px;
      background:
        radial-gradient(circle at 24% 0%, rgba(247,166,198,.12), transparent 34%),
        rgba(255,255,255,.025);
    }

    .wizard-motion-request-box h4 {
      margin: 0 0 8px;
    }

    .wizard-motion-material-upload-button {
      width: min(100%, 320px);
      min-height: 210px;
      margin: 16px auto 0;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      background:
        radial-gradient(circle at 30% 18%, rgba(247,166,198,.14), transparent 34%),
        rgba(255,255,255,.035);
      color: var(--text);
      display: grid;
      place-items: center;
      padding: 18px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 22px 70px rgba(0,0,0,.24);
    }

    .wizard-motion-material-upload-button:hover .wizard-canvas-plus {
      transform: translateY(-1px) scale(1.03);
      border-color: rgba(247,166,198,.48);
      background: rgba(247,166,198,.10);
    }

    .wizard-motion-material-summary {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .wizard-motion-material-summary span {
      color: var(--muted);
      font-size: 13px;
    }

    .wizard-motion-material-empty {
      margin-top: 12px;
      border: 1px dashed rgba(255,255,255,.16);
      border-radius: 16px;
      padding: 14px;
      color: var(--muted);
      text-align: center;
      background: rgba(255,255,255,.02);
    }

    .wizard-motion-material-list {
      margin-top: 12px;
      display: grid;
      gap: 10px;
    }

    .wizard-motion-material-item {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding: 12px 13px;
      background: rgba(255,255,255,.03);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .wizard-motion-material-item-main {
      min-width: 0;
      flex: 1;
    }

    .wizard-motion-material-item strong {
      display: block;
      word-break: break-word;
      font-size: 14px;
    }

    .wizard-motion-material-item span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .wizard-motion-material-delete-x {
      width: 30px !important;
      height: 30px !important;
      min-height: 30px !important;
      padding: 0 !important;
      border-radius: 999px !important;
      border: 1px solid rgba(255,255,255,.20) !important;
      background: rgba(255,255,255,.07) !important;
      color: rgba(255,255,255,.84) !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 18px !important;
      line-height: 1 !important;
      cursor: pointer !important;
      flex: 0 0 auto;
    }

    .wizard-motion-material-delete-x:hover {
      border-color: rgba(247,166,198,.55) !important;
      background: rgba(247,166,198,.13) !important;
      color: #ffffff !important;
    }


    @media (max-width: 720px) {
      .wizard-motion-choice-grid {
        grid-template-columns: 1fr;
      }
    }

    .wizard-submit-field-error-icon {
      display: none;
      width: 22px;
      height: 22px;
      margin-left: 6px;
      border-radius: 7px;
      align-items: center;
      justify-content: center;
      color: #ffe1bd;
      background: rgba(255,159,67,.16);
      border: 1px solid rgba(255,159,67,.56);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      vertical-align: middle;
      box-shadow: 0 0 0 1px rgba(255,159,67,.08);
    }

    .wizard-submit-field-error-icon.is-visible {
      display: inline-flex;
    }

    .wizard-submit-field-error-icon[title] {
      cursor: help;
    }

    .field-label-text {
      display: inline-flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 7px;
    }

    .field-label-text .required-mark {
      margin-left: 0;
    }


    .wizard-top-save-button {
      min-height: 34px !important;
      padding: 8px 12px !important;
      border-radius: 10px !important;
      font-size: 13px !important;
      line-height: 1 !important;
    }

    .wizard-search-select {
      position: relative;
      width: 100%;
    }

    .wizard-search-select-trigger {
      width: 100% !important;
      min-height: 56px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 12px !important;
      text-align: left !important;
      border: 1px solid rgba(255,255,255,.30) !important;
      border-radius: 14px !important;
      background: rgba(255,255,255,.035) !important;
      color: var(--text) !important;
      padding: 12px 14px !important;
      font: inherit !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
    }

    .wizard-search-select-trigger:hover,
    .wizard-search-select.is-open .wizard-search-select-trigger {
      border-color: rgba(247,166,198,.92) !important;
      box-shadow: 0 0 0 1px rgba(247,166,198,.16) !important;
    }

    .wizard-search-select-value {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: var(--text);
    }

    .wizard-search-select-placeholder {
      color: rgba(255,255,255,.48);
    }

    .wizard-search-select-chevron {
      flex: 0 0 auto;
      color: var(--accent-2);
      font-weight: 900;
      opacity: .9;
    }

    .wizard-search-select-panel {
      position: absolute;
      z-index: 35;
      left: 0;
      right: 0;
      top: calc(100% + 8px);
      display: none;
      border: 1px solid rgba(247,166,198,.42);
      border-radius: 16px;
      background: #121217;
      box-shadow: 0 18px 54px rgba(0,0,0,.55);
      padding: 10px;
    }

    .wizard-search-select.is-open .wizard-search-select-panel {
      display: block;
    }

    .wizard-search-select-search {
      width: 100% !important;
      min-height: 42px !important;
      margin: 0 0 8px !important;
      border-radius: 12px !important;
      border: 1px solid rgba(255,255,255,.24) !important;
      background: rgba(255,255,255,.04) !important;
      color: var(--text) !important;
      padding: 10px 12px !important;
    }

    .wizard-search-select-options {
      max-height: 260px;
      overflow: auto;
      display: grid;
      gap: 6px;
      padding-right: 2px;
    }

    .wizard-search-select-option {
      width: 100% !important;
      min-height: 42px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 12px !important;
      border-radius: 12px !important;
      border: 1px solid transparent !important;
      background: transparent !important;
      color: var(--text) !important;
      padding: 10px 11px !important;
      text-align: left !important;
      font: inherit !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
    }

    .wizard-search-select-option:hover,
    .wizard-search-select-option.is-selected {
      border-color: rgba(247,166,198,.42) !important;
      background: rgba(247,166,198,.10) !important;
    }

    .wizard-search-select-option-code {
      flex: 0 0 auto;
      color: rgba(255,255,255,.48);
      font-size: 12px;
    }

    .wizard-search-select-clear {
      color: rgba(255,255,255,.62) !important;
      border-color: rgba(255,159,67,.20) !important;
      background: rgba(255,159,67,.055) !important;
    }

    .wizard-search-select-clear:hover {
      color: #ffe1bd !important;
      border-color: rgba(255,159,67,.48) !important;
      background: rgba(255,159,67,.12) !important;
    }

    .wizard-search-select-empty {
      padding: 10px 12px;
      color: rgba(255,255,255,.54);
      font-size: 13px;
      display: none;
    }


    .wizard-step-section.is-open,
    .wizard-step-section.is-open .wizard-step-content,
    #basic-genre.card {
      overflow: visible !important;
    }

    #basic-genre {
      position: relative;
      z-index: 5;
    }

    #basic-genre .wizard-search-select.is-open {
      z-index: 60;
    }

    #basic-genre .wizard-search-select-panel {
      z-index: 80;
      max-height: 360px;
    }

    #basic-genre .wizard-search-select-options {
      max-height: 285px;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    #basic-genre .wizard-search-select-option[style*="display: none"] {
      display: none !important;
    }

    .wizard-step-content label {
      font-size: 16px !important;
      color: var(--muted) !important;
    }

    .artist-chip-editor .artist-chip-inputbox,
    .artist-chip-inputbox {
      min-height: 56px !important;
      border-radius: var(--radius-md) !important;
    }

    .artist-chip-editor input,
    .artist-chip-input {
      font-size: 16px !important;
    }

    .artist-chip-editor span,
    .artist-chip-list span {
      font-size: 15px !important;
    }



    /* Phase 4.5: Wizard Header reduzieren + Trackliste breiter */
    .wizard-top-bar.compact {
      width: min(1220px, 100%);
      margin: 0 auto 18px;
      padding: 0 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .wizard-top-bar.compact .wizard-back-button {
      flex: 0 0 auto;
    }

    .wizard-top-bar.compact .wizard-meta-row {
      flex: 1 1 auto;
      justify-content: flex-end;
      margin: 0;
    }

    .wizard-workspace.help-collapsed .wizard-step-content .card,
    .wizard-workspace.help-collapsed .wizard-step-content form {
      max-width: 1000px !important;
    }

    .wizard-workspace.help-collapsed [data-wizard-section="tracks"] .wizard-step-content .card,
    [data-wizard-section="tracks"] .wizard-step-content .card {
      max-width: 1000px !important;
      width: 100% !important;
    }

    @media (max-width: 760px) {
      .wizard-top-bar.compact {
        align-items: flex-start;
        flex-direction: column;
      }

      .wizard-top-bar.compact .wizard-meta-row {
        justify-content: flex-start;
      }
    }


    /* Phase 4.4O: Dashboard polish nach CSS Reset */

    .portal-hero {
      gap: 26px;
      margin-bottom: 32px;
    }

    .hero-panel {
      position: relative;
      min-height: 420px;
      display: grid;
      align-content: center;
      background:
        linear-gradient(115deg, rgba(247,166,198,.075), transparent 38%),
        radial-gradient(circle at 8% 0%, rgba(247,166,198,.12), transparent 24rem),
        rgba(255,255,255,.012);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(247,166,198,.38), transparent);
      pointer-events: none;
    }

    .hero-panel .eyebrow {
      margin-bottom: 14px;
    }

    .hero-panel h1 {
      letter-spacing: .002em;
      line-height: 1.08;
      margin-bottom: 28px;
    }

    .hero-panel p {
      max-width: 760px;
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255,255,255,.82);
    }

    .hero-actions {
      margin-top: 30px;
      gap: 14px;
    }

    .hero-actions a,
    .hero-actions button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 15px;
      letter-spacing: .01em;
    }

    .status-panel {
      min-height: 420px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.008));
    }

    .user-pill {
      margin-bottom: 10px;
      color: var(--text);
      border-color: rgba(255,255,255,.20);
    }

    .stat-line {
      padding: 14px 0;
      font-size: 15px;
      color: rgba(204,204,204,.82);
    }

    .stat-line strong {
      font-weight: 800;
      letter-spacing: .01em;
    }

    .section-heading {
      margin-top: 34px;
      padding-bottom: 18px;
      border-bottom-color: rgba(255,255,255,.20);
    }

    .section-heading h2 {
      letter-spacing: .002em;
    }

    .section-heading p,
    .card > p,
    .small-muted {
      color: rgba(204,204,204,.78);
    }

    .card {
      background:
        linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
    }

    .release-card {
      background: rgba(255,255,255,.014);
    }

    .release-card-title {
      font-size: 17px;
      letter-spacing: .002em;
    }

    .quick-card strong,
    .artist-row strong {
      letter-spacing: .003em;
    }

    .empty {
      color: rgba(204,204,204,.78);
      background: rgba(255,255,255,.01);
    }


    /* Phase 4.4P adjusted: hellere Ränder, weniger leere Hilfe-Spalte, klarere Untermenüs */

    :root {
      --line: rgba(255,255,255,.24);
      --line-soft: rgba(255,255,255,.13);
      --line-bright: rgba(255,255,255,.38);
      --pink-line: rgba(247,166,198,.52);
      --pink-line-bright: rgba(247,166,198,.82);
      --pink-hover: rgba(247,166,198,.085);
    }

    main {
      border-color: rgba(255,255,255,.24);
    }

    .card,
    .quick-card,
    .artist-row,
    .release-card,
    .status-panel,
    .upload-panel,
    .wizard-panel,
    .wizard-sidebar,
    .choice-card,
    .wizard-step-section,
    .wizard-help-panel {
      border-color: var(--line);
    }

    .card:hover,
    .quick-card:hover,
    .artist-row:hover,
    .release-card:hover,
    .choice-card:hover,
    .wizard-step-section:hover {
      border-color: var(--pink-line-bright);
      background:
        linear-gradient(180deg, rgba(247,166,198,.052), rgba(255,255,255,.010));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 0 0 1px rgba(247,166,198,.10);
    }

    a:not(.brand):not(nav a):hover,
    button:not(nav button):hover {
      border-color: var(--pink-line-bright);
      background: var(--pink-hover);
      box-shadow: 0 0 0 1px rgba(247,166,198,.10);
    }

    input,
    select,
    textarea {
      border-color: rgba(255,255,255,.26);
    }

    input:hover,
    select:hover,
    textarea:hover {
      border-color: rgba(247,166,198,.46);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--pink-line-bright);
      box-shadow: 0 0 0 4px rgba(247,166,198,.12);
    }

    .wizard-step-section {
      border-color: rgba(247,166,198,.28);
      background:
        linear-gradient(180deg, rgba(247,166,198,.024), rgba(255,255,255,.006));
    }

    .wizard-step-section.is-open {
      border-color: rgba(247,166,198,.58);
      background:
        linear-gradient(180deg, rgba(247,166,198,.048), rgba(255,255,255,.010));
    }

    .wizard-step-toggle:hover {
      background: rgba(247,166,198,.065) !important;
    }

    .wizard-step-content {
      border-top-color: rgba(247,166,198,.24) !important;
    }

    .wizard-step-chevron {
      border-color: rgba(255,255,255,.30) !important;
    }

    .wizard-step-toggle:hover .wizard-step-chevron {
      border-color: var(--pink-line-bright) !important;
      background: rgba(247,166,198,.075) !important;
    }

    /* Grundinfos-Untermenü: klarere Kanten, aber innen ruhig */
    .wizard-step-content .quick-card {
      border: 1px solid rgba(255,255,255,.24) !important;
      background: rgba(255,255,255,.024) !important;
      border-radius: 12px !important;
      min-height: 46px;
      padding: 12px 38px 12px 14px !important;
      position: relative;
    }

    .wizard-step-content .quick-card:hover {
      border-color: var(--pink-line-bright) !important;
      background: rgba(247,166,198,.070) !important;
    }



    .wizard-step-content .quick-card strong {
      font-size: 15px;
      line-height: 1.25;
    }

    .wizard-step-content .card,
    .wizard-step-content .artist-row,
    .wizard-step-content .upload-panel {
      border-color: rgba(255,255,255,.24);
    }

    .wizard-step-content .card:hover,
    .wizard-step-content .artist-row:hover {
      border-color: rgba(247,166,198,.48);
    }

    /* Hilfe eingeklappt: schmaler, näher und wirklich mittig */
    .wizard-workspace.help-collapsed {
      grid-template-columns: minmax(0, 1fr) 50px !important;
      gap: 10px !important;
    }

    .wizard-help-panel.is-collapsed {
      width: 50px !important;
      min-width: 50px !important;
      display: flex !important;
      justify-content: center !important;
      align-items: flex-start !important;
      padding: 0 !important;
      margin-top: 0 !important;
      border: 0 !important;
      background: transparent !important;
    }

    .wizard-help-toggle {
      margin-top: 0 !important;
      width: 42px !important;
      height: 42px !important;
      min-width: 42px !important;
      display: inline-grid !important;
      place-items: center !important;
      padding: 0 !important;
      border-radius: 10px !important;
      border-color: rgba(255,255,255,.30) !important;
      background: rgba(255,255,255,.018) !important;
      color: var(--accent-2) !important;
      font-size: 18px !important;
      font-weight: 900 !important;
    }

    .wizard-help-toggle:hover {
      border-color: var(--pink-line-bright) !important;
      background: rgba(247,166,198,.08) !important;
      color: #fff !important;
    }

    .wizard-help-panel {
      border-color: rgba(255,255,255,.22) !important;
    }

    .wizard-help-panel:hover {
      border-color: rgba(247,166,198,.46) !important;
    }

    .wizard-help-tip {
      border-color: rgba(255,255,255,.18);
    }

    .wizard-help-tip:hover {
      border-color: rgba(247,166,198,.44);
      background: rgba(247,166,198,.045);
    }

    .badge {
      border-color: rgba(255,255,255,.26);
    }

    .badge.brand {
      border-color: rgba(247,166,198,.48);
    }

    .badge.brand:hover {
      border-color: var(--pink-line-bright);
    }

    @media (min-width: 981px) {
      .wizard-workspace.help-collapsed {
        grid-template-columns: minmax(0, 1fr) 50px !important;
        gap: 10px !important;
      }
    }


    /* Phase 4.4Q: Help Toggle exakt ausrichten + Mobile sauber machen */

    @media (min-width: 981px) {
      .wizard-workspace.help-collapsed {
        grid-template-columns: minmax(0, 1fr) 56px !important;
        gap: 14px !important;
        align-items: start !important;
      }

      .wizard-workspace.help-collapsed .wizard-workspace-main {
        min-width: 0 !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-panel.is-collapsed {
        width: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        position: sticky !important;
        top: 18px !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-toggle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,.34) !important;
        background: rgba(255,255,255,.018) !important;
        color: var(--accent-2) !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-align: center !important;
        transform: none !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-toggle:hover {
        border-color: rgba(247,166,198,.86) !important;
        background: rgba(247,166,198,.09) !important;
        color: #fff !important;
      }
    }


    /* Phase 4.4R: Eingeklappte Hilfe aus dem Grid lösen */

    @media (min-width: 981px) {
      .wizard-workspace.help-collapsed {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0 !important;
        padding-right: 68px !important;
        align-items: start !important;
      }

      .wizard-workspace.help-collapsed .wizard-workspace-main {
        min-width: 0 !important;
        width: 100% !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-panel.is-collapsed {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        place-items: center !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-toggle {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        padding: 0 !important;
        margin: 0 !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,.36) !important;
        background: rgba(255,255,255,.018) !important;
        color: var(--accent-2) !important;
        font-size: 19px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-align: center !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-toggle:hover {
        border-color: rgba(247,166,198,.90) !important;
        background: rgba(247,166,198,.09) !important;
        color: #fff !important;
      }
    }

    /* Hilfe offen: ruhiger, kleiner, mehr Sidepanel statt Hauptinhalt */
    .wizard-help-panel:not(.is-collapsed) {
      padding: 20px !important;
    }

    .wizard-help-head {
      margin-bottom: 16px !important;
      padding-bottom: 14px !important;
    }

    .wizard-help-head h2 {
      font-size: 24px !important;
      line-height: 1.15 !important;
      margin-top: 7px !important;
    }

    .wizard-help-intro {
      font-size: 14px !important;
      line-height: 1.75 !important;
      margin-bottom: 16px !important;
    }

    .wizard-help-tip {
      grid-template-columns: 26px minmax(0, 1fr) !important;
      padding: 11px !important;
      gap: 10px !important;
    }

    .wizard-help-tip p {
      font-size: 13px !important;
      line-height: 1.6 !important;
    }

    .wizard-help-tip-icon {
      width: 22px !important;
      height: 22px !important;
      font-size: 13px !important;
    }

    .wizard-help-close {
      font-size: 12px !important;
      padding: 8px 10px !important;
    }


    /* Phase 4.4S: Grundinfos Titel & Artist Polish */

    /* Wenn Hilfe eingeklappt ist, soll der Inhalt sichtbar breiter wirken */
    .wizard-workspace.help-collapsed .wizard-step-content {
      padding-right: 34px !important;
    }

    .wizard-workspace.help-collapsed .wizard-step-content .card,
    .wizard-workspace.help-collapsed .wizard-step-content form {
      max-width: 760px !important;
    }

    .wizard-step-content form {
      max-width: 720px !important;
      width: 100% !important;
    }

    .wizard-step-content .card {
      max-width: 760px;
    }

    /* Untermenü links: heller Rahmen + rosa Hover/Fokus */
    .wizard-step-content .quick-card {
      border: 1px solid rgba(255,255,255,.30) !important;
      background: rgba(255,255,255,.026) !important;
    }

    .wizard-step-content .quick-card:hover,
    .wizard-step-content .quick-card:focus,
    .wizard-step-content .quick-card:focus-visible {
      border-color: rgba(247,166,198,.88) !important;
      background: rgba(247,166,198,.075) !important;
      outline: none !important;
      box-shadow: 0 0 0 1px rgba(247,166,198,.16) !important;
    }

    /* Normale Felder: grauer Rand, beim Bearbeiten rosa */
    .wizard-step-content input,
    .wizard-step-content select,
    .wizard-step-content textarea,
    .wizard-step-content .artist-chip-inputbox {
      border: 1px solid rgba(255,255,255,.30) !important;
      background: rgba(255,255,255,.035) !important;
      border-radius: 14px !important;
    }

    .wizard-step-content input:hover,
    .wizard-step-content select:hover,
    .wizard-step-content textarea:hover,
    .wizard-step-content .artist-chip-inputbox:hover {
      border-color: rgba(247,166,198,.55) !important;
    }

    .wizard-step-content input:focus,
    .wizard-step-content select:focus,
    .wizard-step-content textarea:focus,
    .wizard-step-content .artist-chip-inputbox:focus-within {
      border-color: rgba(247,166,198,.92) !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.12) !important;
      outline: none !important;
    }

    /* Labels deutlich lesbarer */
    .wizard-step-content label {
      font-size: 17px !important;
      line-height: 1.45 !important;
      color: rgba(255,255,255,.82) !important;
      letter-spacing: .002em !important;
      font-weight: 500 !important;
    }

    /* Title & Artist Formkarte etwas breiter und ruhiger */
    .wizard-step-content .card h2,
    .wizard-step-content .card h3 {
      margin-bottom: 22px !important;
    }

    .wizard-step-content input[name="title"] {
      font-size: 17px !important;
      font-weight: 500 !important;
    }

    /* Chip Editor: volle Breite, schönes Umbrechen */
    .artist-chip-editor,
    .wizard-step-content .artist-chip-editor {
      width: 100% !important;
      display: grid !important;
      gap: 8px !important;
    }

    .artist-chip-inputbox,
    .wizard-step-content .artist-chip-inputbox {
      width: 100% !important;
      min-height: 58px !important;
      height: auto !important;
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 10px 12px !important;
      overflow: visible !important;
    }

    .artist-chip-list,
    .wizard-step-content .artist-chip-list {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
      align-items: center !important;
      min-width: 0 !important;
      max-width: 100% !important;
    }

    .artist-chip-input,
    .wizard-step-content .artist-chip-input {
      flex: 1 1 260px !important;
      min-width: 220px !important;
      width: auto !important;
      height: 34px !important;
      min-height: 34px !important;
      font-size: 16px !important;
      color: var(--text) !important;
      background: transparent !important;
    }

    .artist-chip-list span,
    .wizard-step-content .artist-chip-list span {
      border-radius: 12px !important;
      font-size: 15px !important;
      line-height: 1.35 !important;
      padding: 7px 10px !important;
      background: rgba(255,255,255,.075) !important;
      border-color: rgba(255,255,255,.24) !important;
      max-width: 100% !important;
    }

    .artist-chip-list button,
    .wizard-step-content .artist-chip-list button {
      min-width: 0 !important;
      width: auto !important;
      height: auto !important;
      padding: 0 0 0 2px !important;
      border: 0 !important;
      background: transparent !important;
      color: var(--text) !important;
      font-size: 16px !important;
      line-height: 1 !important;
      box-shadow: none !important;
    }


    /* Phase 4.4T: Chip-Editor zurück zu natürlicher Feldoptik + Menürahmen */

    /* Mehr Luft zwischen den Feldern in Titel & Artist */
    .wizard-step-content label {
      margin-top: 18px !important;
      margin-bottom: 8px !important;
      font-size: 16px !important;
      line-height: 1.45 !important;
      color: rgba(255,255,255,.82) !important;
    }

    .wizard-step-content label:first-of-type {
      margin-top: 0 !important;
    }

    .wizard-step-content input[name="title"] {
      margin-bottom: 18px !important;
    }

    .artist-chip-editor,
    .wizard-step-content .artist-chip-editor {
      width: 100% !important;
      display: block !important;
      margin: 0 0 20px !important;
    }

    .artist-chip-inputbox,
    .wizard-step-content .artist-chip-inputbox {
      width: 100% !important;
      min-height: 54px !important;
      height: auto !important;
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      align-content: center !important;
      gap: 7px !important;
      padding: 8px 10px !important;
      border: 1px solid rgba(255,255,255,.30) !important;
      border-radius: 14px !important;
      background: rgba(255,255,255,.035) !important;
      overflow: visible !important;
    }

    .artist-chip-inputbox:hover,
    .wizard-step-content .artist-chip-inputbox:hover {
      border-color: rgba(247,166,198,.55) !important;
    }

    .artist-chip-inputbox:focus-within,
    .wizard-step-content .artist-chip-inputbox:focus-within {
      border-color: rgba(247,166,198,.92) !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.12) !important;
    }

    .artist-chip-list,
    .wizard-step-content .artist-chip-list {
      display: flex !important;
      flex: 0 1 auto !important;
      flex-wrap: wrap !important;
      gap: 7px !important;
      align-items: center !important;
      min-width: 0 !important;
      max-width: 100% !important;
    }

    .artist-chip-input,
    .wizard-step-content .artist-chip-input {
      flex: 1 1 160px !important;
      min-width: 130px !important;
      width: auto !important;
      height: 30px !important;
      min-height: 30px !important;
      padding: 2px 4px !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      font-size: 16px !important;
      line-height: 1.2 !important;
      color: var(--text) !important;
    }

    .artist-chip-input:focus,
    .wizard-step-content .artist-chip-input:focus {
      border: 0 !important;
      box-shadow: none !important;
      outline: none !important;
    }

    .artist-chip-list span,
    .wizard-step-content .artist-chip-list span {
      display: inline-flex !important;
      align-items: center !important;
      gap: 7px !important;
      max-width: 100% !important;
      padding: 6px 9px !important;
      border-radius: 11px !important;
      border: 1px solid rgba(255,255,255,.22) !important;
      background: rgba(255,255,255,.075) !important;
      color: var(--text) !important;
      font-size: 14px !important;
      line-height: 1.25 !important;
      white-space: nowrap !important;
    }

    .artist-chip-list button,
    .wizard-step-content .artist-chip-list button {
      min-width: 0 !important;
      width: auto !important;
      height: auto !important;
      padding: 0 0 0 2px !important;
      border: 0 !important;
      background: transparent !important;
      color: var(--text) !important;
      font-size: 15px !important;
      line-height: 1 !important;
      box-shadow: none !important;
    }

    /* Untermenü links: sichtbarer Rand und sauberer rosa Hover */
    .wizard-step-content aside a {
      border: 1px solid rgba(255,255,255,.28) !important;
      background: rgba(255,255,255,.024) !important;
      color: var(--text) !important;
      border-radius: 12px !important;
      transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    }

    .wizard-step-content aside a:hover,
    .wizard-step-content aside a:focus-visible {
      border-color: rgba(247,166,198,.90) !important;
      background: rgba(247,166,198,.075) !important;
      box-shadow: 0 0 0 1px rgba(247,166,198,.16) !important;
      outline: none !important;
    }


    /* Formkarte etwas mehr Luft */
    .wizard-step-content .card {
      padding: 28px !important;
    }


    /* Phase 4.4U: Chips nur einfach wrappen + Placeholder ruhiger */

    .artist-chip-list > span,
    .wizard-step-content .artist-chip-list > span {
      display: inline-flex !important;
      align-items: center !important;
      gap: 7px !important;
      max-width: 100% !important;
      padding: 6px 9px !important;
      border-radius: 11px !important;
      border: 1px solid rgba(255,255,255,.22) !important;
      background: rgba(255,255,255,.075) !important;
      color: var(--text) !important;
      font-size: 14px !important;
      line-height: 1.25 !important;
      white-space: nowrap !important;
    }

    .artist-chip-list > span > span,
    .wizard-step-content .artist-chip-list > span > span {
      border: 0 !important;
      background: transparent !important;
      padding: 0 !important;
      border-radius: 0 !important;
      font-size: inherit !important;
      line-height: inherit !important;
      color: inherit !important;
    }

    .artist-chip-input::placeholder,
    .wizard-step-content .artist-chip-input::placeholder,
    .wizard-step-content input[name="title"]::placeholder {
      color: transparent !important;
      opacity: 0 !important;
    }

    .wizard-save-status {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 7px 10px;
      border-radius: 9px;
      border: 1px solid rgba(255,255,255,.18);
      color: rgba(204,204,204,.78);
      background: rgba(255,255,255,.012);
      font-size: 12px;
      line-height: 1;
      font-weight: 650;
      letter-spacing: .01em;
      white-space: nowrap;
    }

    .wizard-save-status.is-saving {
      border-color: rgba(255,159,67,.45);
      color: #ffe1bd;
      background: rgba(255,159,67,.10);
    }

    .wizard-save-status.is-saved {
      border-color: rgba(74,222,128,.34);
      color: #d1ffe2;
      background: rgba(74,222,128,.08);
    }

    .wizard-save-status.is-error {
      border-color: rgba(255,77,77,.45);
      color: #ffd1d1;
      background: rgba(255,77,77,.10);
    }


    /* Phase 4.4V: neuer sauberer Artist Chip Editor */

    .artist-chip-editor,
    .wizard-step-content .artist-chip-editor {
      width: 100% !important;
      display: block !important;
      margin: 0 0 24px !important;
    }

    .artist-chip-inputbox,
    .wizard-step-content .artist-chip-inputbox {
      width: 100% !important;
      min-height: 56px !important;
      height: auto !important;
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 9px 10px !important;
      border: 1px solid rgba(255,255,255,.30) !important;
      border-radius: 14px !important;
      background: rgba(255,255,255,.035) !important;
      overflow: visible !important;
    }

    .artist-chip-inputbox:hover,
    .wizard-step-content .artist-chip-inputbox:hover {
      border-color: rgba(247,166,198,.55) !important;
    }

    .artist-chip-inputbox:focus-within,
    .wizard-step-content .artist-chip-inputbox:focus-within {
      border-color: rgba(247,166,198,.92) !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.12) !important;
    }

    .artist-chip-list,
    .wizard-step-content .artist-chip-list {
      display: contents !important;
    }

    .artist-chip-pill,
    .wizard-step-content .artist-chip-pill {
      display: inline-flex !important;
      align-items: center !important;
      gap: 8px !important;
      max-width: 100% !important;
      padding: 7px 10px !important;
      border-radius: 11px !important;
      border: 1px solid rgba(255,255,255,.26) !important;
      background: rgba(255,255,255,.075) !important;
      color: var(--text) !important;
      font-size: 15px !important;
      line-height: 1.25 !important;
      white-space: nowrap !important;
    }

    .artist-chip-pill-text,
    .wizard-step-content .artist-chip-pill-text {
      border: 0 !important;
      background: transparent !important;
      padding: 0 !important;
      border-radius: 0 !important;
      color: inherit !important;
      font-size: inherit !important;
      line-height: inherit !important;
    }

    .artist-chip-remove,
    .wizard-step-content .artist-chip-remove {
      width: auto !important;
      min-width: 0 !important;
      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: var(--text) !important;
      font-size: 16px !important;
      line-height: 1 !important;
      font-weight: 900 !important;
    }

    .artist-chip-input,
    .wizard-step-content .artist-chip-input {
      flex: 1 1 160px !important;
      min-width: 120px !important;
      height: 34px !important;
      min-height: 34px !important;
      padding: 2px 4px !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      color: var(--text) !important;
      font-size: 16px !important;
      line-height: 1.2 !important;
    }

    .artist-chip-input:focus,
    .wizard-step-content .artist-chip-input:focus {
      outline: none !important;
      border: 0 !important;
      box-shadow: none !important;
    }

    .artist-chip-input::placeholder,
    .wizard-step-content .artist-chip-input::placeholder,
    .wizard-step-content input[name="title"]::placeholder {
      color: transparent !important;
      opacity: 0 !important;
    }


    /* Phase 4.4W: Central Wizard Autosave */
    .wizard-save-status.is-dirty {
      border-color: rgba(247,166,198,.38);
      color: #ffd6e6;
      background: rgba(247,166,198,.08);
    }




    /* Phase 4.4Y: Artist Chip Placeholder */
    .artist-chip-input::placeholder,
    .wizard-step-content .artist-chip-input::placeholder {
      color: rgba(204,204,204,.48) !important;
      opacity: 1 !important;
    }

    .artist-chip-input:focus::placeholder,
    .wizard-step-content .artist-chip-input:focus::placeholder {
      color: rgba(247,166,198,.58) !important;
      opacity: 1 !important;
    }


    /* Phase 4.4Z: Release & Pre-Save eigene UI */
    .wizard-date-card {
      display: grid;
      gap: 18px;
    }

    .wizard-field-group {
      display: grid;
      gap: 9px;
    }

    .wizard-field-label {
      display: block;
      margin: 0 0 8px;
      color: rgba(255,255,255,.82);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
    }

    .wizard-date-input-wrap {
      position: relative;
      width: 100%;
    }

    .wizard-date-input {
      width: 100%;
      min-height: 58px;
      padding: 15px 118px 15px 16px !important;
      border: 1px solid rgba(255,255,255,.30) !important;
      border-radius: 14px !important;
      background: rgba(255,255,255,.035) !important;
      color: var(--text) !important;
      font: inherit !important;
      font-size: 17px !important;
      outline: none !important;
      appearance: none !important;
      -webkit-appearance: none !important;
    }

    .wizard-date-input:hover {
      border-color: rgba(247,166,198,.55) !important;
    }

    .wizard-date-input:focus {
      border-color: rgba(247,166,198,.92) !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.12) !important;
    }

    .wizard-date-format {
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: rgba(204,204,204,.48);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .wizard-choice-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .wizard-choice-card {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 13px 14px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 14px;
      background: rgba(255,255,255,.025);
      color: var(--text);
      cursor: pointer;
      font-weight: 800;
      transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
    }

    .wizard-choice-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .wizard-choice-card:hover {
      border-color: rgba(247,166,198,.75);
      background: rgba(247,166,198,.07);
    }

    .wizard-choice-card.is-selected {
      border-color: rgba(247,166,198,.95);
      background: rgba(247,166,198,.12);
      box-shadow: 0 0 0 1px rgba(247,166,198,.18);
    }

    .wizard-presave-date-field {
      display: block;
    }

    .wizard-presave-date-field.is-hidden {
      display: none;
    }


    /* Phase 4.4ZA: Custom Calendar Picker + Presave Choice Alignment */
    .wizard-date-input {
      padding-right: 112px !important;
    }

    .wizard-date-picker-button {
      position: absolute !important;
      right: 9px !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
      min-height: 38px !important;
      width: 92px !important;
      padding: 0 10px !important;
      border-radius: 10px !important;
      border: 1px solid rgba(255,255,255,.22) !important;
      background: rgba(255,255,255,.045) !important;
      color: rgba(255,255,255,.82) !important;
      font-size: 12px !important;
      font-weight: 800 !important;
      letter-spacing: .01em !important;
      box-shadow: none !important;
    }

    .wizard-date-picker-button:hover {
      border-color: rgba(247,166,198,.72) !important;
      background: rgba(247,166,198,.10) !important;
      color: #fff !important;
    }

    .wizard-date-picker-popover {
      position: absolute;
      z-index: 30;
      top: calc(100% + 10px);
      left: 0;
      width: min(340px, 100%);
      padding: 14px;
      border: 1px solid rgba(247,166,198,.34);
      border-radius: 16px;
      background: rgba(12,10,12,.98);
      box-shadow: 0 24px 70px rgba(0,0,0,.48);
    }

    .wizard-date-picker-popover[hidden] {
      display: none !important;
    }

    .wizard-date-picker-head {
      display: grid;
      grid-template-columns: 38px 1fr 38px;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      text-align: center;
    }

    .wizard-date-picker-head strong {
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      text-transform: capitalize;
    }

    .wizard-date-picker-nav {
      min-height: 36px !important;
      width: 38px !important;
      padding: 0 !important;
      border-radius: 10px !important;
      border: 1px solid rgba(255,255,255,.18) !important;
      background: rgba(255,255,255,.035) !important;
      color: var(--text) !important;
      font-size: 22px !important;
      line-height: 1 !important;
    }

    .wizard-date-picker-nav:hover {
      border-color: rgba(247,166,198,.72) !important;
      background: rgba(247,166,198,.10) !important;
    }

    .wizard-date-picker-weekdays,
    .wizard-date-picker-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
    }

    .wizard-date-picker-weekdays {
      margin-bottom: 7px;
      color: rgba(204,204,204,.58);
      font-size: 11px;
      font-weight: 800;
      text-align: center;
    }

    .wizard-date-picker-empty {
      min-height: 34px;
    }

    .wizard-date-picker-day {
      min-height: 34px !important;
      width: 100% !important;
      padding: 0 !important;
      border-radius: 10px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(255,255,255,.025) !important;
      color: rgba(255,255,255,.84) !important;
      font-size: 13px !important;
      font-weight: 800 !important;
      box-shadow: none !important;
    }

    .wizard-date-picker-day:hover {
      border-color: rgba(247,166,198,.72) !important;
      background: rgba(247,166,198,.10) !important;
      color: #fff !important;
    }

    .wizard-date-picker-day.is-today {
      border-color: rgba(255,255,255,.38) !important;
    }

    .wizard-date-picker-day.is-selected {
      border-color: rgba(247,166,198,.95) !important;
      background: rgba(247,166,198,.16) !important;
      color: #fff !important;
    }

    .wizard-choice-row {
      align-items: stretch !important;
    }

    .wizard-choice-card {
      width: 100% !important;
      min-height: 58px !important;
      height: 58px !important;
      margin: 0 !important;
      border-width: 1px !important;
      box-sizing: border-box !important;
    }

    .wizard-choice-card.is-selected {
      background: rgba(247,166,198,.10) !important;
      box-shadow: inset 0 0 0 1px rgba(247,166,198,.36) !important;
    }


    /* Phase 4.4ZB: Calendar Field UX */
    .wizard-date-input-wrap {
      cursor: pointer;
    }

    .wizard-date-input {
      cursor: pointer !important;
      caret-color: transparent !important;
      padding-right: 62px !important;
      user-select: none;
    }

    .wizard-date-picker-button {
      width: 42px !important;
      min-height: 42px !important;
      right: 10px !important;
      padding: 0 !important;
      border-radius: 12px !important;
      font-size: 22px !important;
      line-height: 1 !important;
      color: rgba(255,255,255,.72) !important;
      background: rgba(255,255,255,.035) !important;
    }

    .wizard-date-picker-button:hover {
      color: #fff !important;
      background: rgba(247,166,198,.10) !important;
    }

    .wizard-date-picker-recommendation {
      margin: -4px 0 12px;
      color: rgba(247,166,198,.86);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .01em;
      text-align: center;
    }

    .wizard-date-picker-day {
      display: grid !important;
      place-items: center !important;
      gap: 1px !important;
      min-height: 40px !important;
      position: relative;
    }

    .wizard-date-picker-day small {
      display: block;
      margin-top: -2px;
      font-size: 8px;
      line-height: 1;
      color: rgba(247,166,198,.92);
      font-weight: 900;
      letter-spacing: .02em;
    }

    .wizard-date-picker-day.is-recommended {
      border-color: rgba(247,166,198,.95) !important;
      background: rgba(247,166,198,.12) !important;
    }

    .wizard-date-picker-day:disabled {
      cursor: not-allowed !important;
      opacity: .28 !important;
      border-color: rgba(255,255,255,.08) !important;
      background: rgba(255,255,255,.012) !important;
      color: rgba(204,204,204,.42) !important;
    }

    .wizard-choice-row {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 12px !important;
      width: 100% !important;
      align-items: stretch !important;
    }

    .wizard-choice-card {
      display: flex !important;
      width: 100% !important;
      min-width: 0 !important;
      height: 60px !important;
      min-height: 60px !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 16px !important;
      margin: 0 !important;
      border-radius: 14px !important;
      border: 1px solid rgba(255,255,255,.28) !important;
      background: rgba(255,255,255,.022) !important;
      box-shadow: none !important;
      box-sizing: border-box !important;
    }

    .wizard-choice-card span {
      display: block;
      width: auto;
      padding: 0;
      margin: 0;
      font-size: 17px;
      line-height: 1;
      font-weight: 850;
      color: rgba(255,255,255,.78);
    }

    .wizard-choice-card.is-selected {
      border-color: rgba(247,166,198,.95) !important;
      background: rgba(247,166,198,.105) !important;
      box-shadow: inset 0 0 0 1px rgba(247,166,198,.30) !important;
    }

    .wizard-choice-card.is-selected span {
      color: #fff;
    }


    /* Phase 4.4ZC: Pre-Save Segment-Control */
    .wizard-segment-control {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .wizard-segment-option {
      width: 100% !important;
      min-width: 0 !important;
      height: 60px !important;
      min-height: 60px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 16px !important;
      margin: 0 !important;
      border-radius: 14px !important;
      border: 1px solid rgba(255,255,255,.30) !important;
      background: rgba(255,255,255,.024) !important;
      color: rgba(255,255,255,.78) !important;
      font-size: 17px !important;
      line-height: 1 !important;
      font-weight: 850 !important;
      box-shadow: none !important;
      box-sizing: border-box !important;
      appearance: none !important;
      -webkit-appearance: none !important;
    }

    .wizard-segment-option:hover {
      border-color: rgba(247,166,198,.72) !important;
      background: rgba(247,166,198,.07) !important;
      color: #fff !important;
    }

    .wizard-segment-option.is-selected {
      border-color: rgba(247,166,198,.95) !important;
      background: rgba(247,166,198,.105) !important;
      color: #fff !important;
      box-shadow: inset 0 0 0 1px rgba(247,166,198,.30) !important;
    }


    /* Phase 4.4ZD: Date field without side icon + Core lead-time warning */
    .wizard-date-input {
      padding-right: 16px !important;
    }

    .wizard-date-picker-button {
      display: none !important;
    }

    .wizard-date-input-wrap::after {
      content: "Kalender öffnen";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: rgba(204,204,204,.48);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .01em;
    }

    .wizard-date-input-wrap:hover::after,
    .wizard-date-input-wrap:focus-within::after {
      color: rgba(247,166,198,.72);
    }

    .wizard-date-warning {
      margin-top: 12px;
      padding: 13px 14px;
      border: 1px solid rgba(255,77,77,.48);
      border-radius: 14px;
      background: rgba(255,77,77,.10);
      color: #ffd1d1;
      line-height: 1.5;
    }

    .wizard-date-warning.is-hidden {
      display: none !important;
    }

    .wizard-date-warning strong {
      display: block;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .wizard-date-warning p {
      margin: 0;
      color: #ffd1d1;
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .wizard-workspace.help-collapsed {
        padding-right: 0 !important;
      }

      .wizard-help-panel.is-collapsed {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        display: flex !important;
        justify-content: flex-start !important;
        margin-top: 0 !important;
      }

      .wizard-help-panel.is-collapsed .wizard-help-toggle {
        width: auto !important;
        min-width: 0 !important;
        height: 42px !important;
        padding: 0 14px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .wizard-help-panel.is-collapsed .wizard-help-toggle::after {
        content: " Hilfe";
        margin-left: 8px;
        font-size: 14px;
        font-weight: 700;
        color: var(--muted);
      }
    }

    @media (max-width: 980px) {
      .wizard-workspace,
      .wizard-workspace.help-collapsed,
      .wizard-workspace.has-help {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
      }

      .wizard-help-panel,
      .wizard-help-panel.is-collapsed {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
      }

      .wizard-help-panel.is-collapsed {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
      }

      .wizard-help-panel.is-collapsed .wizard-help-toggle {
        width: auto !important;
        min-width: 0 !important;
        height: 42px !important;
        padding: 0 14px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-size: 14px !important;
        line-height: 1 !important;
      }

      .wizard-help-panel.is-collapsed .wizard-help-toggle::after {
        content: " Hilfe";
        font-size: 14px;
        font-weight: 700;
        color: var(--muted);
      }

      .wizard-step-toggle {
        min-height: 66px !important;
      }

      .wizard-step-left strong {
        font-size: 19px !important;
      }
    }

    @media (max-width: 620px) {
      .shell {
        padding-left: 14px !important;
        padding-right: 14px !important;
      }

      main {
        padding: 18px !important;
        border-radius: 22px !important;
      }

      .wizard-header-main h1 {
        font-size: clamp(38px, 13vw, 54px) !important;
      }

      .wizard-meta-row,
      .wizard-meta-row.compact {
        gap: 8px !important;
      }

      .wizard-step-right {
        gap: 8px !important;
      }

      .wizard-step-status {
        width: 26px !important;
        height: 26px !important;
      }

      .wizard-step-chevron {
        width: 32px !important;
        height: 32px !important;
      }
    }

    @media (max-width: 980px) {
      .shell {
        padding: 0 18px 28px;
      }

      header {
        min-height: auto;
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      nav {
        justify-content: flex-start;
        gap: 18px;
      }

      main {
        padding: 24px;
      }

      .portal-hero,
      .grid,
      .quick-grid,
      .release-card-grid,
      .upload-grid,
      .choice-grid,
      .wizard-workspace,
      .wizard-workspace.help-collapsed {
        grid-template-columns: 1fr !important;
      }

      .wizard-help-panel {
        position: static !important;
      }

      .wizard-help-panel.is-collapsed {
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
        padding: 0 !important;
      }
    }

    @media (max-width: 620px) {
      h1 {
        font-size: clamp(38px, 13vw, 54px);
      }

      .wizard-step-toggle {
        padding: 18px !important;
      }

      .wizard-step-left strong {
        font-size: 19px !important;
      }

      .wizard-step-content {
        padding: 18px !important;
      }

      .badge {
        font-size: 11px;
      }
    }
  
    /* Phase 4.4 Help UI cleanup: dezente Hilfe-Punkte statt großer Icon-Blöcke */
    .wizard-help-tip {
      grid-template-columns: 10px minmax(0, 1fr) !important;
      gap: 14px !important;
      align-items: start !important;
      padding: 14px 15px !important;
    }

    .wizard-help-tip-icon {
      width: 7px !important;
      height: 7px !important;
      min-width: 7px !important;
      margin-top: 9px !important;
      border-radius: 999px !important;
      border: 0 !important;
      background: rgba(247,166,198,.76) !important;
      color: transparent !important;
      font-size: 0 !important;
      line-height: 0 !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.075) !important;
    }

    .wizard-help-tip-icon.is-warning {
      background: rgba(255,159,67,.82) !important;
      box-shadow: 0 0 0 4px rgba(255,159,67,.09) !important;
    }

    .wizard-help-tip-icon.is-success {
      background: rgba(74,222,128,.82) !important;
      box-shadow: 0 0 0 4px rgba(74,222,128,.09) !important;
    }

    .wizard-help-tip p {
      padding: 0 !important;
    }


    /* Phase 4.4 Help UI cleanup: Warnung/Haken wieder als echte Symbole anzeigen */
    .wizard-help-tip-icon.is-warning,
    .wizard-help-tip-icon.is-success {
      width: 26px !important;
      height: 26px !important;
      min-width: 26px !important;
      margin-top: 2px !important;
      border-radius: 9px !important;
      display: inline-grid !important;
      place-items: center !important;
      font-size: 15px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
      color: #ffffff !important;
      box-shadow: none !important;
    }

    .wizard-help-tip-icon.is-warning {
      border: 1px solid rgba(255,159,67,.52) !important;
      background: rgba(255,159,67,.16) !important;
      color: #ffe1bd !important;
    }

    .wizard-help-tip-icon.is-success {
      border: 1px solid rgba(74,222,128,.42) !important;
      background: rgba(74,222,128,.13) !important;
      color: #d1ffe2 !important;
    }

    .wizard-help-tip:has(.wizard-help-tip-icon.is-warning),
    .wizard-help-tip:has(.wizard-help-tip-icon.is-success) {
      grid-template-columns: 26px minmax(0, 1fr) !important;
      gap: 14px !important;
    }


    /* Phase 4.4 Accordion UX: ruhiges Öffnen/Schließen der großen Wizard-Menüs */
    .wizard-step-section {
      overflow: hidden !important;
      transition:
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease,
        transform .22s ease !important;
      scroll-margin-top: 18px;
    }

    .wizard-step-section.is-open {
      overflow: visible !important;
    }

    .wizard-step-content-shell {
      display: grid !important;
      grid-template-rows: 0fr !important;
      opacity: 0 !important;
      transform: translateY(-4px) !important;
      transition:
        grid-template-rows .28s ease,
        opacity .22s ease,
        transform .22s ease !important;
    }

    .wizard-step-section.is-open .wizard-step-content-shell {
      grid-template-rows: 1fr !important;
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .wizard-step-content-shell > .wizard-step-content {
      min-height: 0 !important;
      overflow: hidden !important;
    }

    .wizard-step-section.is-open .wizard-step-content-shell > .wizard-step-content {
      overflow: visible !important;
    }

    .wizard-step-chevron {
      transition:
        transform .22s ease,
        border-color .18s ease,
        background .18s ease !important;
    }

    .wizard-step-section.is-open .wizard-step-chevron {
      transform: rotate(180deg);
    }

    @media (prefers-reduced-motion: reduce) {
      .wizard-step-section,
      .wizard-step-content-shell,
      .wizard-step-chevron {
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }


    /* Phase 4.4 Accordion Compact Fix: geschlossene Hauptfelder wieder klein halten */
    .wizard-step-section:not(.is-open) {
      min-height: 0 !important;
    }

    .wizard-step-section:not(.is-open) .wizard-step-toggle {
      min-height: 72px !important;
    }

    .wizard-step-content-shell {
      display: block !important;
      max-height: 0 !important;
      overflow: hidden !important;
      opacity: 0 !important;
      transform: translateY(-4px) !important;
      transition:
        max-height .28s ease,
        opacity .20s ease,
        transform .20s ease !important;
    }

    .wizard-step-section.is-open .wizard-step-content-shell {
      max-height: 5000px !important;
      overflow: visible !important;
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .wizard-step-section:not(.is-open) .wizard-step-content-shell > .wizard-step-content {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      border-top: 0 !important;
      overflow: hidden !important;
    }

    .wizard-step-section.is-open .wizard-step-content-shell > .wizard-step-content {
      overflow: visible !important;
    }


    /* Phase 4.4 Accordion Smoothness Tuning */
    .wizard-step-content-shell {
      transform: translateY(-2px) !important;
      transition:
        max-height .34s cubic-bezier(.22, .8, .28, 1),
        opacity .24s ease,
        transform .28s cubic-bezier(.22, .8, .28, 1) !important;
      will-change: max-height, opacity, transform;
    }

    .wizard-step-section.is-open .wizard-step-content-shell {
      transform: translateY(0) !important;
    }

    .wizard-step-chevron {
      transition:
        transform .26s cubic-bezier(.22, .8, .28, 1),
        border-color .18s ease,
        background .18s ease !important;
    }

    .wizard-step-section {
      transition:
        border-color .24s ease,
        background .24s ease,
        box-shadow .24s ease !important;
    }


    /* Phase 4.4 Sticky Help Fix: Hilfe und Fragezeichen beim Scrollen mitführen */
    @media (min-width: 981px) {
      .wizard-workspace {
        align-items: start !important;
      }

      .wizard-help-panel {
        position: sticky !important;
        top: 24px !important;
        align-self: start !important;
        max-height: calc(100vh - 48px) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
      }

      .wizard-workspace.help-collapsed {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 56px !important;
        gap: 14px !important;
        padding-right: 0 !important;
        position: static !important;
        align-items: start !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-panel.is-collapsed {
        position: sticky !important;
        top: 24px !important;
        right: auto !important;
        width: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        height: auto !important;
        min-height: 56px !important;
        padding: 0 !important;
        margin: 24px 0 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        display: grid !important;
        place-items: start center !important;
        align-self: start !important;
        justify-self: end !important;
        overflow: visible !important;
      }

      .wizard-workspace.help-collapsed .wizard-help-toggle {
        position: static !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        margin: 0 !important;
      }
    }

    @media (max-width: 980px) {
      .wizard-help-panel,
      .wizard-workspace.help-collapsed .wizard-help-panel.is-collapsed {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
      }
    }


    /* Phase 4.4 Sticky Parent Fix: Wizard-Hilfe darf innerhalb von main sticky mitfahren */
    main:has(.wizard-workspace) {
      overflow: visible !important;
    }

    main:has(.wizard-workspace) .wizard-help-panel {
      position: sticky !important;
      top: 24px !important;
      align-self: start !important;
      z-index: 12 !important;
    }

    main:has(.wizard-workspace) .wizard-workspace.help-collapsed .wizard-help-panel.is-collapsed {
      position: sticky !important;
      top: 24px !important;
      align-self: start !important;
      z-index: 12 !important;
    }


    /* Phase 4.4 Help Short + Accordion Corner Fix */
    .wizard-step-section {
      border-radius: 18px !important;
      background-clip: padding-box !important;
    }

    .wizard-step-toggle {
      border-radius: 18px !important;
      overflow: hidden !important;
      background-clip: padding-box !important;
    }

    .wizard-step-section.is-open .wizard-step-toggle {
      border-radius: 18px 18px 0 0 !important;
    }

    .wizard-step-content-shell {
      border-radius: 0 0 18px 18px !important;
      background-clip: padding-box !important;
    }

    .wizard-step-section.is-open .wizard-step-content-shell {
      box-shadow: inset 0 1px 0 rgba(247,166,198,.08) !important;
    }

    .wizard-help-panel {
      max-height: none !important;
    }

    .wizard-help-intro {
      margin-bottom: 13px !important;
      line-height: 1.55 !important;
    }

    .wizard-help-tips {
      gap: 9px !important;
    }

    .wizard-help-tip {
      padding: 10px 11px !important;
    }

    .wizard-help-tip p {
      line-height: 1.45 !important;
    }



    /* Phase 4.5: Clean Track Upload */
    .wizard-track-upload-clean-form {
      margin: 0;
    }

    .wizard-track-dropzone.is-clean {
      min-height: 320px !important;
      width: 100%;
      padding: 36px !important;
      border-radius: 28px !important;
      border: 1px dashed rgba(247,166,198,.42) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.13), transparent 42%),
        rgba(255,255,255,.020) !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
      gap: 14px !important;
      text-align: center;
      cursor: pointer;
    }

    .wizard-track-dropzone.is-clean:hover,
    .wizard-track-dropzone.is-clean.is-drag-over {
      border-color: rgba(247,166,198,.88) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.20), transparent 44%),
        rgba(247,166,198,.045) !important;
      transform: translateY(-1px);
    }

    .wizard-track-dropzone.is-clean .wizard-track-dropzone-icon {
      width: 72px !important;
      height: 72px !important;
      border-radius: 24px !important;
      font-size: 42px !important;
    }

    .wizard-track-dropzone.is-clean strong {
      font-size: 22px !important;
      line-height: 1.2 !important;
    }

    .wizard-track-dropzone.is-clean span:last-child {
      font-size: 14px !important;
      color: rgba(255,255,255,.62) !important;
    }

    .wizard-track-upload-queue.is-clean {
      margin-top: 16px;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
    }

    .wizard-track-upload-queue.is-clean:not(:empty) {
      display: grid;
      gap: 10px;
    }

    .wizard-track-upload-queue.is-clean .wizard-track-upload-queue-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 14px;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.026);
    }

    .wizard-track-upload-progress-shell {
      width: 100%;
      height: 7px;
      margin-top: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }

    .wizard-track-upload-progress-bar {
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: rgba(247,166,198,.82);
      transition: width .18s ease;
    }



    /* Phase 4.5D: H&S Confirm Modal */
    .hs-confirm-backdrop {
      position: fixed;
      inset: 0;
      z-index: 20000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0,0,0,.78);
      backdrop-filter: blur(9px);
    }

    .hs-confirm-dialog {
      width: min(540px, 100%);
      overflow: hidden;
      border: 1px solid rgba(247,166,198,.30);
      border-radius: 26px;
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.14), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.010)),
        #15151c;
      box-shadow: 0 30px 100px rgba(0,0,0,.68);
    }

    .hs-confirm-body {
      padding: 26px 26px 20px;
    }

    .hs-confirm-eyebrow {
      display: block;
      margin-bottom: 10px;
      color: var(--accent-2);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .hs-confirm-body h3 {
      margin: 0 0 12px;
      color: var(--text);
      font-size: 26px;
      line-height: 1.15;
    }

    .hs-confirm-body p {
      margin: 0;
      color: rgba(255,255,255,.74);
      font-size: 15px;
      line-height: 1.7;
    }

    .hs-confirm-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      padding: 17px 26px 24px;
      border-top: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.018);
    }

    .hs-confirm-danger {
      border-color: rgba(248,113,113,.58) !important;
      background: rgba(127,29,29,.22) !important;
      color: #fecaca !important;
    }

    .hs-confirm-danger:hover {
      border-color: rgba(248,113,113,.82) !important;
      background: rgba(127,29,29,.34) !important;
    }



    /* Phase 4.5G: Track Info Modal Clean Fields */
    .track-info-grid {
      display: grid;
      gap: 15px;
      margin-top: 16px;
    }

    .track-info-label-row {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 7px;
      color: rgba(255,255,255,.86);
      font-weight: 750;
    }

    .track-info-tooltip {
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.045);
      color: rgba(255,255,255,.72);
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      cursor: help;
    }

    .track-info-tooltip::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      width: max-content;
      max-width: 280px;
      transform: translateX(-50%) translateY(4px);
      opacity: 0;
      pointer-events: none;
      z-index: 20;
      padding: 10px 11px;
      border: 1px solid rgba(247,166,198,.25);
      border-radius: 12px;
      background:
        radial-gradient(circle at 20% 0%, rgba(247,166,198,.14), transparent 55%),
        #17171f;
      box-shadow: 0 16px 44px rgba(0,0,0,.42);
      color: rgba(255,255,255,.78);
      font-size: 12px;
      font-weight: 650;
      line-height: 1.45;
      white-space: normal;
      transition: opacity .16s ease, transform .16s ease;
    }

    .track-info-tooltip:hover::after,
    .track-info-tooltip:focus-visible::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .track-info-segment {
      display: inline-flex;
      width: min(360px, 100%);
      padding: 4px;
      gap: 4px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      background: rgba(255,255,255,.030);
    }

    .track-info-segment button {
      flex: 1;
      min-height: 38px;
      border-radius: 10px !important;
      border: 0 !important;
      background: transparent !important;
      color: rgba(255,255,255,.68) !important;
      font-weight: 850 !important;
      letter-spacing: .035em;
      text-transform: uppercase;
    }

    .track-info-segment button.is-selected {
      background: rgba(255,255,255,.105) !important;
      color: #fff !important;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    }

    .track-info-segment button[data-value="true"].is-selected {
      background: rgba(248,113,113,.18) !important;
      color: #fecaca !important;
      box-shadow: inset 0 0 0 1px rgba(248,113,113,.36);
    }





    /* Phase 4.5H: TikTok MM:SS Timecode Control */
    .track-timecode-control {
      width: fit-content;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 5px 8px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 15px;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.08), transparent 58%),
        rgba(255,255,255,.030);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
      user-select: none;
    }

    .track-timecode-part {
      width: 40px !important;
      min-height: 32px !important;
      padding: 0 !important;
      display: inline-grid !important;
      place-items: center !important;
      border: 1px solid transparent !important;
      border-radius: 11px !important;
      background: transparent !important;
      color: #fff !important;
      text-align: center !important;
      font-size: 18px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
      font-variant-numeric: tabular-nums;
      cursor: ns-resize;
      outline: none !important;
      box-shadow: none !important;
    }

    .track-timecode-part:hover {
      background: rgba(255,255,255,.045) !important;
      border-color: rgba(255,255,255,.12) !important;
    }

    .track-timecode-part.is-active {
      background: rgba(247,166,198,.18) !important;
      border-color: rgba(247,166,198,.56) !important;
      color: #fff !important;
      box-shadow: 0 0 0 3px rgba(247,166,198,.10) !important;
    }

    .track-timecode-colon {
      color: rgba(255,255,255,.54);
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
      transform: translateY(-1px);
    }

    .track-timecode-hint {
      margin-top: 7px;
      color: rgba(255,255,255,.44);
      font-size: 12px;
      line-height: 1.35;
    }


    /* Phase 4 Tracks UI Foundation */
    .wizard-tracks-card {
      overflow: visible !important;
    }

    .wizard-tracks-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .wizard-tracks-header h3 {
      margin: 0 0 8px !important;
    }

    .wizard-track-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .wizard-track-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 14px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 16px;
      background: rgba(255,255,255,.022);
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .wizard-track-row:hover {
      border-color: rgba(247,166,198,.62);
      background: rgba(247,166,198,.045);
      transform: translateY(-1px);
    }

    .wizard-track-row-left {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wizard-track-drag-handle {
      width: 28px;
      height: 28px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 9px;
      color: rgba(255,255,255,.64);
      cursor: grab;
      user-select: none;
    }

    .wizard-track-number {
      width: 32px;
      height: 32px;
      display: inline-grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(255,255,255,.06);
      color: #fff;
      font-weight: 900;
      line-height: 1;
      flex: 0 0 auto;
    }

    .wizard-track-row-main {
      min-width: 0;
      display: grid;
      gap: 4px;
    }

    .wizard-track-row-main strong {
      color: var(--text);
      font-size: 16px;
      line-height: 1.25;
      font-weight: 850;
      overflow-wrap: anywhere;
    }

    .wizard-track-title-line {
      display: flex;
      align-items: center;
      gap: 7px;
      min-width: 0;
      flex-wrap: wrap;
    }

    .wizard-track-explicit-badge {
      width: 20px;
      height: 20px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 6px;
      border: 1px solid rgba(248,113,113,.58);
      background: rgba(127,29,29,.28);
      color: #fecaca;
      font-size: 11px;
      font-weight: 950;
      line-height: 1;
      letter-spacing: .02em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }


    .wizard-track-dolby-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-height: 20px;
      padding: 3px 7px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.66);
      font-size: 10px !important;
      font-weight: 950;
      letter-spacing: .08em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
      flex: 0 0 auto;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }

    .wizard-track-dolby-badge.is-ready {
      border-color: rgba(178,111,255,.62);
      background: rgba(178,111,255,.18);
      color: #d6b5ff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 18px rgba(178,111,255,.14);
    }

    .wizard-track-dolby-badge.is-warning {
      border-color: rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.66);
    }

    .wizard-track-dolby-badge .wizard-track-dolby-symbol {
      font-size: 10px !important;
      font-weight: 950;
      letter-spacing: 0;
      line-height: 1;
      color: inherit;
    }

    .wizard-dolby-upload-error-box {
      position: relative;
      overflow: hidden;
      margin-top: 10px;
      padding-bottom: 13px !important;
    }

    .wizard-dolby-upload-error-box::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: rgba(248,113,113,.86);
      transform-origin: left center;
      animation: wizardDolbyUploadErrorTimer 8s linear forwards;
    }

    @keyframes wizardDolbyUploadErrorTimer {
      from {
        transform: scaleX(1);
      }
      to {
        transform: scaleX(0);
      }
    }

    .wizard-track-row-main span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .wizard-track-row-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .wizard-track-edit-button {
      min-height: 36px !important;
      padding: 8px 12px !important;
      border-radius: 10px !important;
      font-size: 13px !important;
    }

    .wizard-track-delete-button {
      width: 36px !important;
      height: 36px !important;
      min-width: 36px !important;
      padding: 0 !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 10px !important;
      border: 1px solid rgba(248,113,113,.42) !important;
      background: rgba(127,29,29,.16) !important;
      color: #fecaca !important;
      font-size: 20px !important;
      line-height: 1 !important;
    }

    .wizard-track-source-panel {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .wizard-track-source-card {
      width: 100%;
      min-height: 118px;
      display: grid !important;
      justify-items: center;
      align-content: center;
      gap: 8px;
      padding: 18px !important;
      border: 1px dashed rgba(247,166,198,.36) !important;
      border-radius: 18px !important;
      background: rgba(247,166,198,.035) !important;
      color: var(--text) !important;
      text-align: center !important;
    }

    .wizard-track-source-card:hover {
      border-color: rgba(247,166,198,.86) !important;
      background: rgba(247,166,198,.075) !important;
    }

    .wizard-track-source-icon {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255,255,255,.06);
      color: var(--accent-2);
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
    }

    .wizard-track-source-card strong {
      font-size: 15px;
      line-height: 1.25;
    }

    .wizard-track-source-card span:last-child {
      max-width: 280px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .wizard-track-empty-state {
      display: grid;
      gap: 10px;
      margin-top: 16px;
      padding: 22px;
      border: 1px dashed rgba(255,255,255,.20);
      border-radius: 18px;
      background: rgba(255,255,255,.016);
      text-align: center;
    }

    .wizard-track-empty-state > strong {
      font-size: 18px;
      color: var(--text);
    }

    .wizard-track-empty-state > span {
      color: var(--muted);
      font-size: 14px;
    }

    .wizard-track-dropzone {
      min-height: 190px;
      display: grid !important;
      place-items: center;
      gap: 8px;
      padding: 24px !important;
      border: 1px dashed rgba(247,166,198,.48) !important;
      border-radius: 22px !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.14), transparent 42%),
        rgba(255,255,255,.025) !important;
      text-align: center;
      cursor: pointer;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .wizard-track-dropzone:hover,
    .wizard-track-dropzone.is-drag-over {
      border-color: rgba(247,166,198,.92) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.20), transparent 44%),
        rgba(247,166,198,.045) !important;
      transform: translateY(-1px);
    }

    .wizard-track-dropzone input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .wizard-track-dropzone-icon {
      width: 54px;
      height: 54px;
      display: inline-grid;
      place-items: center;
      border-radius: 18px;
      border: 1px solid rgba(247,166,198,.36);
      background: rgba(247,166,198,.10);
      color: var(--accent-2);
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }

    .wizard-track-dropzone strong {
      color: var(--text);
      font-size: 18px;
      line-height: 1.25;
    }

    .wizard-track-dropzone span:last-child {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-track-upload-queue {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    .wizard-track-upload-queue:not(:empty) {
      padding: 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      background: rgba(255,255,255,.018);
    }

    @media (max-width: 720px) {
      .wizard-tracks-header,
      .wizard-track-row {
        align-items: stretch;
        flex-direction: column;
      }

      .wizard-track-row-actions {
        justify-content: flex-start;
      }

      .wizard-track-source-panel {
        grid-template-columns: 1fr;
      }
    }


    /* Phase 4 Tracks Single Guard + Dropzone Polish */
    .wizard-track-source-panel.has-tracks {
      margin-top: 14px !important;
    }

    .wizard-track-dropzone {
      min-height: 132px !important;
      place-items: center !important;
      align-content: center !important;
      padding: 20px 22px !important;
      border-radius: 18px !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.10), transparent 42%),
        rgba(255,255,255,.020) !important;
    }

    .wizard-track-dropzone-icon {
      width: 42px !important;
      height: 42px !important;
      border-radius: 14px !important;
      font-size: 28px !important;
    }

    .wizard-track-dropzone strong {
      font-size: 16px !important;
      line-height: 1.25 !important;
    }

    .wizard-track-dropzone span:last-child {
      font-size: 12px !important;
      line-height: 1.35 !important;
    }

    .wizard-track-source-card {
      min-height: 96px !important;
      padding: 15px !important;
      border-radius: 16px !important;
    }

    .wizard-track-source-icon {
      width: 30px !important;
      height: 30px !important;
      border-radius: 10px !important;
      font-size: 19px !important;
    }


    /* Phase 4 Tracks Upload Loop */
    .wizard-track-upload-queue-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 10px 11px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      background: rgba(255,255,255,.018);
    }

    .wizard-track-upload-queue-main {
      min-width: 0;
      display: grid;
      gap: 3px;
    }

    .wizard-track-upload-queue-main strong {
      color: var(--text);
      font-size: 13px;
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    .wizard-track-upload-queue-status {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .wizard-track-upload-queue-status.success {
      color: #bbf7d0;
    }

    .wizard-track-upload-queue-status.error {
      color: #fecaca;
    }

    .wizard-track-upload-queue-status.cancelled {
      color: #fed7aa;
    }

    .wizard-track-upload-queue-actions {
      flex: 0 0 auto;
      display: flex;
      justify-content: flex-end;
    }

    .wizard-track-upload-queue-actions .wizard-upload-cancel-button {
      min-height: 32px !important;
      padding: 7px 10px !important;
      border-radius: 10px !important;
      font-size: 12px !important;
    }



    /* Phase 4.5B: Upload Dropzone als große Hauptfläche */
    #wizardTrackSourceModalBackdrop > div {
      overflow: hidden !important;
    }

    #wizardTrackSourceModalBackdrop main {
      min-height: 560px !important;
      max-height: calc(88vh - 96px) !important;
      overflow: hidden !important;
      display: flex !important;
      flex-direction: column !important;
    }

    #wizardTrackSourceModalBackdrop main > p:first-child {
      flex: 0 0 auto !important;
      margin: 0 0 16px !important;
    }

    .wizard-track-upload-clean-form {
      flex: 1 1 auto !important;
      min-height: 0 !important;
      display: grid !important;
      grid-template-rows: minmax(360px, 1fr) auto auto !important;
      gap: 14px !important;
    }

    .wizard-track-dropzone.is-clean {
      min-height: 460px !important;
      height: 100% !important;
      max-height: none !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
    }

    .wizard-track-upload-queue.is-clean {
      max-height: 210px !important;
      overflow-y: auto !important;
      overscroll-behavior: contain !important;
      padding-right: 2px !important;
    }

    .wizard-track-upload-queue.is-clean:not(:empty) {
      padding-top: 2px !important;
    }

    .wizard-track-upload-queue.is-clean .wizard-track-upload-queue-item {
      min-height: 66px !important;
    }

    @media (min-width: 900px) {
      #wizardTrackSourceModalBackdrop > div {
        width: min(980px, 100%) !important;
      }

      .wizard-track-dropzone.is-clean {
        min-height: 500px !important;
      }
    }

    @media (max-height: 780px) {
      #wizardTrackSourceModalBackdrop main {
        min-height: 460px !important;
      }

      .wizard-track-upload-clean-form {
        grid-template-rows: minmax(300px, 1fr) auto auto !important;
      }

      .wizard-track-dropzone.is-clean {
        min-height: 340px !important;
      }
    }



    
    /* Phase 4 Final: Track Modal readonly Artist Chips */
    .track-readonly-artist-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      align-items: center;
      margin-top: 6px;
    }

    .track-readonly-artist-chip {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.07);
      color: var(--text);
      font-size: 13px;
      font-weight: 850;
      line-height: 1.2;
      white-space: nowrap;
    }

    .track-readonly-artist-chip.is-empty {
      color: rgba(255,255,255,.54);
      border-style: dashed;
      background: rgba(255,255,255,.025);
    }

    .track-readonly-inherited-note {
      margin-top: 7px;
      color: rgba(255,255,255,.52);
      font-size: 12px;
      line-height: 1.45;
    }


    
    /* Phase 4 Final: Track Modal Single Artist readonly Chips */
    .wizard-track-release-artist-field {
      position: relative;
    }

    .wizard-track-release-artist-field .artist-chip-inputbox {
      cursor: default !important;
    }

    .wizard-track-release-artist-field .artist-chip-list {
      width: 100% !important;
    }

    .wizard-track-release-artist-field .artist-chip-pill {
      cursor: default !important;
    }

    .wizard-track-release-artist-field .artist-chip-pill.is-empty {
      color: rgba(255,255,255,.48) !important;
      border-style: dashed !important;
      background: rgba(255,255,255,.025) !important;
    }

    .wizard-track-release-artist-field .track-info-note {
      display: block;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      margin-top: 0;
      color: rgba(255,255,255,.58);
      font-size: 12px;
      line-height: 1.45;
      transition: opacity .16s ease, max-height .16s ease, margin-top .16s ease;
    }

    .wizard-track-release-artist-field:hover .track-info-note,
    .wizard-track-release-artist-field:focus-within .track-info-note {
      opacity: 1;
      max-height: 42px;
      margin-top: 7px;
    }


    /* Phase 4.5E: Track Modal kompakte Pill Navigation */
    .wizard-track-modal-layout {
      display: grid;
      grid-template-columns: 176px minmax(0, 1fr);
      gap: 0;
      min-height: 560px;
    }

    .wizard-track-modal-nav {
      position: sticky;
      top: 0;
      align-self: start;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 18px 14px;
      border-right: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.10);
      min-height: 560px;
    }

    .wizard-track-modal-pill {
      width: 100%;
      min-height: 38px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      padding: 9px 11px !important;
      border-radius: 999px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(255,255,255,.030) !important;
      color: rgba(255,255,255,.76) !important;
      box-shadow: none !important;
      text-align: left !important;
      font-size: 12px !important;
      font-weight: 850 !important;
      letter-spacing: .045em !important;
      text-transform: uppercase !important;
    }

    .wizard-track-modal-pill:hover {
      border-color: rgba(247,166,198,.56) !important;
      background: rgba(247,166,198,.070) !important;
      color: #fff !important;
    }

    .wizard-track-modal-pill.is-active {
      border-color: rgba(247,166,198,.72) !important;
      background: rgba(247,166,198,.115) !important;
      color: #fff !important;
    }

    .wizard-track-modal-pill span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .wizard-track-modal-content {
      min-height: 560px;
      padding: 22px 24px;
    }

    @media (max-width: 760px) {
      .wizard-track-modal-layout {
        grid-template-columns: 1fr;
      }

      .wizard-track-modal-nav {
        position: static;
        min-height: 0;
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
      }

      .wizard-track-modal-pill {
        width: auto;
        flex: 0 0 auto;
      }
    }




    /* Phase 4.5F: Track Modal Sidebar oben fixieren */
    .wizard-track-modal-layout {
      align-items: stretch !important;
    }

    .wizard-track-modal-nav {
      position: sticky !important;
      top: 0 !important;
      align-self: stretch !important;
      justify-content: flex-start !important;
      align-content: flex-start !important;
      min-height: 560px !important;
      height: 100% !important;
      padding: 18px 14px !important;
      gap: 8px !important;
      border-right: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(0,0,0,.10) !important;
    }

    .wizard-track-modal-pill,
    .wizard-track-modal-pill:hover,
    .wizard-track-modal-pill:focus,
    .wizard-track-modal-pill:focus-visible,
    .wizard-track-modal-pill.is-active {
      text-decoration: none !important;
      box-shadow: none !important;
      outline: none !important;
    }

    .wizard-track-modal-pill {
      min-height: 38px !important;
      margin: 0 !important;
      border-radius: 999px !important;
      border: 1px solid rgba(255,255,255,.14) !important;
      background: rgba(255,255,255,.030) !important;
      color: rgba(255,255,255,.72) !important;
    }

    .wizard-track-modal-pill:hover {
      border-color: rgba(255,255,255,.28) !important;
      background: rgba(255,255,255,.055) !important;
      color: #fff !important;
    }

    .wizard-track-modal-pill.is-active {
      border-color: rgba(255,255,255,.34) !important;
      background: rgba(255,255,255,.085) !important;
      color: #fff !important;
    }

    .wizard-track-modal-pill::after,
    .wizard-track-modal-pill::before,
    .wizard-track-modal-nav::after,
    .wizard-track-modal-nav::before {
      display: none !important;
      content: none !important;
    }

    .wizard-track-modal-content {
      min-width: 0 !important;
      overflow-y: auto !important;
      overscroll-behavior: contain !important;
    }



    /* Phase 4.5I: Track Modal Sidebar-Linie sauber innen */
    .wizard-track-modal-nav {
      position: sticky !important;
      border-right: 0 !important;
      box-shadow: none !important;
    }

    .wizard-track-modal-nav::after {
      content: "" !important;
      display: block !important;
      position: absolute !important;
      top: 18px !important;
      right: 0 !important;
      bottom: 18px !important;
      width: 1px !important;
      background: rgba(255,255,255,.12) !important;
      pointer-events: none !important;
    }

    .wizard-track-modal-nav::before {
      display: none !important;
      content: none !important;
    }



    /* Phase 4.5J: Track Modal nur eine saubere Sidebar-Linie */
    .wizard-track-modal-layout {
      position: relative !important;
    }

    .wizard-track-modal-layout::after {
      content: "" !important;
      position: absolute !important;
      top: 22px !important;
      bottom: 22px !important;
      left: 176px !important;
      width: 1px !important;
      background: rgba(255,255,255,.12) !important;
      pointer-events: none !important;
      z-index: 2 !important;
    }

    .wizard-track-modal-nav {
      border-right: 0 !important;
      box-shadow: none !important;
    }

    .wizard-track-modal-nav::before,
    .wizard-track-modal-nav::after {
      display: none !important;
      content: none !important;
      background: transparent !important;
      width: 0 !important;
    }

    .wizard-track-modal-content {
      border-left: 0 !important;
      box-shadow: none !important;
    }

    @media (max-width: 760px) {
      .wizard-track-modal-layout::after {
        display: none !important;
        content: none !important;
      }
    }



    /* Phase 4.5K: Track Audio Preview Redesign */
    .wizard-audio-card {
      margin-top: 16px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      background:
        radial-gradient(circle at 16% 0%, rgba(247,166,198,.10), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.040), rgba(255,255,255,.014));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.040);
    }

    .wizard-audio-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .wizard-audio-card-title {
      display: grid;
      gap: 5px;
      min-width: 0;
    }

    .wizard-audio-card-title strong {
      color: var(--text);
      font-size: 21px;
      line-height: 1.15;
      font-weight: 950;
    }

    .wizard-audio-card-title span {
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.45;
    }


    .wizard-audio-player {
      display: grid;
      grid-template-columns: 46px 48px minmax(0, 1fr) 48px;
      align-items: center;
      gap: 12px;
      padding: 13px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 17px;
      background: rgba(0,0,0,.24);
    }

    .wizard-audio-play-button {
      width: 46px !important;
      height: 46px !important;
      min-width: 46px !important;
      padding: 0 !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 15px !important;
      border: 1px solid rgba(247,166,198,.32) !important;
      background: rgba(247,166,198,.095) !important;
      color: #fff !important;
      font-size: 18px !important;
      line-height: 1 !important;
      box-shadow: none !important;
    }

    .wizard-audio-time {
      color: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 850;
      font-variant-numeric: tabular-nums;
      text-align: center;
    }


    .wizard-audio-native {
      display: none;
    }

    .wizard-audio-player-loading,
    .wizard-audio-player-empty {
      min-height: 70px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 17px;
      background: rgba(0,0,0,.18);
      color: rgba(255,255,255,.58);
      font-size: 14px;
      text-align: center;
    }

    .wizard-audio-replace-form {
      margin-top: 16px !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
    }

    .wizard-audio-replace-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 14px;
    }

    .wizard-audio-replace-input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .wizard-audio-replace-button {
      min-height: 40px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 10px 14px !important;
      border-radius: 12px !important;
      border: 1px solid rgba(247,166,198,.34) !important;
      background: rgba(247,166,198,.075) !important;
      color: #fff !important;
      font-weight: 850 !important;
      cursor: pointer;
    }

    .wizard-audio-replace-status {
      color: rgba(255,255,255,.52);
      font-size: 12px;
      text-align: right;
    }

    .wizard-audio-replace-progress {
      display: none;
      margin-top: 12px;
    }

    .wizard-audio-replace-progress.is-visible {
      display: block;
    }

    .wizard-audio-replace-result {
      margin-top: 10px;
    }



    /* Phase 4.5L: Track Audio Player Finefix */
    .wizard-audio-card-head {
      justify-content: flex-start !important;
    }


    .wizard-audio-player {
      grid-template-columns: 46px 48px minmax(0, 1fr) 48px !important;
    }

    .wizard-audio-timeline {
      width: 100%;
      min-height: 34px;
      display: flex;
      align-items: center;
      cursor: pointer;
      outline: none;
      user-select: none;
      touch-action: none;
    }

    .wizard-audio-timeline-track {
      position: relative;
      width: 100%;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      overflow: visible;
    }

    .wizard-audio-timeline-fill {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0%;
      border-radius: 999px;
      background: rgba(247,166,198,.86);
    }

    .wizard-audio-timeline-thumb {
      position: absolute;
      left: 0%;
      top: 50%;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #fff;
      transform: translate(-50%, -50%);
      box-shadow: 0 4px 16px rgba(0,0,0,.35);
      pointer-events: none;
    }

    .wizard-audio-timeline:focus-visible .wizard-audio-timeline-thumb {
      box-shadow: 0 0 0 4px rgba(247,166,198,.18), 0 4px 16px rgba(0,0,0,.35);
    }

    .wizard-audio-replace-row {
      justify-content: flex-start !important;
    }

    .wizard-audio-replace-status {
      display: none !important;
    }

    .wizard-audio-options-card {
      margin-top: 18px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 20px;
      background: rgba(0,0,0,.18);
    }

    .wizard-audio-options-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .wizard-audio-options-head h4 {
      margin: 0;
      font-size: 17px;
    }

    .wizard-audio-options-head p {
      margin: 5px 0 0;
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-audio-options-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .wizard-audio-option-button {
      min-height: 96px;
      padding: 14px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(255,255,255,.035) !important;
      color: var(--text) !important;
      text-align: left !important;
      cursor: pointer;
      display: grid !important;
      gap: 6px;
      align-content: start;
    }

    .wizard-audio-option-button strong {
      font-size: 14px;
      line-height: 1.25;
    }

    .wizard-audio-option-button span {
      color: rgba(255,255,255,.56);
      font-size: 12px;
      line-height: 1.35;
    }

    .wizard-audio-option-button.is-selected {
      border-color: rgba(168,85,247,.58) !important;
      background: rgba(168,85,247,.16) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    }

    .wizard-audio-options-message {
      margin-top: 12px;
    }


    .wizard-dolby-upload-card {
      margin-top: 16px;
      padding: 16px;
      border: 1px solid rgba(168,85,247,.24);
      border-radius: 18px;
      background:
        radial-gradient(circle at 12% 0%, rgba(168,85,247,.14), transparent 42%),
        rgba(0,0,0,.20);
    }

    .wizard-dolby-upload-card h5 {
      margin: 0 0 6px;
      font-size: 15px;
      color: var(--text);
    }

    .wizard-dolby-upload-card p {
      margin: 0;
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.45;
    }

    .wizard-dolby-upload-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 14px;
    }

    .wizard-dolby-upload-input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .wizard-dolby-upload-button {
      min-height: 40px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 10px 14px !important;
      border-radius: 12px !important;
      border: 1px solid rgba(168,85,247,.42) !important;
      background: rgba(168,85,247,.13) !important;
      color: #fff !important;
      font-weight: 850 !important;
      cursor: pointer;
    }

    .wizard-dolby-upload-status {
      color: rgba(255,255,255,.58);
      font-size: 12px;
      line-height: 1.4;
    }

    .wizard-dolby-upload-progress {
      display: none;
      margin-top: 12px;
    }

    .wizard-dolby-upload-progress.is-visible {
      display: block;
    }

    .wizard-dolby-upload-result {
      margin-top: 10px;
    }

    @media (max-width: 820px) {
      .wizard-audio-options-grid {
        grid-template-columns: 1fr;
      }
    }



    /* Phase 4.5M: Dolby/ADM UI Cleanup */
    .wizard-audio-options-card {
      margin-top: 22px !important;
      padding: 22px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      border-radius: 22px !important;
      background:
        radial-gradient(circle at 14% 0%, rgba(247,166,198,.075), transparent 40%),
        linear-gradient(180deg, rgba(255,255,255,.030), rgba(255,255,255,.010)) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
    }

    .wizard-audio-options-head {
      margin-bottom: 16px !important;
    }

    .wizard-audio-options-head h4 {
      font-size: 20px !important;
      font-weight: 950 !important;
      letter-spacing: -.02em !important;
    }

    .wizard-audio-options-head p {
      max-width: 760px !important;
      color: rgba(255,255,255,.58) !important;
      font-size: 14px !important;
    }

    .wizard-audio-options-grid {
      gap: 14px !important;
    }

    .wizard-audio-option-button {
      position: relative !important;
      overflow: hidden !important;
      min-height: 118px !important;
      padding: 18px !important;
      border-radius: 18px !important;
      border: 1px solid rgba(255,255,255,.13) !important;
      background:
        radial-gradient(circle at 16% 0%, rgba(255,255,255,.045), transparent 44%),
        rgba(255,255,255,.030) !important;
      color: var(--text) !important;
      transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease !important;
    }

    .wizard-audio-option-button:hover {
      transform: translateY(-1px) !important;
      border-color: rgba(247,166,198,.48) !important;
      background:
        radial-gradient(circle at 16% 0%, rgba(247,166,198,.085), transparent 44%),
        rgba(255,255,255,.040) !important;
    }

    .wizard-audio-option-button strong {
      font-size: 16px !important;
      line-height: 1.22 !important;
      font-weight: 950 !important;
      letter-spacing: -.01em !important;
    }

    .wizard-audio-option-button span {
      color: rgba(255,255,255,.58) !important;
      font-size: 13px !important;
      line-height: 1.42 !important;
      font-weight: 700 !important;
    }

    .wizard-audio-option-button.is-selected {
      border-color: rgba(247,166,198,.72) !important;
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.18), transparent 45%),
        linear-gradient(135deg, rgba(247,166,198,.105), rgba(168,85,247,.105)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07),
        0 0 0 1px rgba(247,166,198,.12),
        0 18px 44px rgba(0,0,0,.18) !important;
    }

    .wizard-audio-option-button.is-selected::after {
      content: "✓";
      position: absolute;
      right: 14px;
      top: 14px;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(247,166,198,.50);
      background: rgba(247,166,198,.12);
      color: #ffd4e5;
      font-size: 13px;
      font-weight: 950;
    }

    .wizard-audio-options-message {
      margin-top: 12px !important;
      min-height: 0 !important;
    }

    .wizard-audio-options-message:empty {
      display: none !important;
    }

    .wizard-dolby-upload-card {
      margin-top: 16px !important;
      padding: 18px !important;
      border-radius: 18px !important;
      border-color: rgba(247,166,198,.26) !important;
      background:
        radial-gradient(circle at 12% 0%, rgba(247,166,198,.10), transparent 42%),
        rgba(0,0,0,.20) !important;
    }

    .wizard-dolby-upload-button {
      border-color: rgba(247,166,198,.44) !important;
      background: rgba(247,166,198,.095) !important;
    }

    .wizard-dolby-upload-button:hover {
      border-color: rgba(247,166,198,.78) !important;
      background: rgba(247,166,198,.14) !important;
    }



    /* Phase 4.5N: Dolby Upload Cards Full Width */
    .wizard-audio-options-card .wizardDolbyMasterUploadCard,
    .wizard-audio-options-card .wizardDolbyStemUploadCard,
    .wizard-audio-options-card .wizard-dolby-upload-card {
      width: 100% !important;
      max-width: none !important;
      box-sizing: border-box !important;
    }

    .wizard-audio-options-card > .wizardDolbyMasterUploadCard,
    .wizard-audio-options-card > .wizardDolbyStemUploadCard,
    .wizard-audio-options-card > .wizard-dolby-upload-card {
      display: block !important;
    }

    .wizardDolbyMasterUploadForm,
    .wizardDolbyStemUploadForm {
      width: 100% !important;
      max-width: none !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .wizard-dolby-upload-card {
      min-width: 0 !important;
    }

    .wizard-dolby-upload-row {
      width: 100% !important;
    }



    /* Phase 4.5O: Track Lyrics Tab */
    .wizard-track-lyrics-form {
      margin-top: 16px;
      display: grid;
      gap: 12px;
    }

    .wizard-track-lyrics-textarea {
      width: 100%;
      min-height: 420px;
      resize: vertical;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 12% 0%, rgba(247,166,198,.065), transparent 42%),
        rgba(0,0,0,.20);
      color: var(--text);
      font: inherit;
      line-height: 1.65;
      box-sizing: border-box;
    }

    .wizard-track-lyrics-textarea:focus {
      outline: none;
      border-color: rgba(247,166,198,.55);
      box-shadow: 0 0 0 4px rgba(247,166,198,.10);
    }

    .wizard-track-lyrics-hint {
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.45;
    }





    /* Phase 4.5R1: Rechte Auto-Save */
    .wizard-rights-autosave-note {
      margin-top: 12px;
      color: rgba(255,255,255,.52);
      font-size: 13px;
    }

    .wizard-rights-choice {
      transition: border-color .18s ease, background .18s ease;
    }

    .wizard-rights-choice:has(input:checked) {
      border-color: rgba(247,166,198,.54);
      background: rgba(247,166,198,.095);
    }






    /* Phase 4.5Q: Rechte & Lizenzen kompakt */
    .wizard-rights-compact-card {
      padding: 24px;
    }

    .wizard-rights-license-inline {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.10);
    }

    .wizard-rights-license-inline > h4 {
      margin: 0 0 6px;
      font-size: 17px;
    }

    .wizard-track-license-panel.is-compact {
      margin-top: 12px;
      padding: 14px;
      border-radius: 18px;
    }

    .wizard-track-license-panel.is-compact .wizard-track-license-head {
      margin-bottom: 10px;
      align-items: center;
    }

    .wizard-track-license-panel.is-compact .wizard-track-license-head strong {
      font-size: 15px;
    }

    .wizard-track-license-quick-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 10px;
      align-items: end;
    }

    .wizard-track-license-action {
      min-width: 0;
    }

    .wizard-track-license-action label {
      margin: 0 0 6px;
      font-size: 13px;
      color: rgba(255,255,255,.64);
    }

    .wizard-license-file-picker {
      display: grid;
      gap: 8px;
    }

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

    .wizard-license-file-button,
    .wizard-track-license-action button {
      width: 100%;
      justify-content: center;
      min-height: 48px;
    }

    .wizard-license-file-button {
      display: inline-flex;
      align-items: center;
      border-radius: 14px;
      padding: 12px 14px;
      border: 1px solid rgba(247,166,198,.50);
      background: rgba(247,166,198,.12);
      color: var(--text);
      font-weight: 850;
      cursor: pointer;
    }

    .wizard-track-license-link-inline-form {
      display: grid;
      gap: 8px;
    }

    .wizard-track-license-link-inline-form input {
      min-height: 48px;
    }

    .wizard-track-license-saved-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 10px;
      margin-top: 12px;
    }

    .wizard-track-license-saved-box {
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.14);
      padding: 10px;
      min-width: 0;
    }

    .wizard-track-license-saved-box h5 {
      margin: 0 0 8px;
      font-size: 13px;
      color: rgba(255,255,255,.68);
    }

    .wizard-track-license-doc-list {
      display: grid;
      gap: 8px;
      margin-top: 0 !important;
    }

    .wizard-track-license-doc-list .artist-row {
      margin: 0;
      padding: 10px;
      border-radius: 13px;
    }

    .wizard-track-license-doc-list .artist-row strong {
      font-size: 13px;
      overflow-wrap: anywhere;
    }

    .wizard-track-license-link-row {
      padding: 8px 0;
    }

    .wizard-track-license-link-row a {
      font-size: 13px;
    }

    .wizard-track-license-link-remove {
      padding: 6px 8px !important;
      font-size: 12px !important;
    }

    @media (max-width: 860px) {
      .wizard-track-license-quick-row,
      .wizard-track-license-saved-grid {
        grid-template-columns: 1fr;
      }
    }


    /* Phase 4.5P: Rechte & Track-Lizenzen */
    .wizard-rights-stack {
      display: grid;
      gap: 16px;
    }

    .wizard-rights-choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }

    .wizard-rights-choice {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
      cursor: pointer;
    }

    .wizard-rights-choice input {
      width: auto;
      margin-top: 4px;
    }

    .wizard-rights-choice strong {
      display: block;
      margin-bottom: 4px;
    }

    .wizard-rights-choice span {
      color: rgba(255,255,255,.62);
      font-size: 13px;
      line-height: 1.4;
    }

    .wizard-track-license-panel {
      margin-top: 14px;
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.025);
    }

    .wizard-track-license-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .wizard-track-license-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 14px;
    }

    .wizard-track-license-mini-card {
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
      padding: 14px;
    }

    .wizard-track-license-link-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .wizard-track-license-link-row:last-child {
      border-bottom: 0;
    }

    .wizard-track-license-link-row a {
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .wizard-track-license-link-row small {
      display: block;
      color: rgba(255,255,255,.52);
      font-size: 12px;
      margin-top: 3px;
      overflow-wrap: anywhere;
    }

    .wizard-track-license-link-remove {
      border-color: rgba(248,113,113,.45) !important;
      color: #fecaca !important;
      background: rgba(127,29,29,.16) !important;
      padding: 7px 10px !important;
      flex: 0 0 auto;
    }

    @media (max-width: 860px) {
      .wizard-rights-choice-grid,
      .wizard-track-license-grid {
        grid-template-columns: 1fr;
      }
    }


    /* Phase 4 Tracks Drag Drop */
    .wizard-track-row[draggable="true"] {
      cursor: grab;
    }

    .wizard-track-row[draggable="true"]:active {
      cursor: grabbing;
    }

    .wizard-track-row.is-dragging {
      opacity: .52;
      transform: scale(.992);
      border-color: rgba(247,166,198,.86) !important;
      background: rgba(247,166,198,.08) !important;
    }

    .wizard-track-list {
      min-height: 10px;
    }


    /* Phase 4 Tracks Pointer Drag */
    .wizard-track-drag-handle {
      touch-action: none !important;
      cursor: grab !important;
    }

    .wizard-track-drag-handle:active {
      cursor: grabbing !important;
    }

    .wizard-track-row[draggable="false"] {
      -webkit-user-drag: none;
      user-select: none;
    }

    .wizard-track-row.is-dragging {
      opacity: .72 !important;
      transform: scale(.995) !important;
      border-color: rgba(247,166,198,.90) !important;
      background: rgba(247,166,198,.09) !important;
      box-shadow: 0 18px 42px rgba(0,0,0,.26) !important;
    }


    /* Phase 4.5C: Track Upload Modal echte Vollflächen-Struktur */
    .wizard-track-source-modal-shell {
      max-width: calc(100vw - 48px) !important;
    }

    .wizard-track-source-modal-main > p:first-child {
      flex: 0 0 auto !important;
      margin: 0 0 16px !important;
    }

    #wizardModalSingleAudioUploadForm.wizard-track-upload-clean-form {
      width: 100% !important;
      max-width: none !important;
    }

    #wizardTrackAudioDropzone.wizard-track-dropzone.is-clean {
      width: 100% !important;
      max-width: none !important;
      min-height: 0 !important;
      height: 100% !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
    }

    @media (max-height: 760px) {
      .wizard-track-source-modal-shell {
        height: min(660px, 88vh) !important;
      }
    }



    .wizardTrackModalContributorsForm {
      width:100%;
      max-width:1080px;
    }

    .track-contributors-shell {
      display:flex;
      flex-direction:column;
      gap:18px;
      margin-top:16px;
      width:100%;
      max-width:none;
    }

    .track-contributors-switch {
      display:inline-flex;
      gap:6px;
      padding:5px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.045);
      width:max-content;
      max-width:100%;
    }

    .track-contributors-switch button {
      border:0;
      border-radius:999px;
      padding:10px 16px;
      background:transparent;
      color:var(--muted);
      cursor:pointer;
      font-weight:850;
    }

    .track-contributors-switch button.is-selected {
      background:rgba(255,255,255,.14);
      color:var(--text);
      box-shadow:0 10px 24px rgba(0,0,0,.18);
    }

    .track-contributors-panel {
      display:none;
      border:1px solid rgba(255,255,255,.11);
      border-radius:22px;
      padding:18px;
      background:rgba(255,255,255,.035);
      width:100%;
      max-width:none;
    }

    .track-contributors-panel.is-active {
      display:block;
    }

    .track-contributors-panel-header {
      display:grid;
      gap:5px;
      margin-bottom:16px;
    }

    .track-contributors-panel-title {
      font-size:1rem;
      font-weight:900;
      color:var(--text);
    }

    .track-contributor-table-head {
      display:grid;
      grid-template-columns:minmax(280px, 1.25fr) minmax(280px, .95fr) 42px;
      gap:14px;
      padding:0 12px 8px;
      color:rgba(255,255,255,.58);
      font-size:.74rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
    }

    .track-contributor-row {
      display:grid;
      grid-template-columns:minmax(280px, 1.25fr) minmax(280px, .95fr) 42px;
      gap:14px;
      align-items:center;
      padding:12px;
      border:1px solid rgba(255,255,255,.095);
      border-radius:18px;
      background:rgba(0,0,0,.12);
      margin-top:10px;
    }

    .track-contributor-row:first-of-type {
      margin-top:0;
    }

    .track-contributor-row label {
      margin:0;
    }

    .track-contributor-row .track-info-label-row {
      display:none;
    }

    .track-contributor-row label:nth-of-type(2) .wizard-search-select-trigger {
      position:relative;
      padding-right:46px;
      border-color:rgba(255,255,255,.2);
      background:
        linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.055)),
        rgba(255,255,255,.035);
    }

    .track-contributor-row label:nth-of-type(2) .wizard-search-select-trigger::after {
      content:"";
      position:absolute;
      right:18px;
      top:50%;
      width:9px;
      height:9px;
      border-right:2px solid rgba(255,255,255,.72);
      border-bottom:2px solid rgba(255,255,255,.72);
      transform:translateY(-65%) rotate(45deg);
      pointer-events:none;
      transition:transform .16s ease, opacity .16s ease;
      opacity:.9;
    }

    .track-contributor-row label:nth-of-type(2) .wizard-search-select.is-open .wizard-search-select-trigger::after,
    .track-contributor-row label:nth-of-type(2) [data-search-select].is-open .wizard-search-select-trigger::after {
      transform:translateY(-35%) rotate(225deg);
      opacity:1;
    }


    .track-contributor-remove-button {
      width:40px;
      height:40px;
      border-radius:999px;
      border:1px solid rgba(248,113,113,.28);
      background:rgba(127,29,29,.14);
      color:#fecaca;
      cursor:pointer;
      font-weight:900;
      margin-bottom:0;
      opacity:.86;
      align-self:center;
    }

    .track-contributor-remove-button:hover {
      opacity:1;
      border-color:rgba(248,113,113,.58);
      background:rgba(127,29,29,.25);
    }

    .track-contributor-add-button {
      margin-top:12px;
      border:1px dashed rgba(255,255,255,.24);
      background:rgba(255,255,255,.045);
      color:var(--text);
      border-radius:16px;
      padding:13px 14px;
      font-weight:850;
      cursor:pointer;
      width:100%;
    }

    .track-contributor-add-button:hover {
      border-color:rgba(255,255,255,.38);
      background:rgba(255,255,255,.07);
    }

    .track-contributors-required-note {
      color:var(--muted);
      font-size:.9rem;
      line-height:1.45;
    }

    @media (max-width: 820px) {
      .track-contributor-table-head {
        display:none;
      }

      .track-contributor-row {
        grid-template-columns:1fr;
      }

      .track-contributor-row .track-info-label-row {
        display:flex;
      }

      .track-contributor-remove-button {
        width:100%;
        border-radius:14px;
      }
    }






    /* Phase 4.5R7: Rechte Clean Structure */
    .wizard-rights-autosave-note {
      display: none !important;
    }

    .wizard-rights-stack {
      width: 100% !important;
      max-width: none !important;
      display: grid !important;
      gap: 18px !important;
    }

    .wizard-rights-stack > .card,
    #rights-basic,
    #rights-instagram-facebook,
    #rights-lines,
    #rights-errors {
      width: 100% !important;
      max-width: none !important;
      box-sizing: border-box !important;
      padding: 32px !important;
      border-radius: 28px !important;
    }

    #wizardRightsForm .wizard-rights-choice-grid,
    #wizardRightsInstagramForm .wizard-rights-choice-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 22px !important;
      width: 100% !important;
      margin-top: 22px !important;
      padding-top: 22px !important;
      border-top: 1px solid rgba(255,255,255,.18) !important;
      align-items: stretch !important;
    }

    #wizardRightsForm .wizard-rights-choice,
    #wizardRightsInstagramForm .wizard-rights-choice {
      width: 100% !important;
      height: 116px !important;
      min-height: 116px !important;
      max-height: 116px !important;
      padding: 0 24px !important;
      border-radius: 30px !important;
      display: grid !important;
      place-items: center !important;
      text-align: center !important;
      box-sizing: border-box !important;
    }

    #wizardRightsForm .wizard-rights-choice input,
    #wizardRightsInstagramForm .wizard-rights-choice input {
      position: absolute !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    #wizardRightsForm .wizard-rights-choice strong,
    #wizardRightsInstagramForm .wizard-rights-choice strong {
      margin: 0 !important;
      padding: 0 !important;
      font-size: 20px !important;
      line-height: 1.08 !important;
    }

    #wizardRightsForm .wizard-rights-choice {
      height: 132px !important;
      min-height: 132px !important;
      max-height: 132px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
    }

    #wizardRightsForm .wizard-rights-choice span {
      display: block !important;
      max-width: 280px !important;
      margin: 0 !important;
      padding: 0 !important;
      color: rgba(255,255,255,.62) !important;
      font-size: 13px !important;
      font-weight: 650 !important;
      line-height: 1.32 !important;
      text-align: center !important;
      letter-spacing: 0 !important;
      text-transform: none !important;
    }

    #wizardRightsInstagramForm .wizard-rights-choice span {
      display: none !important;
    }

    #wizardRightsForm .wizard-rights-choice:has(input:checked),
    #wizardRightsInstagramForm .wizard-rights-choice:has(input:checked) {
      border-color: rgba(247,166,198,.58) !important;
      background:
        radial-gradient(circle at 30% 0%, rgba(247,166,198,.16), transparent 42%),
        rgba(247,166,198,.09) !important;
    }

    #wizardRightsLicenseInline,
    .wizard-rights-license-inline {
      width: 100% !important;
      max-width: none !important;
      box-sizing: border-box !important;
      margin-top: 26px !important;
      padding-top: 26px !important;
      border-top: 1px solid rgba(255,255,255,.10) !important;
    }

    .wizard-track-license-panel-pro {
      width: 100% !important;
      max-width: none !important;
      box-sizing: border-box !important;
      padding: 0 !important;
      overflow: hidden !important;
      border-radius: 26px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background:
        radial-gradient(circle at 14% 0%, rgba(247,166,198,.08), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022)) !important;
    }

    .wizard-track-license-pro-head {
      padding: 18px 20px !important;
      border-bottom: 1px solid rgba(255,255,255,.09) !important;
    }

    .wizard-track-license-pro-head strong {
      font-size: 16px !important;
      line-height: 1.2 !important;
    }

    .wizard-track-license-pro-head span {
      display: block !important;
      margin-top: 4px !important;
      color: rgba(255,255,255,.56) !important;
      font-size: 13px !important;
    }

    .wizard-license-action-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 18px !important;
      padding: 18px 20px !important;
      align-items: stretch !important;
    }

    .wizard-license-action-card {
      width: 100% !important;
      height: 236px !important;
      min-height: 236px !important;
      max-height: 236px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-rows: 1fr auto !important;
      gap: 10px !important;
      padding: 16px !important;
      border-radius: 22px !important;
      border: 1px solid rgba(255,255,255,.10) !important;
      background: rgba(0,0,0,.16) !important;
      min-width: 0 !important;
    }

    .wizard-license-action-card input[type="file"] {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .wizard-license-action-main {
      width: 100% !important;
      min-width: 0 !important;
      height: 100% !important;
      box-sizing: border-box !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
      gap: 8px !important;
      padding: 18px !important;
      border-radius: 18px !important;
      border: 1px dashed rgba(247,166,198,.58) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.13), transparent 42%),
        rgba(247,166,198,.07) !important;
      text-align: center !important;
    }

    .wizard-license-action-main strong {
      font-size: 18px !important;
      line-height: 1.18 !important;
      margin: 0 !important;
    }

    .wizard-license-action-main small {
      color: rgba(255,255,255,.52) !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    .wizard-license-action-icon {
      width: 34px !important;
      height: 34px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 12px !important;
      background: rgba(255,255,255,.10) !important;
      color: #fff !important;
      font-size: 20px !important;
      line-height: 1 !important;
    }

    .wizard-license-link-main {
      grid-template-rows: auto auto auto auto !important;
    }

    .wizard-license-link-input-shell {
      width: 100% !important;
      max-width: 420px !important;
      height: 54px !important;
      min-height: 54px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 66px !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 5px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(0,0,0,.18) !important;
    }

    .wizard-license-link-input-shell input {
      height: 42px !important;
      min-height: 42px !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 10px !important;
    }

    .wizard-license-link-input-shell span {
      width: 56px !important;
      height: 38px !important;
      display: inline-grid !important;
      place-items: center !important;
      padding: 0 !important;
      border-radius: 12px !important;
      background: rgba(255,255,255,.10) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
      color: rgba(255,255,255,.68) !important;
    }

    .wizard-license-action-footer {
      min-height: 22px !important;
      display: grid !important;
      gap: 6px !important;
    }

    .wizard-license-progress {
      height: 7px !important;
      min-height: 7px !important;
      margin: 0 !important;
    }

    .wizardTrackLicenseUploadHint {
      margin: 0 !important;
      min-height: 15px !important;
      line-height: 1.2 !important;
      font-size: 12px !important;
    }

    .wizardTrackLicenseUploadResult:empty,
    .wizardTrackLicenseLinksMessage:not(.show) {
      display: none !important;
    }

    .wizard-track-license-saved-grid-pro {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 18px !important;
      padding: 0 20px 20px !important;
      margin: 0 !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .wizard-track-license-saved-box {
      width: 100% !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
      display: grid !important;
      gap: 10px !important;
      align-content: start !important;
      border-radius: 20px !important;
      padding: 14px !important;
      background: rgba(0,0,0,.12) !important;
    }

    .wizard-track-license-saved-box h5 {
      margin: 0 !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      gap: 12px !important;
    }

    .wizard-license-list-count {
      float: none !important;
      flex: 0 0 auto !important;
      color: rgba(255,255,255,.56) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
      padding: 4px 8px !important;
      border-radius: 999px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(255,255,255,.045) !important;
    }

    .wizard-license-simple-list {
      display: grid !important;
      gap: 8px !important;
      width: 100% !important;
      min-width: 0 !important;
    }

    .wizard-license-simple-row,
    .wizard-track-license-link-row,
    .wizard-license-document-row {
      width: 100% !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-columns: 32px minmax(0, 1fr) 32px !important;
      align-items: center !important;
      gap: 10px !important;
      padding: 10px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(255,255,255,.10) !important;
      background: rgba(255,255,255,.035) !important;
      border-bottom: 1px solid rgba(255,255,255,.10) !important;
    }

    .wizard-license-simple-count {
      width: 28px !important;
      height: 28px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 10px !important;
      background: rgba(255,255,255,.08) !important;
      color: rgba(255,255,255,.72) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
    }

    .wizard-license-simple-row a,
    .wizard-license-simple-row strong {
      display: block !important;
      width: 100% !important;
      min-width: 0 !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      color: var(--text) !important;
      text-decoration: none !important;
      font-size: 13px !important;
      font-weight: 800 !important;
      border: 0 !important;
      background: transparent !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    .wizard-license-simple-delete,
    .wizardDeleteLicenseDocumentButton,
    .wizard-track-license-link-remove {
      width: 30px !important;
      height: 30px !important;
      min-height: 0 !important;
      padding: 0 !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 11px !important;
      border: 1px solid rgba(248,113,113,.46) !important;
      background: rgba(127,29,29,.18) !important;
      color: #fecaca !important;
      font-size: 15px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
    }

    @media (max-width: 920px) {
      #wizardRightsForm .wizard-rights-choice-grid,
      #wizardRightsInstagramForm .wizard-rights-choice-grid,
      .wizard-license-action-grid,
      .wizard-track-license-saved-grid-pro {
        grid-template-columns: 1fr !important;
      }

      .wizard-license-action-card {
        height: auto !important;
        min-height: 220px !important;
        max-height: none !important;
      }
    }



    /* Phase 4.5R8: Identische Lizenzkarten */
    .wizard-license-action-grid.is-identical {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 18px !important;
      align-items: stretch !important;
      padding: 18px 20px !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .wizard-license-action-card.is-identical-card {
      width: 100% !important;
      min-width: 0 !important;
      height: 240px !important;
      min-height: 240px !important;
      max-height: 240px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-rows: 96px 64px 38px !important;
      gap: 12px !important;
      padding: 16px !important;
      border-radius: 22px !important;
      border: 1px solid rgba(255,255,255,.10) !important;
      background: rgba(0,0,0,.16) !important;
      overflow: hidden !important;
    }

    .wizard-license-action-card.is-identical-card input[type="file"] {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .wizard-license-action-card.is-identical-card .wizard-license-action-main {
      width: 100% !important;
      min-width: 0 !important;
      height: 96px !important;
      min-height: 96px !important;
      max-height: 96px !important;
      box-sizing: border-box !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
      gap: 6px !important;
      padding: 12px !important;
      border-radius: 18px !important;
      border: 1px dashed rgba(247,166,198,.54) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.12), transparent 42%),
        rgba(247,166,198,.07) !important;
      text-align: center !important;
    }

    .wizard-license-action-card.is-identical-card .wizard-license-action-main .wizard-license-action-icon {
      width: 28px !important;
      height: 28px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 10px !important;
      background: rgba(255,255,255,.10) !important;
      color: #fff !important;
      font-size: 17px !important;
      line-height: 1 !important;
    }

    .wizard-license-action-card.is-identical-card .wizard-license-action-main strong {
      margin: 0 !important;
      font-size: 17px !important;
      line-height: 1.1 !important;
    }

    .wizard-license-action-card.is-identical-card .wizard-license-action-main small {
      margin: 0 !important;
      color: rgba(255,255,255,.52) !important;
      font-size: 12px !important;
      line-height: 1.25 !important;
      font-weight: 700 !important;
    }

    .wizard-license-action-control {
      width: 100% !important;
      height: 64px !important;
      min-height: 64px !important;
      max-height: 64px !important;
      box-sizing: border-box !important;
      display: grid !important;
      align-items: center !important;
    }

    .wizard-license-control-button {
      width: 100% !important;
      height: 64px !important;
      min-height: 64px !important;
      max-height: 64px !important;
      box-sizing: border-box !important;
      display: grid !important;
      place-items: center !important;
      border-radius: 16px !important;
      border: 1px solid rgba(247,166,198,.45) !important;
      background: rgba(247,166,198,.10) !important;
      cursor: pointer !important;
      text-align: center !important;
      padding: 0 14px !important;
      margin: 0 !important;
    }

    .wizard-license-control-button span {
      font-weight: 900 !important;
      color: var(--text) !important;
      font-size: 14px !important;
      line-height: 1.1 !important;
    }

    .wizard-license-link-input-shell {
      width: 100% !important;
      height: 64px !important;
      min-height: 64px !important;
      max-height: 64px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 70px !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 7px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(255,255,255,.045) !important;
    }

    .wizard-license-link-input-shell input {
      height: 48px !important;
      min-height: 48px !important;
      max-height: 48px !important;
      box-sizing: border-box !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 10px !important;
      margin: 0 !important;
    }

    .wizard-license-link-input-shell span {
      width: 58px !important;
      height: 42px !important;
      min-height: 42px !important;
      max-height: 42px !important;
      justify-self: end !important;
      display: inline-grid !important;
      place-items: center !important;
      box-sizing: border-box !important;
      padding: 0 !important;
      margin: 0 !important;
      border-radius: 12px !important;
      background: rgba(255,255,255,.10) !important;
      color: rgba(255,255,255,.68) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
    }

    .wizard-license-action-footer {
      height: 38px !important;
      min-height: 38px !important;
      max-height: 38px !important;
      display: grid !important;
      grid-template-rows: 7px 18px !important;
      gap: 6px !important;
      overflow: hidden !important;
    }

    .wizard-license-action-footer .message,
    .wizard-license-action-footer .upload-result {
      margin: 0 !important;
      min-height: 0 !important;
      padding: 0 !important;
      font-size: 12px !important;
      line-height: 1.2 !important;
      background: transparent !important;
      border: 0 !important;
    }

    .wizard-license-progress {
      height: 7px !important;
      min-height: 7px !important;
      max-height: 7px !important;
      margin: 0 !important;
    }

    .wizardTrackLicenseUploadHint {
      height: 18px !important;
      min-height: 18px !important;
      max-height: 18px !important;
      overflow: hidden !important;
      margin: 0 !important;
      line-height: 1.2 !important;
      font-size: 12px !important;
    }

    @media (max-width: 920px) {
      .wizard-license-action-grid.is-identical {
        grid-template-columns: 1fr !important;
      }
    }



    /* Phase 4.5R9: Rechte Final Card Fix */
    .wizard-rights-autosave-note {
      display: none !important;
    }

    #wizardRightsForm .wizard-rights-choice-grid,
    #wizardRightsInstagramForm .wizard-rights-choice-grid {
      border-top: 0 !important;
      padding-top: 0 !important;
      margin-top: 24px !important;
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 22px !important;
      align-items: stretch !important;
    }

    #wizardRightsForm .wizard-rights-choice,
    #wizardRightsInstagramForm .wizard-rights-choice {
      height: 118px !important;
      min-height: 118px !important;
      max-height: 118px !important;
      padding: 0 !important;
      margin: 0 !important;
      display: grid !important;
      place-items: center !important;
      align-items: center !important;
      justify-items: center !important;
      box-sizing: border-box !important;
      border-radius: 30px !important;
      line-height: 1 !important;
      overflow: hidden !important;
    }

    #wizardRightsForm .wizard-rights-choice > div,
    #wizardRightsInstagramForm .wizard-rights-choice > div {
      height: 118px !important;
      min-height: 118px !important;
      max-height: 118px !important;
      width: 100% !important;
      display: grid !important;
      place-items: center !important;
      box-sizing: border-box !important;
      padding: 0 24px !important;
      margin: 0 !important;
    }

    #wizardRightsForm .wizard-rights-choice input,
    #wizardRightsInstagramForm .wizard-rights-choice input {
      position: absolute !important;
      opacity: 0 !important;
      width: 0 !important;
      height: 0 !important;
      margin: 0 !important;
      pointer-events: none !important;
    }

    #wizardRightsForm .wizard-rights-choice strong,
    #wizardRightsInstagramForm .wizard-rights-choice strong {
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1.05 !important;
      font-size: 20px !important;
      text-align: center !important;
    }

    #wizardRightsForm .wizard-rights-choice span,
    #wizardRightsInstagramForm .wizard-rights-choice span {
      display: none !important;
    }

    .r9-license-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 18px !important;
      align-items: stretch !important;
      padding: 18px 20px !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .r9-license-card {
      height: 238px !important;
      min-height: 238px !important;
      max-height: 238px !important;
      width: 100% !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-rows: 1fr 34px !important;
      gap: 10px !important;
      padding: 16px !important;
      border-radius: 22px !important;
      border: 1px solid rgba(255,255,255,.10) !important;
      background: rgba(0,0,0,.16) !important;
      overflow: hidden !important;
    }

    .r9-license-card input[type="file"] {
      position: absolute !important;
      opacity: 0 !important;
      width: 1px !important;
      height: 1px !important;
      pointer-events: none !important;
    }

    .r9-license-main {
      width: 100% !important;
      min-width: 0 !important;
      height: 100% !important;
      box-sizing: border-box !important;
      display: grid !important;
      place-items: center !important;
      align-content: center !important;
      gap: 8px !important;
      padding: 18px !important;
      border-radius: 18px !important;
      border: 1px dashed rgba(247,166,198,.58) !important;
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.13), transparent 42%),
        rgba(247,166,198,.07) !important;
      text-align: center !important;
    }

    .r9-license-icon {
      width: 34px !important;
      height: 34px !important;
      display: inline-grid !important;
      place-items: center !important;
      border-radius: 12px !important;
      background: rgba(255,255,255,.10) !important;
      font-size: 19px !important;
      line-height: 1 !important;
    }

    .r9-license-main strong {
      margin: 0 !important;
      font-size: 18px !important;
      line-height: 1.15 !important;
    }

    .r9-license-main small {
      margin: 0 !important;
      color: rgba(255,255,255,.52) !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    .r9-license-file-main {
      cursor: pointer !important;
    }

    .r9-license-link-main {
      grid-template-rows: auto auto auto auto !important;
    }

    .r9-license-link-input {
      width: min(100%, 420px) !important;
      height: 54px !important;
      min-height: 54px !important;
      max-height: 54px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 66px !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 5px !important;
      margin: 0 !important;
      border-radius: 16px !important;
      border: 1px solid rgba(255,255,255,.12) !important;
      background: rgba(0,0,0,.18) !important;
    }

    .r9-license-link-input input {
      height: 42px !important;
      min-height: 42px !important;
      max-height: 42px !important;
      padding: 0 10px !important;
      margin: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    .r9-license-link-input span {
      width: 56px !important;
      height: 38px !important;
      display: inline-grid !important;
      place-items: center !important;
      padding: 0 !important;
      margin: 0 !important;
      border-radius: 12px !important;
      background: rgba(255,255,255,.10) !important;
      font-size: 12px !important;
      font-weight: 900 !important;
      color: rgba(255,255,255,.68) !important;
    }

    .r9-license-footer {
      height: 34px !important;
      min-height: 34px !important;
      max-height: 34px !important;
      overflow: hidden !important;
      display: grid !important;
      gap: 5px !important;
      align-content: start !important;
    }

    .r9-license-footer .wizard-license-progress {
      height: 7px !important;
      min-height: 7px !important;
      max-height: 7px !important;
      margin: 0 !important;
    }

    .r9-license-footer .wizardTrackLicenseUploadHint {
      height: 17px !important;
      min-height: 17px !important;
      max-height: 17px !important;
      line-height: 1.2 !important;
      margin: 0 !important;
      overflow: hidden !important;
      font-size: 12px !important;
    }

    .r9-license-footer .message,
    .r9-license-footer .upload-result {
      margin: 0 !important;
      padding: 0 !important;
      min-height: 0 !important;
      border: 0 !important;
      background: transparent !important;
      font-size: 12px !important;
      line-height: 1.2 !important;
    }

    @media (max-width: 920px) {
      .r9-license-grid,
      #wizardRightsForm .wizard-rights-choice-grid,
      #wizardRightsInstagramForm .wizard-rights-choice-grid {
        grid-template-columns: 1fr !important;
      }
    }



    /* Phase 4.5R10: Lizenz Upload Inline Loading */
    .r9-license-upload-card {
      grid-template-rows: 1fr 0px !important;
    }

    .r9-license-upload-card .r9-license-footer {
      display: none !important;
    }

    .r9-license-file-main {
      position: relative !important;
      overflow: hidden !important;
    }

    .r9-license-file-main.is-uploading {
      pointer-events: none !important;
      opacity: .86 !important;
      border-style: solid !important;
    }

    .r9-license-file-main.is-uploading::after {
      content: "";
      position: absolute;
      width: 34px;
      height: 34px;
      right: 18px;
      top: 18px;
      border-radius: 999px;
      border: 3px solid rgba(255,255,255,.20);
      border-top-color: rgba(247,166,198,.95);
      animation: hsLicenseUploadSpin .85s linear infinite;
      box-sizing: border-box;
    }

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

    .r9-license-file-main.is-uploading .r9-license-icon {
      opacity: .55 !important;
    }

    .wizardTrackLicenseUploadResult:empty {
      display: none !important;
    }



    /* Phase 4.5R11: Wizard Required Field Stars */
    .wizard-required-star {
      color: #f7a6c6;
      font-weight: 950;
      margin-left: 4px;
      text-shadow: 0 0 18px rgba(247,166,198,.35);
    }



    /* Phase 4.5R12: Required Star Tight Spacing */
    .wizard-required-star {
      display: inline-block;
      margin-left: 2px !important;
      vertical-align: .18em;
      line-height: 1;
    }



    /* Phase 4.5S: Prüfung & Einreichen Review */
    .wizard-review-stack {
      display: grid;
      gap: 18px;
      width: 100%;
    }

    .wizard-review-hero {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 22px;
      align-items: stretch;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.12), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
    }

    .wizard-review-cover {
      min-height: 220px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 50% 0%, rgba(247,166,198,.13), transparent 42%),
        rgba(0,0,0,.22);
      overflow: hidden;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.58);
      text-align: center;
      font-weight: 850;
    }

    .wizard-review-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .wizard-review-main {
      min-width: 0;
      display: grid;
      align-content: center;
      gap: 16px;
    }

    .wizard-review-main h3 {
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.04;
      letter-spacing: -.035em;
    }

    .wizard-review-main p {
      margin: 0;
      color: rgba(255,255,255,.64);
      font-size: 15px;
      line-height: 1.55;
    }

    .wizard-review-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .wizard-review-pill {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
      color: rgba(255,255,255,.78);
      font-size: 12px;
      font-weight: 850;
      line-height: 1;
    }

    .wizard-review-pill.is-good {
      border-color: rgba(74,222,128,.34);
      background: rgba(22,101,52,.16);
      color: #bbf7d0;
    }

    .wizard-review-pill.is-warn {
      border-color: rgba(255,159,67,.42);
      background: rgba(255,159,67,.12);
      color: #ffe1bd;
    }

    .wizard-review-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .wizard-review-card {
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(circle at 14% 0%, rgba(247,166,198,.075), transparent 38%),
        rgba(0,0,0,.18);
      min-width: 0;
    }

    .wizard-review-card h4 {
      margin: 0 0 14px;
      font-size: 18px;
      line-height: 1.2;
    }

    .wizard-review-data-list {
      display: grid;
      gap: 10px;
    }

    .wizard-review-data-row {
      display: grid;
      grid-template-columns: 130px minmax(0, 1fr);
      gap: 12px;
      align-items: baseline;
      min-width: 0;
      padding: 0 0 10px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .wizard-review-data-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .wizard-review-data-row span {
      color: rgba(255,255,255,.50);
      font-size: 13px;
      font-weight: 760;
    }

    .wizard-review-data-row strong {
      min-width: 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 850;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .wizard-review-track-list {
      display: grid;
      gap: 9px;
    }

    .wizard-review-track-row {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 11px;
      align-items: center;
      padding: 11px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.09);
      background: rgba(255,255,255,.032);
      min-width: 0;
    }

    .wizard-review-track-number {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      border-radius: 11px;
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.72);
      font-size: 12px;
      font-weight: 900;
    }

    .wizard-review-track-main {
      min-width: 0;
      display: grid;
      gap: 3px;
    }

    .wizard-review-track-main strong,
    .wizard-review-track-main span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .wizard-review-track-main strong {
      color: var(--text);
      font-size: 14px;
      font-weight: 900;
    }

    .wizard-review-track-main span {
      color: rgba(255,255,255,.54);
      font-size: 12px;
      font-weight: 650;
    }




    .wizard-review-submit-card {
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(247,166,198,.18);
      background:
        radial-gradient(circle at 18% 0%, rgba(247,166,198,.11), transparent 38%),
        linear-gradient(180deg, rgba(247,166,198,.040), rgba(255,255,255,.014));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .wizard-review-submit-card h3 {
      margin: 0;
      font-size: 22px;
    }

    .wizard-review-submit-card p {
      margin: 6px 0 0;
      color: rgba(255,255,255,.58);
      line-height: 1.5;
    }

    .wizard-review-submit-card button {
      min-height: 54px !important;
      padding: 14px 22px !important;
      border-radius: 16px !important;
      font-size: 15px !important;
      white-space: nowrap;
    }

    .wizard-review-submit-card button:disabled {
      opacity: .5;
      cursor: not-allowed;
    }

    @media (max-width: 920px) {
      .wizard-review-hero,
      .wizard-review-grid {
        grid-template-columns: 1fr;
      }

      .wizard-review-cover {
        min-height: 260px;
      }

      .wizard-review-submit-card {
        align-items: stretch;
        flex-direction: column;
      }

      .wizard-review-submit-card button {
        width: 100%;
      }
    }



    /* Phase 4 Rights: Untertexte in Exklusiv/Nicht-exklusiv sichtbar halten */
    #wizardRightsForm .wizard-rights-choice > div {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
      width: 100% !important;
      min-width: 0 !important;
      text-align: center !important;
    }

    #wizardRightsForm .wizard-rights-choice > div > strong {
      display: block !important;
      font-size: 24px !important;
      line-height: 1.15 !important;
      font-weight: 850 !important;
    }

    #wizardRightsForm .wizard-rights-choice > div > span {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      max-width: 320px !important;
      color: rgba(255,255,255,.66) !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      font-weight: 650 !important;
      text-align: center !important;
      white-space: normal !important;
    }

    #wizardRightsInstagramForm .wizard-rights-choice > div > span {
      display: none !important;
    }


    /* Phase 4 Rights: sichtbare Untertitel direkt im Exklusiv/Nicht-exklusiv Button */
    #wizardRightsForm .wizard-rights-choice .wizard-rights-choice-subtitle {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      margin: 6px auto 0 !important;
      padding: 0 !important;
      max-width: 320px !important;
      color: rgba(255,255,255,.68) !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      font-weight: 650 !important;
      letter-spacing: 0 !important;
      text-transform: none !important;
      text-align: center !important;
      white-space: normal !important;
      pointer-events: none !important;
    }

    #wizardRightsForm .wizard-rights-choice > div {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0 !important;
      width: 100% !important;
      min-width: 0 !important;
      text-align: center !important;
    }

    #wizardRightsForm .wizard-rights-choice {
      min-height: 148px !important;
      height: 148px !important;
      align-items: center !important;
      justify-content: center !important;
      overflow: visible !important;
    }


    /* Final: Primary Buttons beim Drücken/Loading/Disabled hellgrau mit schwarzem Text */
    button.primary:active,
    button.primary:hover:active,
    button.primary:focus:active,
    button.primary:disabled,
    button.primary[disabled],
    button.primary.is-loading,
    button.primary[aria-busy="true"],
    a.primary:active,
    a.primary:hover:active,
    a.primary:focus:active,
    a.primary[aria-disabled="true"],
    .primary:active,
    .primary:hover:active,
    .primary:focus:active,
    .primary:disabled,
    .primary[disabled],
    .primary.is-loading,
    .primary[aria-busy="true"],
    #wizardSubmitButton:active,
    #wizardSubmitButton:hover:active,
    #wizardSubmitButton:disabled,
    #wizardSubmitButton[disabled],
    .wizard-submit-button:active,
    .wizard-submit-button:hover:active,
    .wizard-submit-button:disabled,
    .wizard-submit-button[disabled] {
      background: #eeeeee !important;
      background-color: #eeeeee !important;
      color: #050505 !important;
      border-color: #eeeeee !important;
      box-shadow: none !important;
      text-shadow: none !important;
      opacity: 1 !important;
      -webkit-text-fill-color: #050505 !important;
    }

    button.primary:active,
    button.primary:hover:active,
    button.primary:focus:active,
    a.primary:active,
    a.primary:hover:active,
    a.primary:focus:active,
    .primary:active,
    .primary:hover:active,
    .primary:focus:active,
    #wizardSubmitButton:active,
    #wizardSubmitButton:hover:active,
    .wizard-submit-button:active,
    .wizard-submit-button:hover:active {
      transform: translateY(1px);
    }


    /* Final fixed state: Primary Button muted/disabled/loading */
    .primary.primary-muted,
    button.primary.primary-muted,
    a.primary.primary-muted,
    .primary.primary-muted:hover,
    button.primary.primary-muted:hover,
    a.primary.primary-muted:hover,
    .primary.primary-muted:active,
    button.primary.primary-muted:active,
    a.primary.primary-muted:active,
    .primary.primary-muted:focus,
    button.primary.primary-muted:focus,
    a.primary.primary-muted:focus,
    button.primary:disabled,
    button.primary[disabled],
    #wizardSubmitButton:disabled,
    #wizardSubmitButton[disabled] {
      background: #eeeeee !important;
      background-color: #eeeeee !important;
      color: #050505 !important;
      border-color: #eeeeee !important;
      box-shadow: none !important;
      text-shadow: none !important;
      opacity: 1 !important;
      -webkit-text-fill-color: #050505 !important;
      filter: none !important;
    }

    .primary.primary-muted *,
    button.primary.primary-muted *,
    a.primary.primary-muted *,
    button.primary:disabled *,
    button.primary[disabled] *,
    #wizardSubmitButton:disabled *,
    #wizardSubmitButton[disabled] * {
      color: #050505 !important;
      -webkit-text-fill-color: #050505 !important;
    }


    /* Final: Primary Buttons bei Hover/Focus/Active hellgrau/schwarz */
    button.primary:hover:not(:disabled),
    button.primary:focus:not(:disabled),
    button.primary:focus-visible:not(:disabled),
    button.primary:active:not(:disabled),
    a.primary:hover,
    a.primary:focus,
    a.primary:focus-visible,
    a.primary:active,
    .primary:hover:not(:disabled),
    .primary:focus:not(:disabled),
    .primary:focus-visible:not(:disabled),
    .primary:active:not(:disabled),
    #wizardSubmitButton:hover:not(:disabled),
    #wizardSubmitButton:focus:not(:disabled),
    #wizardSubmitButton:focus-visible:not(:disabled),
    #wizardSubmitButton:active:not(:disabled) {
      background: #eeeeee !important;
      background-color: #eeeeee !important;
      color: #050505 !important;
      border-color: #eeeeee !important;
      box-shadow: none !important;
      text-shadow: none !important;
      opacity: 1 !important;
      -webkit-text-fill-color: #050505 !important;
      filter: none !important;
    }

    button.primary:hover:not(:disabled) *,
    button.primary:focus:not(:disabled) *,
    button.primary:focus-visible:not(:disabled) *,
    button.primary:active:not(:disabled) *,
    a.primary:hover *,
    a.primary:focus *,
    a.primary:focus-visible *,
    a.primary:active *,
    .primary:hover:not(:disabled) *,
    .primary:focus:not(:disabled) *,
    .primary:focus-visible:not(:disabled) *,
    .primary:active:not(:disabled) *,
    #wizardSubmitButton:hover:not(:disabled) *,
    #wizardSubmitButton:focus:not(:disabled) *,
    #wizardSubmitButton:focus-visible:not(:disabled) *,
    #wizardSubmitButton:active:not(:disabled) * {
      color: #050505 !important;
      -webkit-text-fill-color: #050505 !important;
    }


    /* Review: Offene Punkte Card nur wenn Fehler vorhanden */
    .wizard-review-open-points-card {
      margin-top: 18px !important;
      padding: 26px 28px !important;
      border: 1px solid rgba(247,166,198,.28) !important;
      border-radius: 28px !important;
      background:
        radial-gradient(circle at 16% 0%, rgba(247,166,198,.105), transparent 34%),
        rgba(255,255,255,.012) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 60px rgba(0,0,0,.20) !important;
    }

    .wizard-review-open-points-head {
      display: flex !important;
      align-items: flex-start !important;
      justify-content: space-between !important;
      gap: 16px !important;
      margin-bottom: 18px !important;
    }

    .wizard-review-open-points-head h3 {
      margin: 0 !important;
      color: #ffffff !important;
      font-size: 24px !important;
      line-height: 1.15 !important;
      font-weight: 900 !important;
      letter-spacing: -.02em !important;
    }

    .wizard-review-open-points-head p {
      margin: 10px 0 0 !important;
      color: rgba(204,204,204,.78) !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      font-weight: 650 !important;
    }

    .wizard-review-open-points-count {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-height: 32px !important;
      padding: 8px 11px !important;
      border-radius: 999px !important;
      border: 1px solid rgba(251,146,60,.42) !important;
      background: rgba(251,146,60,.12) !important;
      color: #fed7aa !important;
      font-size: 12px !important;
      line-height: 1 !important;
      font-weight: 900 !important;
      white-space: nowrap !important;
    }

    .wizard-review-open-points-list {
      display: grid !important;
      gap: 10px !important;
    }

    .wizard-review-open-point-pill {
      display: flex !important;
      align-items: center !important;
      gap: 11px !important;
      min-height: 54px !important;
      padding: 13px 15px !important;
      border: 1px solid rgba(247,166,198,.26) !important;
      border-radius: 18px !important;
      background: rgba(255,255,255,.026) !important;
      color: #ffffff !important;
    }

    .wizard-review-open-point-pill > span {
      width: 7px !important;
      height: 7px !important;
      flex: 0 0 7px !important;
      border-radius: 999px !important;
      background: rgba(247,166,198,.78) !important;
      box-shadow: 0 0 0 4px rgba(247,166,198,.055) !important;
    }

    .wizard-review-open-point-pill > strong {
      color: #ffffff !important;
      font-size: 15px !important;
      line-height: 1.35 !important;
      font-weight: 800 !important;
    }



    /* Phase 4 Core Accent: außen sichtbar, innen ruhig */
    :root {
      --core-accent: #f97316;
      --core-accent-soft: rgba(249,115,22,.13);
      --core-accent-line: rgba(249,115,22,.52);
      --core-accent-text: #fed7aa;
    }

    .hs-core-workflow-pill.is-core-accent,
    .wizard-review-workflow-pill.is-core-accent,
    .badge.hs-core-workflow-pill.is-core-accent {
      border-color: var(--core-accent-line) !important;
      background: var(--core-accent-soft) !important;
      color: var(--core-accent-text) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 0 18px rgba(249,115,22,.10) !important;
    }

    .wizard-review-hero.is-core-accent {
      position: relative !important;
      border-color: rgba(255,255,255,.15) !important;
      background:
        radial-gradient(
          circle at 88% 8%,
          rgba(247,166,198,.045),
          transparent 36%
        ),
        linear-gradient(
          180deg,
          rgba(255,255,255,.024),
          rgba(255,255,255,.010)
        ) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 60px rgba(0,0,0,.16) !important;
    }
/* =========================================================
   Phase 4.9A Credit Inline Field Warning
   Shows Composer/Lyricist full-name validation directly under the field.
   ========================================================= */

.track-contributor-field-error {
  display: none;
  margin-top: 6px;
  color: #ffb4cf;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

[data-contributor-row].has-field-error .track-contributor-field-error {
  display: block;
}

[data-contributor-row].has-field-error input[name$="ContributorName"] {
  border-color: rgba(255, 120, 170, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(255, 120, 170, 0.12) !important;
}

/* ===== End Phase 4.9A Credit Inline Field Warning ===== */

/* H&S SONOS SUPPORT BOT – PHASE 4.9B */
body.sonos-support-open {
  overflow: hidden;
}

.wizard-help-support {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 166, 198, 0.14);
}

.wizard-help-support-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.wizard-help-support p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.wizard-help-support-button {
  width: 100%;
  min-height: 44px;
}

.sonos-support-backdrop[hidden] {
  display: none !important;
}

.sonos-support-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: flex-end;
  background: rgba(3, 5, 10, 0);
  backdrop-filter: blur(0);
  transition:
    background 180ms ease,
    backdrop-filter 180ms ease;
}

.sonos-support-backdrop.is-open {
  background: rgba(3, 5, 10, 0.62);
  backdrop-filter: blur(8px);
}

.sonos-support-drawer {
  width: min(460px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border-left: 1px solid rgba(247, 166, 198, 0.2);
  background:
    radial-gradient(circle at top left, rgba(247, 166, 198, 0.12), transparent 24rem),
    linear-gradient(180deg, #15151d, #0d0e14);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.sonos-support-backdrop.is-open .sonos-support-drawer {
  transform: translateX(0);
}

.sonos-support-header {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(247, 166, 198, 0.14);
}

.sonos-support-header h2 {
  margin: 4px 0 4px;
  font-size: 25px;
}

.sonos-support-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sonos-support-close {
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 166, 198, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.sonos-support-close:hover {
  border-color: rgba(247, 166, 198, 0.38);
  background: rgba(247, 166, 198, 0.08);
}

.sonos-support-messages {
  min-height: 0;
  overflow-y: auto;
  padding: 22px;
  scroll-behavior: smooth;
}

.sonos-support-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 18px;
}

.sonos-support-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 166, 198, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(247, 166, 198, 0.2), rgba(247, 166, 198, 0.05));
  color: #ffd4e6;
  font-size: 22px;
  font-weight: 800;
}

.sonos-support-empty h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.sonos-support-empty p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sonos-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.sonos-message.is-user {
  align-items: flex-end;
}

.sonos-message.is-assistant {
  align-items: flex-start;
}

.sonos-message-label {
  margin: 0 5px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sonos-message-bubble {
  max-width: 88%;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  overflow-wrap: anywhere;
}

.sonos-message.is-user .sonos-message-bubble {
  border-color: rgba(247, 166, 198, 0.2);
  border-bottom-right-radius: 5px;
  background: rgba(247, 166, 198, 0.12);
}

.sonos-message.is-assistant .sonos-message-bubble {
  border-bottom-left-radius: 5px;
}

.sonos-message-bubble > p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.sonos-message-meta {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sonos-message-meta-title {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sonos-message-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sonos-message-links a,
.sonos-message-links span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(247, 166, 198, 0.16);
  border-radius: 10px;
  background: rgba(247, 166, 198, 0.055);
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.sonos-message-links a:hover {
  border-color: rgba(247, 166, 198, 0.36);
  background: rgba(247, 166, 198, 0.1);
}

.sonos-support-error {
  margin: 0 22px 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 103, 123, 0.28);
  border-radius: 12px;
  background: rgba(255, 103, 123, 0.08);
  color: #ffc1ca;
  font-size: 13px;
  line-height: 1.45;
}

.sonos-support-composer {
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(247, 166, 198, 0.14);
  background: rgba(8, 9, 14, 0.72);
}

.sonos-support-input-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sonos-support-composer textarea {
  width: 100%;
  min-height: 84px;
  max-height: 180px;
  resize: vertical;
  box-sizing: border-box;
}

.sonos-support-composer-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.sonos-support-send,
.sonos-support-reset {
  min-height: 42px;
}

.sonos-support-send {
  min-width: 118px;
}

.sonos-support-storage-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .sonos-support-drawer {
    width: 100%;
    border-left: 0;
  }

  .sonos-support-header {
    padding: 18px 16px 15px;
  }

  .sonos-support-messages {
    padding: 18px 15px;
  }

  .sonos-support-composer {
    padding: 14px 15px 16px;
  }

  .sonos-support-error {
    margin-right: 15px;
    margin-left: 15px;
  }

  .sonos-message-bubble {
    max-width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sonos-support-backdrop,
  .sonos-support-drawer {
    transition: none;
  }

  .sonos-support-messages {
    scroll-behavior: auto;
  }
}


/* H&S SONOS MARKDOWN – PHASE 4.9C */
.sonos-message-bubble p {
  margin: 0;
}

.sonos-message-bubble p + p,
.sonos-message-bubble p + .sonos-message-list,
.sonos-message-bubble .sonos-message-list + p {
  margin-top: 0.75rem;
}

.sonos-message-bubble strong {
  font-weight: 700;
}

.sonos-message-bubble code {
  padding: 0.08em 0.32em;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.07);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.sonos-message-list {
  margin: 0;
  padding-left: 1.25rem;
}

.sonos-message-list li + li {
  margin-top: 0.3rem;
}


/* Phase 4: Submission note */
.wizard-review-note-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(247, 166, 198, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(247, 166, 198, 0.045),
      rgba(255, 255, 255, 0.012)
    );
}

.wizard-review-note-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.wizard-review-note-head h3 {
  margin: 0 0 6px;
}

.wizard-review-note-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wizard-review-note-optional {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(247, 166, 198, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.wizard-review-note-input {
  display: block;
  width: 100%;
  min-height: 132px;
  resize: vertical;
  box-sizing: border-box;
  padding: 14px 15px;
  border: 1px solid rgba(247, 166, 198, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  font: inherit;
  line-height: 1.55;
}

.wizard-review-note-input:focus {
  outline: none;
  border-color: rgba(247, 166, 198, 0.58);
  box-shadow: 0 0 0 3px rgba(247, 166, 198, 0.09);
}

.wizard-review-note-input::placeholder {
  color: var(--muted);
}

.wizard-review-note-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

.wizard-review-note-status.is-saving {
  color: var(--muted);
}

.wizard-review-note-status.is-success {
  color: var(--success);
}

.wizard-review-note-status.is-error {
  color: var(--danger);
}

.wizard-review-note-count {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.wizard-review-note-readonly {
  min-height: 72px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .wizard-review-note-card {
    padding: 18px;
  }

  .wizard-review-note-head {
    display: grid;
    gap: 10px;
  }

  .wizard-review-note-optional {
    justify-self: start;
  }
}


/* Phase 4: Desktop numbered section navigation */

@media (min-width: 981px) {
  .wizard-workspace,
  .wizard-workspace.has-help {
    width: min(1380px, 100%) !important;
    grid-template-columns:
      minmax(0, 1fr)
      300px !important;
    gap: 20px !important;
  }

  .wizard-workspace.help-collapsed {
    width: min(1380px, 100%) !important;
    grid-template-columns:
      minmax(0, 1fr)
      56px !important;
    gap: 14px !important;
  }

  .wizard-section-desktop-layout {
    display: grid;
    grid-template-columns:
      minmax(185px, 218px)
      minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .wizard-section-main {
    min-width: 0;
  }

  .wizard-section-side-menu {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 14px;
    align-content: start;
    min-width: 0;
  }

  .wizard-section-side-menu-items {
    display: grid;
    gap: 9px;
  }

  [data-wizard-section="basic"]
    .wizard-step-content
    .wizard-section-native-side-menu,
  [data-wizard-section="cover"]
    .wizard-step-content
    .wizard-section-native-side-menu {
    counter-reset: wizard-native-section;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    align-content: start !important;
    min-width: 185px;
    max-width: 218px;
  }
}

.wizard-section-side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.wizard-section-side-menu-head strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.wizard-section-side-menu-head span {
  flex: 0 0 auto;
  color: rgba(204, 204, 204, 0.58);
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  white-space: nowrap;
}

.wizard-section-side-menu-item,
.wizard-step-content
  .wizard-section-native-side-menu
  > button,
.wizard-step-content
  .wizard-section-native-side-menu
  > a {
  width: 100% !important;
  min-height: 54px !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 11px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.014) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: left !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.wizard-section-side-menu-item:hover,
.wizard-step-content
  .wizard-section-native-side-menu
  > button:hover,
.wizard-step-content
  .wizard-section-native-side-menu
  > a:hover {
  border-color: rgba(247, 166, 198, 0.58) !important;
  background: rgba(247, 166, 198, 0.052) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.wizard-section-side-menu-item.is-active,
.wizard-step-content
  .wizard-section-native-side-menu
  > button.is-active,
.wizard-step-content
  .wizard-section-native-side-menu
  > a.is-active {
  border-color: rgba(247, 166, 198, 0.72) !important;
  background:
    linear-gradient(
      135deg,
      rgba(247, 166, 198, 0.13),
      rgba(247, 166, 198, 0.045)
    ) !important;
  color: #fff !important;
  box-shadow:
    inset 0 0 0 1px rgba(247, 166, 198, 0.12) !important;
}

.wizard-section-side-menu-number,
.wizard-step-content
  .wizard-section-native-side-menu
  > button::before,
.wizard-step-content
  .wizard-section-native-side-menu
  > a::before {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  box-sizing: border-box;
}

.wizard-step-content
  .wizard-section-native-side-menu
  > button::before,
.wizard-step-content
  .wizard-section-native-side-menu
  > a::before {
  content: var(--wizard-section-number);
}

.wizard-section-side-menu-item.is-active
  .wizard-section-side-menu-number,
.wizard-step-content
  .wizard-section-native-side-menu
  > button.is-active::before,
.wizard-step-content
  .wizard-section-native-side-menu
  > a.is-active::before {
  border-color: rgba(247, 166, 198, 0.82);
  background:
    linear-gradient(
      135deg,
      rgba(247, 166, 198, 0.92),
      rgba(211, 77, 129, 0.82)
    );
  color: #13090d;
  box-shadow: 0 7px 22px rgba(211, 77, 129, 0.18);
}

.wizard-section-side-menu-label,
.wizard-step-content
  .wizard-section-native-side-menu
  > button strong,
.wizard-step-content
  .wizard-section-native-side-menu
  > a strong {
  min-width: 0;
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 760 !important;
}

.wizard-step-content
  .wizard-section-native-side-menu
  > button::after,
.wizard-step-content
  .wizard-section-native-side-menu
  > a::after,
.wizard-step-content button.quick-card::after,
.wizard-step-content .quick-card[type="button"]::after {
  content: none !important;
  display: none !important;
}


/* Phase 4: Unified wizard section navigation fix */
.wizard-section-main-stack {
  width: 100%;
  min-width: 0;
}

.wizard-section-main-stack > form,
.wizard-section-main-stack > section {
  width: 100%;
  box-sizing: border-box;
}

/* Hilfe-Panel: ruhiger und kompakter */

.wizard-help-panel {
  position: sticky !important;
  top: 18px !important;
  margin: 0 !important;
  padding: 19px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(
      circle at 0 0,
      rgba(247, 166, 198, 0.085),
      transparent 16rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.021),
      rgba(255, 255, 255, 0.008)
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

.wizard-help-panel:hover {
  border-color: rgba(247, 166, 198, 0.32) !important;
}

.wizard-help-head {
  margin-bottom: 15px !important;
  padding-bottom: 14px !important;
  gap: 12px !important;
}

.wizard-help-head .eyebrow {
  color: rgba(247, 166, 198, 0.78);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.wizard-help-head h2 {
  margin: 6px 0 0 !important;
  font-size: 23px !important;
  line-height: 1.14 !important;
}

.wizard-help-close {
  min-height: 34px;
  padding: 7px 10px !important;
  border-radius: 10px !important;
  font-size: 11px !important;
}

.wizard-help-intro {
  margin: 0 0 15px !important;
  color: rgba(204, 204, 204, 0.72) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.wizard-help-tips {
  gap: 9px !important;
}

.wizard-help-tip {
  grid-template-columns: 26px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: start !important;
  padding: 11px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 255, 0.011) !important;
}

.wizard-help-tip:hover {
  border-color: rgba(247, 166, 198, 0.29) !important;
  background: rgba(247, 166, 198, 0.027) !important;
}

.wizard-help-tip-icon {
  width: 7px !important;
  height: 7px !important;
  min-width: 7px !important;
  margin-top: 7px !important;
  justify-self: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(247, 166, 198, 0.76) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  box-shadow:
    0 0 0 4px rgba(247, 166, 198, 0.055) !important;
}

.wizard-help-tip-icon.is-warning,
.wizard-help-tip-icon.is-success {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  margin-top: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  justify-self: center !important;
  border-radius: 9px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.wizard-help-tip-icon.is-warning {
  border: 1px solid rgba(255, 159, 67, 0.52) !important;
  background: rgba(255, 159, 67, 0.16) !important;
  color: #ffe1bd !important;
}

.wizard-help-tip-icon.is-success {
  border: 1px solid rgba(74, 222, 128, 0.42) !important;
  background: rgba(74, 222, 128, 0.13) !important;
  color: #d1ffe2 !important;
}

.wizard-help-tip p {
  color: rgba(204, 204, 204, 0.74) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.wizard-help-support {
  margin-top: 16px !important;
  padding-top: 15px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.wizard-help-support-label {
  color: var(--text) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

.wizard-help-support p {
  margin: 7px 0 0 !important;
  color: rgba(204, 204, 204, 0.80) !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.wizard-help-support-button {
  min-height: 42px !important;
  margin-top: 13px !important;
  font-size: 13px !important;
}

/* Anker nicht unter dem oberen Rand verstecken */

#basic-title,
#basic-release,
#basic-genre,
#cover-artwork,
#cover-canvas,
#cover-motion,
#tracks-overview,
#rights-basic,
#rights-instagram-facebook,
#rights-lines,
#review-overview,
#review-release-data,
#review-tracks-rights,
#review-note,
#review-submit {
  scroll-margin-top: 24px;
}

/*
 * Mobile wird später gezielt gestaltet. Bis dahin bleiben
 * Navigation und Inhalt gestapelt und vollständig bedienbar.
 */
@media (max-width: 980px) {
  .wizard-section-desktop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wizard-section-side-menu {
    position: static;
  }

  .wizard-section-side-menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-wizard-section="basic"]
    .wizard-step-content
    .wizard-section-native-side-menu,
  [data-wizard-section="cover"]
    .wizard-step-content
    .wizard-section-native-side-menu {
    display: grid !important;
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    max-width: none !important;
  }

  .wizard-section-side-menu-head {
    grid-column: 1 / -1;
  }

  .wizard-help-panel {
    position: static !important;
  }
}

@media (max-width: 620px) {
  .wizard-section-side-menu-items,
  [data-wizard-section="basic"]
    .wizard-step-content
    .wizard-section-native-side-menu,
  [data-wizard-section="cover"]
    .wizard-step-content
    .wizard-section-native-side-menu {
    grid-template-columns: 1fr !important;
  }
}

/* H&S Panel Media Engine – Phase 4 */

.hs-media-info-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.hs-media-info-heading-copy {
  min-width: 0;
}

.hs-media-info-button {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(247, 166, 198, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(247, 166, 198, 0.075) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

.hs-media-info-button:hover,
.hs-media-info-button:focus-visible {
  border-color: rgba(247, 166, 198, 0.82) !important;
  background: rgba(247, 166, 198, 0.14) !important;
  color: #fff !important;
  transform: translateY(-1px);
  outline: none !important;
}

body.hs-media-dialog-open {
  overflow: hidden;
}

.hs-media-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 4, 9, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: hsMediaBackdropIn 170ms ease both;
}

.hs-media-dialog {
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 92% 0%,
      rgba(247, 166, 198, 0.09),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(25, 25, 34, 0.985),
      rgba(12, 13, 19, 0.995)
    );
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: hsMediaDialogIn 190ms ease both;
}

.hs-media-dialog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.095);
}

.hs-media-dialog-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: rgba(247, 166, 198, 0.88);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hs-media-dialog-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hs-media-dialog-close {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 23px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.hs-media-dialog-close:hover,
.hs-media-dialog-close:focus-visible {
  border-color: rgba(247, 166, 198, 0.62) !important;
  background: rgba(247, 166, 198, 0.09) !important;
  color: #fff !important;
  outline: none !important;
}

.hs-media-dialog-body {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 24px 24px;
}

.hs-media-dialog-description {
  max-width: 790px;
  margin: 0;
  color: rgba(228, 228, 233, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.hs-media-dialog-grid {
  display: grid;
  grid-template-columns:
    repeat(
      var(--hs-media-columns, 1),
      minmax(0, 1fr)
    );
  gap: 18px;
  align-items: start;
  margin-top: 20px;
}

.hs-media-dialog-media-card {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.hs-media-dialog-media-heading {
  min-height: 25px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 0 2px;
}

.hs-media-dialog-media-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 850;
}

.hs-media-dialog-media-heading p {
  margin: 0;
  color: rgba(204, 204, 204, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.hs-media-dialog-media-stage {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(247, 166, 198, 0.05),
      transparent 30%
    ),
    #05060a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.hs-media-dialog-media-video,
.hs-media-dialog-media-image {
  width: 100%;
  height: 100%;
  display: block;
  background: #05060a;
}

.hs-media-dialog-media-video.is-clickable {
  cursor: pointer;
}

.hs-media-dialog-media-video.is-clickable:focus-visible {
  outline: 2px solid rgba(247, 166, 198, 0.82);
  outline-offset: -3px;
}

.hs-media-dialog-error {
  padding: 24px;
  color: #ffc5d8;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@keyframes hsMediaBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hsMediaDialogIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .hs-media-dialog-backdrop {
    align-items: end;
    padding: 0;
  }

  .hs-media-dialog {
    width: 100%;
    max-height: 94vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
  }

  .hs-media-dialog-header {
    padding: 19px 18px 16px;
  }

  .hs-media-dialog-body {
    padding: 17px 18px 22px;
  }

  .hs-media-dialog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hs-media-dialog-media-stage {
    width: min(100%, 430px);
    justify-self: center;
    border-radius: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-media-dialog-backdrop,
  .hs-media-dialog {
    animation: none !important;
  }

  .hs-media-info-button {
    transition: none !important;
  }
}

/* Core Single Track-Artist-Felder – Bezeichnungstypografie */
.wizard-track-release-artist-field > span:first-child {
  font-family: inherit !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 800 !important;
  letter-spacing: .002em !important;
  color: var(--text) !important;
}

