/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 10:41:52 */
  #eb-cds {
    --tab-top: 132px;
    --eb-tabbar-h: 0;
  }

  #eb-cds.eb-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    color: var(--ink);
    position: relative;
    isolation: isolate;
  }

  #eb-cds .eb-shell {
    width: min(1600px, 96vw);
    margin-inline: auto;
    padding: clamp(24px, 3vh, 36px) clamp(12px, 2vw, 16px) clamp(36px, 5vh, 52px);
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
  }

  #eb-cds .eb-head {
    grid-column: 1 / -1;
  }

  #eb-cds .eb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-35);
    background: var(--gradient-glass-panel);
    backdrop-filter: var(--backdrop-glass);
    box-shadow: var(--shadow-glass);
    color: var(--gold-85);
    font: 800 12px/1.1 var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #eb-cds .eb-title {
    margin: 0.6rem 0 0.3rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 0.06em;
    line-height: 1.1;
    background: var(--gradient-metal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px rgba(168, 180, 195, 0.3);
  }

  #eb-cds .eb-sub {
    color: var(--ink-2);
    font: 700 15px/1.4 var(--font-sans);
    margin-bottom: 0.5rem;
  }

  #eb-cds .eb-tabbar {
    grid-column: 1;
    grid-row: 2;
    position: sticky;
    top: var(--tab-top);
    z-index: var(--z-fixed);
    display: grid;
    gap: 12px;
    padding: 16px 14px;
    background: var(--gradient-glass-panel);
    backdrop-filter: var(--backdrop-glass-vivid);
    border: 1px solid var(--white-14);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass), 0 0 24px var(--lava-08);
    max-height: calc(100vh - var(--tab-top) - 20px);
    max-height: calc(100dvh - var(--tab-top) - 20px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(42, 50, 70, 0.8) transparent;
  }

  #eb-cds .eb-tabbar::-webkit-scrollbar {
    width: 10px;
  }

  #eb-cds .eb-tabbar::-webkit-scrollbar-thumb {
    background: rgba(42, 50, 70, 0.8);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    background-clip: padding-box;
  }

  #eb-cds .eb-tabbar::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 64, 91, 0.9);
    background-clip: padding-box;
  }

  .eb-toolbar {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  /* Search Input */
  .eb-search-wrap {
    position: relative;
    flex: 1;
    max-width: 280px;
  }

  .eb-search {
    width: 100%;
    padding: 11px 38px 11px 14px;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98));
    border: 1px solid var(--white-14);
    border-radius: var(--radius-lg);
    color: var(--ink);
    font: 600 13px/1.2 var(--font-sans);
    letter-spacing: 0.01em;
    transition: all var(--transition-fast);
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
  }

  .eb-search::placeholder {
    color: var(--ink-3);
    opacity: 0.7;
  }

  .eb-search:hover {
    border-color: var(--gold-35);
  }

  .eb-search:focus {
    outline: none;
    border-color: var(--lava);
    box-shadow: 0 0 0 3px var(--lava-18), 0 6px 18px var(--lava-12);
  }

  .eb-search:focus-visible {
    outline: 2px solid var(--lava);
    outline-offset: 2px;
  }

  /* Clear search button on WebKit */
  .eb-search::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
  }

  .eb-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-3);
    font-size: 14px;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity var(--transition-fast);
  }

  .eb-search:focus~.eb-search-icon,
  .eb-search:not(:placeholder-shown)~.eb-search-icon {
    opacity: 0;
  }

  .eb-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-08);
    border: none;
    border-radius: 50%;
    color: var(--ink-2);
    font-size: 11px;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-fast);
  }

  .eb-search-clear:not([hidden]) {
    opacity: 1;
  }

  .eb-search-clear:hover {
    background: var(--lava-28);
    color: #fff;
  }

  .eb-search-clear:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  /* Search Results Highlight */
  .eb-tab mark,
  .eb-tracks mark {
    background: var(--lava-35);
    color: var(--gold);
    border-radius: 2px;
    padding: 0 2px;
  }

  /* No Results State */
  .eb-no-results {
    text-align: center;
    padding: 32px 20px;
    color: var(--ink-2);
    font: 600 14px/1.5 var(--font-sans);
  }

  .eb-no-results i {
    display: block;
    font-size: 32px;
    color: var(--ink-3);
    margin-bottom: 12px;
  }

  /* Sort Button */
  .eb-sort-wrap {
    position: relative;
  }

  .eb-sort {
    min-width: 140px;
    padding: 11px 32px 11px 14px;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98));
    border: 1px solid var(--white-14);
    border-radius: var(--radius-lg);
    color: var(--ink);
    font: 700 11px/1.2 var(--font-sans);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    background-image:
      linear-gradient(180deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="rgba(168,180,195,0.6)" d="M6 8L2 4h8z"/></svg>');
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 12px center;
    white-space: nowrap;
  }

  .eb-sort:hover {
    border-color: var(--gold-35);
    background-image:
      linear-gradient(180deg, rgba(25, 30, 42, 0.98), rgba(18, 23, 38, 1)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="rgba(190,165,115,0.8)" d="M6 8L2 4h8z"/></svg>');
  }

  .eb-sort:focus-visible {
    outline: 2px solid var(--lava);
    outline-offset: 2px;
    border-color: var(--lava-45);
    box-shadow: 0 0 0 4px var(--lava-12);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Skip Link */
  #eb-cds .skip-link {
    position: absolute;
    top: -60px;
    left: 20px;
    z-index: 9999;
    background: var(--lava);
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font: 700 14px/1.2 var(--font-sans);
    letter-spacing: 0.02em;
    transition: top var(--transition-fast);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  #eb-cds .skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  #eb-cds .eb-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
  }

  #eb-cds .eb-cat {
    appearance: none;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.9), rgba(15, 20, 33, 0.95));
    border: 1px solid var(--white-12);
    color: var(--ink);
    border-radius: var(--radius-pill);
    padding: 12px 16px;
    font: 800 10.5px/1.1 var(--font-sans);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    min-height: 44px;
  }

  #eb-cds .eb-cat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--lava-15), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
  }

  #eb-cds .eb-cat:hover {
    border-color: var(--gold-35);
    transform: translateY(-1px);
  }

  #eb-cds .eb-cat:hover::before {
    opacity: 1;
  }

  #eb-cds .eb-cat[aria-pressed="true"] {
    background: linear-gradient(180deg, rgba(26, 35, 52, 0.95), rgba(16, 23, 36, 1));
    border-color: var(--lava);
    color: #fff;
    box-shadow: 0 0 20px var(--lava-28), inset 0 1px 0 var(--white-06);
  }

  #eb-cds .eb-cat[aria-pressed="true"]::before {
    opacity: 1;
  }

  #eb-cds .eb-catselect {
    display: none;
  }

  #eb-cds .eb-albumselect {
    display: none;
    width: 100%;
    padding: 13px 38px 13px 14px;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98));
    border: 1px solid var(--white-14);
    border-radius: var(--radius-lg);
    color: var(--ink);
    font: 700 13px/1.3 var(--font-sans);
    letter-spacing: 0.02em;
    cursor: pointer;
    background-image:
      linear-gradient(45deg, transparent 50%, var(--gold-65) 50%),
      linear-gradient(135deg, var(--gold-65) 50%, transparent 50%),
      linear-gradient(180deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98));
    background-position:
      calc(100% - 16px) calc(1em + 2px),
      calc(100% - 11px) calc(1em + 2px),
      0 0;
    background-size:
      5px 5px,
      5px 5px,
      100% 100%;
    background-repeat: no-repeat;
    appearance: none;
    transition: all var(--transition-base);
    min-height: 48px;
  }

  #eb-cds .eb-albumselect:hover {
    border-color: var(--gold-28);
    background-color: rgba(26, 35, 52, 0.95);
  }

  #eb-cds .eb-albumselect:focus-visible {
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--lava-15);
    border-color: var(--lava);
  }

  #eb-cds .eb-list {
    display: grid;
    gap: 10px;
    position: relative;
  }

  #eb-cds .eb-tab {
    width: 100%;
    text-align: left;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.7), rgba(15, 20, 33, 0.85));
    border: 1px solid var(--white-10);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    font: 800 13.5px/1.3 var(--font-sans);
    letter-spacing: 0.03em;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
  }

  #eb-cds .eb-tab::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-lava);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  #eb-cds .eb-tab:hover {
    border-color: var(--gold-28);
    transform: translateX(4px);
    background: linear-gradient(180deg, rgba(26, 35, 52, 0.8), rgba(18, 24, 36, 0.9));
  }

  #eb-cds .eb-tab:hover::before {
    opacity: 0.6;
  }

  #eb-cds .eb-tab.is-active {
    background: linear-gradient(180deg, rgba(26, 35, 52, 1), rgba(16, 23, 36, 1));
    border-color: var(--lava);
    color: #fff;
    box-shadow: 0 8px 24px var(--lava-22), inset 0 1px 0 var(--white-06);
    transform: translateX(6px);
  }

  #eb-cds .eb-tab.is-active::before {
    opacity: 1;
  }

  #eb-cds .eb-tab.is-hidden {
    display: none !important;
  }

  #eb-cds .eb-panels {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    display: block;
    position: relative;
    z-index: var(--z-base);
  }

  #eb-cds .eb-panel {
    display: none;
    background: var(--gradient-glass-panel);
    backdrop-filter: var(--backdrop-glass-vivid);
    border: 1px solid var(--white-14);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), inset 0 1px 0 var(--gold-08);
    padding: clamp(18px, 2.5vw, 26px) clamp(18px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
    position: relative;
    overflow: hidden;
  }

  #eb-cds .eb-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--lava-08), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
  }

  #eb-cds .eb-panel.is-active {
    display: block;
    animation: panel-fade-in 0.3s ease-out;
  }

  @keyframes panel-fade-in {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #eb-cds .eb-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }

  #eb-cds .eb-meta h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: clamp(18px, 2vw, 22px);
    letter-spacing: 0.06em;
    color: transparent;
    background: var(--gradient-metal);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 18px rgba(168, 180, 195, 0.25);
  }

  #eb-cds .badge {
    border: 1px solid var(--gold-22);
    color: var(--gold-85);
    background: linear-gradient(180deg, rgba(30, 34, 48, 0.9), rgba(18, 23, 36, 0.95));
    backdrop-filter: var(--backdrop-glass);
    box-shadow: inset 0 1px 0 var(--white-06), 0 4px 12px var(--black-25);
    border-radius: var(--radius-sm);
    padding: 7px 11px;
    font: 800 11px/1.1 var(--font-sans);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  #eb-cds .eb-art {
    display: grid;
    grid-template-columns: clamp(140px, 15vw, 180px) 1fr;
    gap: clamp(14px, 2vw, 20px);
    align-items: start;
    margin: 8px 0 16px;
    position: relative;
    z-index: 2;
  }

  #eb-cds .eb-art-cover {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
  }

  #eb-cds .eb-art-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px var(--white-08), 0 12px 32px var(--black-45);
    pointer-events: none;
    transition: box-shadow var(--transition-smooth);
  }

  #eb-cds .eb-art-cover:hover {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 0 24px var(--lava-35));
  }

  #eb-cds .eb-art-cover:hover::after {
    box-shadow: inset 0 0 0 1px var(--gold-20), 0 18px 48px var(--black-50), 0 0 32px var(--lava-28);
  }

  #eb-cds .eb-art img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
  }

  #eb-cds .eb-art p {
    margin: 0;
    color: var(--ink-2);
    font: 600 14px/1.5 var(--font-sans);
    letter-spacing: 0.01em;
  }

  #eb-cds h4 {
    margin: 18px 0 10px;
    font: 800 12px/1.15 var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-85);
    border-left: 3px solid var(--lava);
    padding-left: 10px;
    position: relative;
    z-index: 2;
  }

  #eb-cds .eb-tracks {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    counter-reset: trk;
    position: relative;
    z-index: 2;
  }

  #eb-cds .eb-tracks li {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(16, 21, 36, 0.6), rgba(12, 17, 27, 0.75));
    border: 1px solid var(--white-08);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    transition: all var(--transition-fast);
    cursor: default;
  }

  #eb-cds .eb-tracks li::before {
    counter-increment: trk;
    content: counter(trk) ".";
    color: var(--gold-85);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    min-width: 28px;
    opacity: 0.95;
  }

  #eb-cds .eb-tracks li:hover {
    border-color: var(--lava-45);
    background: linear-gradient(180deg, rgba(18, 26, 42, 0.75), rgba(15, 20, 33, 0.85));
    transform: translateX(4px);
    box-shadow: 0 4px 12px var(--lava-15), inset 0 0 0 1px var(--lava-12);
  }

  #eb-cds .eb-tracks span {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    transition: color var(--transition-fast);
  }

  #eb-cds .eb-tracks li:hover span {
    color: #fff;
  }

  #eb-cds .eb-tracks time {
    font: 600 12px/1.1 var(--font-sans);
    font-variant-numeric: tabular-nums;
    color: var(--gold-70);
    opacity: 0.95;
    letter-spacing: 0.02em;
  }

  /* Suite Styling */
  #eb-cds .eb-suite span {
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 15px;
  }

  #eb-cds .eb-tracks .eb-sub {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    counter-reset: sub;
  }

  #eb-cds .eb-tracks .eb-sub>li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--white-06);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(15, 21, 36, 0.4), rgba(12, 17, 27, 0.55));
  }

  #eb-cds .eb-tracks .eb-sub>li::before {
    counter-increment: sub;
    content: counter(sub) ".";
    color: var(--gold-70);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.04em;
    min-width: 24px;
  }

  #eb-cds .eb-tracks .eb-sub>li span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-2);
    font-weight: 600;
    font-size: 13px;
  }

  #eb-cds .eb-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
    align-items: center;
  }

  #eb-cds .eb-buy,
  #eb-cds .eb-spotify {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--white-14);
    background: linear-gradient(180deg, rgba(26, 34, 50, 0.85), rgba(17, 24, 39, 0.9));
    backdrop-filter: var(--backdrop-glass);
    color: var(--gold-85);
    text-decoration: none;
    font: 900 12px/1.1 var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px var(--black-35);
    transition: all var(--transition-base);
    cursor: pointer;
  }

  #eb-cds .eb-buy:hover,
  #eb-cds .eb-spotify:hover {
    border-color: var(--lava);
    background: linear-gradient(180deg, rgba(30, 40, 58, 0.9), rgba(20, 28, 44, 0.95));
    box-shadow: 0 12px 28px var(--lava-22), 0 0 24px var(--lava-18);
    transform: translateY(-2px);
  }

  #eb-cds .eb-buy[aria-disabled="true"],
  #eb-cds .eb-spotify[aria-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(30%);
    cursor: not-allowed;
  }

  #eb-cds .eb-buy .ico {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 0;
  }

  #eb-cds .eb-buy .ico svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-85);
    display: block;
    filter: drop-shadow(0 2px 8px var(--lava-18));
  }

  #eb-cds .eb-spotify .ico {
    font-size: 14px;
    line-height: 1;
  }

  .eb-streaming {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .eb-stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, rgba(21, 26, 37, 0.95), rgba(15, 20, 33, 0.98));
    border: 1px solid var(--white-14);
    border-radius: var(--radius-lg);
    color: var(--ink);
    font: 700 12px/1.2 var(--font-sans);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .eb-stream-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--lava-12), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
  }

  .eb-stream-btn:hover {
    border-color: var(--gold-45);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--black-35), 0 0 18px var(--lava-15);
  }

  .eb-stream-btn:hover::before {
    opacity: 1;
  }

  .eb-stream-btn:focus-visible {
    outline: 2px solid var(--lava);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--lava-12);
  }

  .eb-stream-btn .ico {
    font-size: 16px;
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  .eb-stream-btn span {
    position: relative;
    z-index: 1;
  }

  .eb-stream-btn.spotify:hover {
    border-color: #1DB954;
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.2), 0 0 18px rgba(29, 185, 84, 0.15);
  }

  .eb-stream-btn.apple:hover {
    border-color: #FA243C;
    box-shadow: 0 8px 20px rgba(250, 36, 60, 0.2), 0 0 18px rgba(250, 36, 60, 0.15);
  }

  .eb-stream-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2), 0 0 18px rgba(255, 0, 0, 0.15);
  }

  /* Disabled state */
  .eb-stream-btn[aria-disabled="true"] {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(50%);
    cursor: not-allowed;
  }

  @media (max-width: 720px) {
    .eb-streaming {
      gap: 8px;
    }

    .eb-stream-btn {
      padding: 10px 14px;
      font-size: 11px;
    }

    .eb-stream-btn .ico {
      font-size: 14px;
    }
  }

  #eb-cds .eb-singles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    gap: 16px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
  }

  #eb-cds .eb-single {
    background: linear-gradient(180deg, rgba(19, 26, 41, 0.8), rgba(15, 20, 33, 0.9));
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    display: block;
  }

  #eb-cds .eb-single:hover {
    border-color: var(--lava-45);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px var(--black-45), 0 0 28px var(--lava-22);
  }

  #eb-cds .eb-single .cov {
    aspect-ratio: 1 / 1;
    background: rgba(12, 16, 26, 0.8);
    position: relative;
    overflow: hidden;
  }

  #eb-cds .eb-single .cov::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  #eb-cds .eb-single:hover .cov::after {
    opacity: 1;
  }

  #eb-cds .eb-single .cov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
  }

  #eb-cds .eb-single:hover .cov img {
    transform: scale(1.05);
  }

  #eb-cds .eb-single .meta {
    padding: 12px 14px;
  }

  #eb-cds .eb-single .t {
    font: 800 14px/1.3 var(--font-sans);
    color: var(--ink);
    margin: 0 0 4px;
    transition: color var(--transition-fast);
  }

  #eb-cds .eb-single:hover .t {
    color: #fff;
  }

  #eb-cds .eb-single .d {
    font: 700 12px/1.2 var(--font-sans);
    color: var(--gold-70);
  }

  #eb-cds .eb-empty {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    border: 2px dashed var(--white-12);
    border-radius: var(--radius-xl);
    color: var(--ink-2);
    background: var(--gradient-glass-panel);
    backdrop-filter: var(--backdrop-glass);
    font: 700 15px/1.5 var(--font-sans);
    min-height: 200px;
  }

  #eb-cds .eb-empty.is-show {
    display: flex;
  }

  #eb-cds .eb-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: var(--z-content-high);
    background: linear-gradient(180deg, rgba(21, 26, 36, 0.95), rgba(15, 20, 33, 1));
    border: 1px solid var(--gold-28);
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    color: var(--ink);
    font: 800 12px/1.1 var(--font-sans);
    letter-spacing: 0.08em;
    box-shadow: 0 8px 24px var(--black-45), 0 0 18px var(--lava-15);
    animation: hint-float 2.4s ease-in-out infinite;
    pointer-events: none;
  }

  #eb-cds .eb-scroll-hint .txt {
    color: var(--gold-85);
  }

  #eb-cds .eb-scroll-hint .chev {
    color: var(--lava);
    font-weight: 900;
    font-size: 16px;
  }

  @keyframes hint-float {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(-4px);
    }
  }

  #eb-cds .eb-scroll-hint.is-hide {
    display: none;
  }

  #eb-cds .eb-cat:focus-visible,
  #eb-cds .eb-tab:focus-visible {
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--lava-15), var(--shadow-lg);
    transform: translateX(6px);
  }

  #eb-cds .eb-catselect:focus-visible {
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--lava-15);
    border-color: var(--lava);
  }

  #eb-cds .eb-buy:focus-visible,
  #eb-cds .eb-spotify:focus-visible {
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--lava-15), 0 12px 28px var(--lava-22);
    transform: translateY(-3px);
  }

  #eb-cds .eb-single:focus-visible {
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--lava-15), 0 16px 36px var(--black-45);
    transform: translateY(-8px);
  }

  /* Remove outline:none - accessibility issue */
  #eb-cds .eb-catselect:focus {
    border-color: var(--lava);
    outline: 3px solid var(--lava);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--lava-15);
  }

  @media (max-width: 1024px) {
    #eb-cds {
      --tab-top: 80px !important;
    }

    #eb-cds .eb-shell {
      grid-template-columns: 1fr;
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding: clamp(20px, 3vh, 32px) clamp(16px, 4vw, 24px) clamp(32px, 4vh, 44px);
    }

    #eb-cds .eb-tabbar {
      position: sticky;
      top: var(--tab-top);
      z-index: var(--z-nav);
      border-radius: var(--radius-lg);
      padding: 12px;
      max-height: none;
    }

    .eb-toolbar {
      flex-direction: column;
      gap: 8px;
    }

    .eb-search-wrap {
      max-width: none;
      width: 100%;
      order: -1;
    }

    .eb-sort-wrap {
      width: 100%;
    }

    .eb-sort {
      width: 100%;
    }

    #eb-cds .eb-list {
      display: none !important;
    }

    #eb-cds .eb-albumselect {
      display: block;
      margin-top: 10px;
    }

    #eb-cds .eb-cats {
      gap: 8px;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      scroll-snap-type: x proximity;
      padding-bottom: 4px;
      scrollbar-width: thin;
    }

    #eb-cds .eb-cat {
      flex: 0 0 auto;
      scroll-snap-align: center;
      white-space: nowrap;
      padding: 10px 16px;
      min-height: 44px;
      /* Touch target */
    }

    #eb-cds .eb-cats::-webkit-scrollbar {
      height: 6px;
    }

    #eb-cds .eb-cats::-webkit-scrollbar-thumb {
      background: rgba(42, 50, 70, 0.8);
      border-radius: var(--radius-sm);
    }

    /* Fade indicators for category scroll */
    #eb-cds .eb-tabbar::before,
    #eb-cds .eb-tabbar::after {
      content: "";
      position: absolute;
      top: 60px;
      bottom: 30px;
      width: 32px;
      pointer-events: none;
      z-index: var(--z-content);
      background: linear-gradient(90deg, rgba(15, 20, 33, 0.95), transparent);
      opacity: 0.95;
      transition: opacity var(--transition-base);
    }

    #eb-cds .eb-tabbar::before {
      left: 0;
    }

    #eb-cds .eb-tabbar::after {
      right: 0;
      transform: scaleX(-1);
    }

    #eb-cds .eb-tabbar.is-left::before {
      opacity: 0;
    }

    #eb-cds .eb-tabbar.is-right::after {
      opacity: 0;
    }

    #eb-cds .eb-panels {
      grid-column: 1;
      padding-top: calc(var(--eb-tabbar-h, 0px) + 12px);
    }

    #eb-cds .eb-panel {
      margin-top: 4px;
    }

    #eb-cds .eb-art {
      grid-template-columns: clamp(100px, 20vw, 140px) 1fr;
      gap: 16px;
    }

    #eb-cds .eb-singles {
      grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
      gap: 14px;
    }
  }

  @media (max-width: 768px) {
    #eb-cds .eb-art {
      grid-template-columns: 110px 1fr;
      gap: 14px;
    }

    /* Disable sticky menu on mobile */
    #eb-cds .eb-tabbar {
      position: relative;
      top: auto;
    }

    #eb-cds .eb-actions {
      width: 100%;
      justify-content: flex-start;
    }

    #eb-cds .eb-singles {
      grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr));
      gap: 12px;
    }

    /* Track-Listen: Font-Size reduzieren */
    #eb-cds .eb-tracks span {
      font-size: 13px;
    }

    #eb-cds .eb-tracks time {
      font-size: 11px;
    }

    #eb-cds .eb-suite span {
      font-size: 14px;
    }
  }

  @media (max-width: 560px) {
    #eb-cds .eb-title {
      font-size: clamp(28px, 8vw, 40px);
    }

    #eb-cds .eb-art {
      grid-template-columns: 100px 1fr;
    }

    #eb-cds .eb-tab {
      min-width: 220px;
    }
  }

  /* Mobile: Category Dropdown */
  @media (max-width: 480px) {
    #eb-cds {
      --tab-top: 144px !important;
    }

    #eb-cds .eb-shell {
      width: 100%;
      padding: clamp(16px, 3vh, 24px) 16px clamp(24px, 4vh, 36px);
    }

    .eb-toolbar {
      gap: 8px;
      margin-bottom: 10px;
    }


    .eb-sort {
      min-width: 120px;
      padding: 11px 30px 11px 13px;
      font-size: 10.5px;
      min-height: 44px;
    }

    #eb-cds .eb-cats {
      display: none;
      /* Hide buttons, show dropdown */
    }

    #eb-cds .eb-catselect {
      display: block;
      width: 100%;
      margin: 0 0 10px;
      padding: 12px 14px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(21, 26, 37, 0.9), rgba(15, 20, 33, 0.95));
      border: 1px solid var(--white-12);
      color: var(--ink);
      font: 700 12px/1.2 var(--font-sans);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      min-height: 48px;
      /* Touch target */
    }

    #eb-cds .eb-catselect:focus {
      border-color: var(--lava);
      box-shadow: 0 0 0 3px var(--lava-15);
    }

    #eb-cds .eb-catselect:focus-visible {
      outline: 3px solid var(--lava);
      outline-offset: 2px;
      box-shadow: 0 0 0 5px var(--lava-15);
      border-color: var(--lava);
    }

    #eb-cds .eb-singles {
      grid-template-columns: repeat(auto-fill, minmax(min(130px, 100%), 1fr));
    }

    /* Panel-Padding reduzieren */
    #eb-cds .eb-panel {
      padding: 16px 14px 18px;
    }

    /* Cover kleiner */
    #eb-cds .eb-art {
      grid-template-columns: 90px 1fr;
      gap: 12px;
    }

    #eb-cds .eb-art p {
      font-size: 13px;
      line-height: 1.4;
    }

    /* Track-Listen kompakter */
    #eb-cds .eb-tracks li {
      padding: 9px 11px;
      gap: 10px;
    }

    #eb-cds .eb-tracks span {
      font-size: 12.5px;
    }

    #eb-cds .eb-tracks time {
      font-size: 10px;
    }

    #eb-cds .eb-tracks li::before {
      font-size: 12px;
      min-width: 24px;
    }

    #eb-cds .eb-suite span {
      font-size: 13px;
    }

    #eb-cds .eb-buy,
    #eb-cds .eb-spotify {
      padding: 0.55rem 0.85rem;
      font-size: 11px;
      gap: 0.4rem;
    }

    #eb-cds .eb-buy .ico svg {
      width: 14px;
      height: 14px;
    }
  }

  @media (max-width: 400px) {
    #eb-cds .eb-shell {
      padding: clamp(12px, 2vh, 20px) 12px clamp(20px, 3vh, 32px);
    }

    .eb-toolbar {
      gap: 6px;
    }


    .eb-sort {
      min-width: 110px;
      padding: 10px 28px 10px 12px;
      font-size: 10px;
    }

    #eb-cds .eb-cats {
      gap: 5px;
    }

    #eb-cds .eb-cat {
      padding: 7px 11px;
      font-size: 10px;
      min-height: 34px;
    }

    #eb-cds .eb-singles {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    #eb-cds .eb-single .meta {
      padding: 10px 12px;
    }

    #eb-cds .eb-single .t {
      font-size: 13px;
    }

    #eb-cds .eb-single .d {
      font-size: 11px;
    }

    /* Swipe-Hint kleiner */
    #eb-cds .eb-scroll-hint {
      padding: 6px 12px;
      font-size: 11px;
      bottom: -10px;
    }

    #eb-cds .eb-scroll-hint .chev {
      font-size: 14px;
    }

    #eb-cds .eb-kicker {
      padding: 0.4rem 0.85rem;
      font-size: 11px;
    }

    #eb-cds .eb-sub {
      font-size: 14px;
    }

    #eb-cds .badge {
      padding: 6px 9px;
      font-size: 10px;
    }

    #eb-cds .eb-meta h3 {
      font-size: clamp(16px, 4vw, 20px);
    }

    #eb-cds .eb-tracks time {
      display: none;
    }

    #eb-cds .eb-tracks li {
      grid-template-columns: auto 1fr;
    }
  }

  @media (max-height: 500px) and (orientation: landscape) {
    #eb-cds .eb-tabbar {
      position: relative;
      top: 0;
    }

    #eb-cds .eb-panels {
      padding-top: 0;
    }

    #eb-cds {
      --tab-top: 0px !important;
    }
  }

  @media (min-width: 1025px) {
    #eb-cds {
      --tab-top: 112px !important;
    }

    #eb-cds .eb-tabbar::before,
    #eb-cds .eb-tabbar::after {
      display: none;
    }
  }

  #eb-cds .eb-head,
  #eb-cds .eb-panels,
  #eb-cds .eb-panel,
  #eb-cds [id^="panel-"] {
    scroll-margin-top: calc(var(--tab-top) + 20px) !important;
  }

  /* Reduced Motion - Disable animations for accessibility */
  @media (prefers-reduced-motion: reduce) {

    #eb-cds *,
    #eb-cds *::before,
    #eb-cds *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    #eb-cds .eb-bar {
      animation: none;
    }

    #eb-cds .eb-panel.is-active {
      animation: none;
    }

    #eb-cds .eb-scroll-hint {
      animation: none;
    }

    #eb-cds .eb-cat:hover,
    #eb-cds .eb-tab:hover,
    #eb-cds .eb-tab.is-active,
    #eb-cds .eb-art-cover:hover,
    #eb-cds .eb-single:hover,
    #eb-cds .eb-tracks li:hover,
    #eb-cds .eb-buy:hover,
    #eb-cds .eb-spotify:hover,
    #eb-cds .eb-stream-btn:hover {
      transform: none !important;
    }
  }

  /* DVD Disc Accordion Styles */
  #eb-cds .eb-disc {
    border: 1px solid var(--white-12);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 21, 33, 0.8), rgba(12, 16, 26, 0.9));
    box-shadow: 0 10px 30px var(--black-35), inset 0 0 18px var(--gold-08);
    overflow: hidden;
    margin-bottom: var(--space-sm);
  }

  #eb-cds .eb-disc-head {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    color: var(--ink);
  }

  #eb-cds .eb-disc-head::-webkit-details-marker {
    display: none;
  }

  #eb-cds .eb-disc-head::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ember), transparent);
    opacity: 0.6;
    filter: blur(0.4px);
  }

  #eb-cds .eb-disc[open]>.eb-disc-head {
    background: linear-gradient(180deg, var(--white-03), transparent);
  }

  #eb-cds .eb-disc-head:hover {
    background: var(--white-05);
  }

  #eb-cds .eb-disc-head .disc-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-sm);
    font: 700 1.1rem/1.3 var(--font-sans);
  }

  #eb-cds .eb-disc-pill {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--lava-35);
    border-radius: var(--radius-pill);
    color: var(--gold);
    background: var(--lava-10);
    font: 900 0.8rem/1.1 var(--font-sans);
    letter-spacing: 0.06em;
  }

  #eb-cds .eb-disc-head .chevron {
    font-size: 1.5rem;
    color: var(--ink-3);
    transition: transform var(--transition-smooth);
  }

  #eb-cds .eb-disc[open]>.eb-disc-head .chevron {
    transform: rotate(180deg);
  }

  #eb-cds .eb-disc-body {
    padding: 0 16px 16px;
  }

  #eb-cds .eb-disc-tracks {
    list-style: none;
    padding: 8px 0 0 20px;
    margin: 0;
    display: grid;
    gap: 2px;
    background: linear-gradient(180deg, var(--white-03), transparent);
    border-radius: var(--radius-sm);
    counter-reset: disc-track;
  }

  #eb-cds .eb-disc-tracks li {
    position: relative;
    padding: 7px 8px 7px 14px;
    border-bottom: 1px dashed rgba(31, 35, 49, 0.8);
    color: var(--ink-2);
    font: 600 0.95rem/1.4 var(--font-sans);
  }

  #eb-cds .eb-disc-tracks li:last-child {
    border-bottom: none;
  }

  #eb-cds .eb-disc-tracks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--lava), var(--lava-20));
    opacity: 0.65;
  }

  #eb-cds .eb-disc-tracks li:nth-child(odd) {
    background: var(--white-03);
  }

  #eb-cds .badge-dvd {
    border-color: #8b5cf6;
    color: #c4b5fd;
  }

  @media (max-width: 767px) {
    #eb-cds .eb-disc-head {
      padding: 12px 14px;
    }

    #eb-cds .eb-disc-body {
      padding: 0 14px 14px;
    }
  }