  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cinzel:wght@500;700&family=Great+Vibes&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

  :root {
    --bg: #07090d;
    --surface: rgba(17, 21, 28, 0.86);
    --surface-soft: rgba(20, 25, 34, 0.92);
    --border: rgba(176, 187, 202, 0.2);
    --text: #f4f6f9;
    --muted: #b9c1ce;
    --gold: #ecc87f;
    --gold-soft: #c9a15a;
    --teal: #7fcabf;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  }

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

  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
  }

  html {
    scroll-behavior: smooth;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #141421 0%, #050509 42%);
  }

  .site-wrapper,
  main,
  .page-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .main-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 24px));
    z-index: 140;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background: rgba(8, 12, 18, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #d8e1ed;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 14px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    border-color: rgba(236, 200, 127, 0.7);
    background: rgba(236, 200, 127, 0.12);
    color: #f7f1e2;
    transform: translateY(-1px);
  }

  .main-nav a.active {
    border-color: rgba(236, 200, 127, 0.85);
    background: rgba(236, 200, 127, 0.2);
    color: #fff3d7;
  }

  .db-top-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 24px));
    z-index: 140;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background: rgba(8, 12, 18, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
    padding: 8px 10px;
  }

  .db-top-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .db-top-nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #d8e1ed;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 14px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .db-top-nav-links a:hover,
  .db-top-nav-links a:focus-visible {
    border-color: rgba(236, 200, 127, 0.7);
    background: rgba(236, 200, 127, 0.12);
    color: #f7f1e2;
    transform: translateY(-1px);
  }

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

  .db-wrap {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 0%, rgba(236, 200, 127, 0.16) 0, transparent 42%),
      radial-gradient(circle at 88% 7%, rgba(127, 202, 191, 0.16) 0, transparent 40%),
      linear-gradient(165deg, #06070a 0%, #0b0f15 52%, #090b10 100%);
    color: var(--text);
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    padding: clamp(84px, 10vw, 112px) 16px 44px;
  }

  .db-shell {
    max-width: 1240px;
    margin: 0 auto;
    background:
      radial-gradient(1000px 540px at 0% 0%, rgba(236, 200, 127, 0.08), transparent 55%),
      radial-gradient(1000px 540px at 100% 0%, rgba(127, 202, 191, 0.08), transparent 54%),
      linear-gradient(180deg, rgba(15, 19, 26, 0.96), rgba(8, 12, 18, 0.98));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: clamp(20px, 4vw, 38px);
    backdrop-filter: blur(5px);
  }

  .db-title-section {
    width: 100%;
    margin: 0 0 clamp(20px, 3vw, 34px);
    padding-top: clamp(10px, 1.6vw, 16px);
    text-align: center;
    background: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .db-main-title {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(44px, 10vw, 156px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    background: linear-gradient(92deg, #f2b578 0%, #f3df96 45%, #8fd2c9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  }

  .db-hero {
    display: grid;
    gap: clamp(18px, 2.6vw, 30px);
    align-items: center;
  }

  @media (min-width: 940px) {
    .db-hero {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    }
  }

  .db-hero-text {
    text-align: left;
  }

  .db-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #d1d7e2;
    margin-bottom: 12px;
    opacity: 0.9;
  }

  .db-hero-copy {
    font-size: clamp(14px, 1.58vw, 16px);
    line-height: 1.78;
    color: var(--muted);
    max-width: 640px;
    margin: 0 0 18px;
  }

  .db-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
  }

  .db-chip {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background: rgba(15, 19, 26, 0.72);
    color: #dfe6ef;
  }

  .db-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .db-btn {
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .db-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #11161f;
    box-shadow: 0 14px 36px rgba(201, 161, 90, 0.38);
  }

  .db-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(201, 161, 90, 0.48);
  }

  .db-btn-ghost {
    color: #e6ebf4;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background: rgba(13, 17, 24, 0.84);
  }

  .db-btn-ghost:hover {
    background: rgba(19, 24, 32, 0.92);
  }

  .db-video {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.24);
    background: #000;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  }

  .db-video iframe {
    width: 100%;
    height: clamp(230px, 42vw, 430px);
    display: block;
    border: 0;
  }

  .db-section {
    margin-top: clamp(32px, 4vw, 48px);
  }

  .db-section-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(176, 187, 202, 0.16);
  }

  .db-section h2 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 1.9vw, 21px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2f5fb;
  }

  .db-section p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
  }

  .db-page-section + .db-page-section {
    margin-top: clamp(24px, 3vw, 40px);
  }

  .db-home-section {
    margin-top: 0;
  }

  .db-premium-page {
    display: grid;
    gap: clamp(22px, 3vw, 34px);
  }

  .db-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(176, 187, 202, 0.24);
    padding: clamp(20px, 3vw, 34px);
    background:
      radial-gradient(circle at 12% -4%, rgba(236, 200, 127, 0.18), transparent 44%),
      radial-gradient(circle at 94% 0%, rgba(127, 202, 191, 0.16), transparent 42%),
      linear-gradient(165deg, rgba(16, 21, 30, 0.95), rgba(9, 13, 20, 0.96));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
  }

  .db-page-kicker {
    margin: 0 0 10px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #d5dcea;
  }

  .db-page-title {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4f7fd;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  }

  .db-page-subtitle {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
  }

  .db-premium-section {
    margin-top: 0;
    border: 1px solid rgba(176, 187, 202, 0.2);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2.2vw, 24px);
    background:
      linear-gradient(165deg, rgba(16, 21, 30, 0.9), rgba(10, 14, 21, 0.94));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .db-premium-section .db-section-header {
    margin-bottom: clamp(14px, 2vw, 20px);
    border-bottom-color: rgba(176, 187, 202, 0.22);
  }

  .db-premium-card {
    background: linear-gradient(175deg, rgba(20, 26, 36, 0.94), rgba(12, 17, 25, 0.96));
    border-color: rgba(176, 187, 202, 0.24);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .db-premium-card:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 200, 127, 0.5);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  }

  .db-music-modern-grid {
    display: grid;
    gap: 16px;
  }

  @media (min-width: 980px) {
    .db-music-modern-grid {
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    }
  }

  .db-music-album-panel {
    display: grid;
    gap: 14px;
    align-content: start;
  }

  .db-music-album-cover {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
    border: 1px solid rgba(176, 187, 202, 0.26);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  }

  .db-music-album-copy p:last-child {
    margin-bottom: 0;
  }

  .db-music-highlight {
    color: #f4deb1;
    font-weight: 700;
  }

  .db-paypal-shell {
    min-height: 44px;
  }

  .db-song-list {
    display: grid;
    gap: 10px;
    max-height: 540px;
    overflow-y: auto;
    padding-right: 4px;
  }

  .db-song-list::-webkit-scrollbar {
    width: 7px;
  }

  .db-song-list::-webkit-scrollbar-track {
    background: rgba(9, 13, 19, 0.4);
  }

  .db-song-list::-webkit-scrollbar-thumb {
    background: rgba(176, 187, 202, 0.32);
    border-radius: 999px;
  }

  .db-premium-page-music .song {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid rgba(176, 187, 202, 0.24);
    background: rgba(11, 16, 24, 0.84);
    padding: 10px;
  }

  .db-premium-page-music .song h4 {
    margin: 0;
    color: #edf3fc;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    word-break: break-word;
  }

  .db-premium-page-music .song audio {
    display: none;
  }

  .db-premium-page-music .play-btn {
    border: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #131922;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    box-shadow: 0 9px 22px rgba(201, 161, 90, 0.34);
  }

  .db-premium-page-music .play-btn.playing {
    color: #fff;
    background: linear-gradient(135deg, #e16262, #cc3f3f);
    box-shadow: 0 9px 22px rgba(204, 63, 63, 0.33);
  }

  .db-premium-page-music .play-btn:hover {
    transform: translateY(-1px);
  }

  .db-music-embed-grid {
    display: grid;
    gap: 12px;
  }

  @media (min-width: 980px) {
    .db-music-embed-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .db-music-embed-grid .db-stream-embed iframe {
    min-height: 420px;
  }

  .db-music-embed-grid .db-stream-embed-apple iframe {
    min-height: 420px;
  }

  .db-about-premium-grid {
    display: grid;
    gap: 16px;
  }

  @media (min-width: 1024px) {
    .db-about-premium-grid {
      grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
    }
  }

  .db-about-heading-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.3);
    padding: 8px 14px;
    margin-bottom: 12px;
    background: rgba(11, 16, 24, 0.74);
  }

  .db-about-heading-box h2 {
    margin: 0;
    color: #f4f7fc;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
  }

  .db-about-bio-card h3,
  .db-about-story-copy h3 {
    margin: 0 0 12px;
    color: #f4f7fc;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: none;
  }

  .db-about-story-card {
    display: grid;
    gap: 14px;
    align-content: start;
  }

  .db-about-story-copy p:last-child {
    margin-bottom: 0;
  }

  .db-about-story-card .db-about-video {
    margin: 0;
    aspect-ratio: 16 / 10;
  }

  .db-about-photo-blend {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(176, 187, 202, 0.24);
    background: #05070b;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  }

  .db-about-photo-blend::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(8, 12, 18, 0.16), rgba(8, 12, 18, 0.58)),
      radial-gradient(circle at 10% 0%, rgba(236, 200, 127, 0.2), transparent 38%),
      radial-gradient(circle at 96% 16%, rgba(127, 202, 191, 0.18), transparent 36%);
  }

  .db-about-photo-blend img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.94) contrast(1.03);
  }

  .db-footer-simple {
    margin-top: clamp(30px, 4vw, 48px);
    text-align: center;
  }

  .db-simple-footer-lines {
    display: grid;
    gap: 6px;
    color: #b8c0cc;
    font-size: 13px;
    line-height: 1.55;
  }

  .db-simple-footer-lines p {
    margin: 0;
  }

  .db-music-onepage {
    display: grid;
    gap: clamp(22px, 3vw, 34px);
  }

  .db-music-head {
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(176, 187, 202, 0.24);
    background:
      radial-gradient(circle at 14% -4%, rgba(236, 200, 127, 0.2), transparent 46%),
      radial-gradient(circle at 94% 0%, rgba(127, 202, 191, 0.16), transparent 44%),
      linear-gradient(168deg, rgba(15, 19, 26, 0.95), rgba(8, 12, 18, 0.96));
    padding: clamp(20px, 3vw, 34px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
  }

  .db-music-kicker {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #c4cede;
    margin-bottom: 6px;
  }

  .db-music-title {
    margin: 0 0 8px;
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 4.8vw, 42px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f4f7fd;
  }

  .db-music-title span,
  .db-music-platforms-title span {
    background: linear-gradient(135deg, #f3bd74, #de8d8d, #84c6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .db-music-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
  }

  .db-music-layout {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    align-items: start;
  }

  @media (min-width: 980px) {
    .db-music-layout {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    }
  }

  .db-music-album-card,
  .db-music-player-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(176, 187, 202, 0.24);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
  }

  .db-music-album-card {
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.18), transparent 58%),
      radial-gradient(circle at 100% 100%, rgba(127, 202, 191, 0.2), transparent 55%),
      linear-gradient(168deg, rgba(16, 21, 30, 0.95), rgba(10, 14, 21, 0.96));
    padding: clamp(16px, 2.5vw, 22px);
  }

  .db-music-album-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4cede;
    margin-bottom: 6px;
  }

  .db-music-album-name {
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 650;
    color: #f4f7fd;
    margin-bottom: 6px;
  }

  .db-music-album-meta {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .db-music-art-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.22);
    background: #05070b;
    max-width: 480px;
  }

  .db-music-art-wrap img {
    width: 100%;
    display: block;
  }

  .db-music-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }

  .db-music-chip {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(12, 16, 23, 0.9);
    border: 1px solid rgba(176, 187, 202, 0.28);
    color: #c4cede;
  }

  .db-music-player-panel {
    background:
      linear-gradient(180deg, rgba(11, 16, 24, 0.96), rgba(8, 12, 18, 0.98));
    padding: clamp(16px, 2.8vw, 22px);
  }

  .db-music-player-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .db-music-player-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c4cede;
  }

  .db-music-player-meta {
    font-size: 12px;
    color: var(--muted);
  }

  .db-music-tracklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .db-music-track {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.12), transparent 55%),
      rgba(12, 17, 25, 0.96);
    border: 1px solid rgba(176, 187, 202, 0.2);
    min-height: 56px;
    position: relative;
    overflow: hidden;
  }

  .db-music-track::before {
    content: attr(data-track);
    font-size: 11px;
    color: #a7b2c2;
    position: absolute;
    left: 10px;
    top: 8px;
    opacity: 0.65;
  }

  .db-music-track-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
  }

  .db-music-track h4 {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #f4f7fd;
  }

  .db-music-track-meta {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }

  .db-music-track audio {
    display: none;
  }

  .db-music-play-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #11161f;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    box-shadow: 0 12px 30px rgba(201, 161, 90, 0.38);
    transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
    touch-action: manipulation;
    flex-shrink: 0;
  }

  .db-music-play-btn.playing {
    color: #fef2f2;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    box-shadow: 0 16px 36px rgba(248, 113, 113, 0.42);
  }

  .db-music-play-btn:active {
    transform: scale(0.95);
  }

  .db-music-play-btn:focus-visible {
    outline: 2px solid #e5e7eb;
    outline-offset: 2px;
  }

  .db-music-coming {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background:
      radial-gradient(circle at 0 0, rgba(127, 202, 191, 0.18), transparent 55%),
      rgba(12, 17, 25, 0.95);
    border: 1px dashed rgba(176, 187, 202, 0.48);
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .db-music-coming-pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(11, 16, 24, 0.98);
    border: 1px solid rgba(176, 187, 202, 0.48);
    color: #f4f7fd;
    flex-shrink: 0;
  }

  .db-music-purchase {
    border-radius: 24px;
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.24), transparent 58%),
      radial-gradient(circle at 100% 100%, rgba(127, 202, 191, 0.2), transparent 55%),
      linear-gradient(170deg, rgba(14, 20, 29, 0.95), rgba(9, 13, 20, 0.96));
    border: 1px solid rgba(176, 187, 202, 0.32);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    padding: clamp(18px, 4vw, 26px);
    display: grid;
    gap: clamp(16px, 3vw, 24px);
  }

  @media (min-width: 980px) {
    .db-music-purchase {
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }
  }

  .db-music-purchase-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 10px;
  }

  .db-music-purchase-copy strong {
    display: block;
    font-size: 17px;
    color: #f3d6a0;
    margin-top: 8px;
  }

  .db-music-purchase-form {
    background: linear-gradient(168deg, rgba(14, 20, 29, 0.96), rgba(10, 14, 21, 0.98));
    border-radius: 18px;
    border: 1px solid rgba(176, 187, 202, 0.24);
    padding: clamp(14px, 3vw, 20px);
    display: grid;
    gap: 10px;
  }

  .db-music-label {
    font-size: 13px;
    color: var(--muted);
  }

  .db-music-field {
    width: 100%;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid rgba(176, 187, 202, 0.34);
    background: #070b12;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
  }

  .db-music-field:focus {
    outline: none;
    border-color: rgba(236, 200, 127, 0.82);
    box-shadow: 0 0 0 2px rgba(236, 200, 127, 0.14);
  }

  .db-music-field[name="message"] {
    resize: vertical;
    min-height: 96px;
  }

  .db-music-stripe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 0;
    font-weight: 650;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #6b70e6, #4f46e5);
    color: #eef2ff;
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.48);
    transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
  }

  .db-music-stripe-btn span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.88;
  }

  .db-music-stripe-btn:hover {
    background: linear-gradient(135deg, #565de0, #443bd1);
    box-shadow: 0 18px 50px rgba(79, 70, 229, 0.58);
  }

  .db-music-stripe-btn:active {
    transform: translateY(1px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
  }

  .db-music-stripe-btn:focus-visible {
    outline: 2px solid #e5e7eb;
    outline-offset: 2px;
  }

  .db-music-platforms {
    border-radius: 24px;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.16), transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(127, 202, 191, 0.14), transparent 54%),
      linear-gradient(168deg, rgba(14, 20, 29, 0.94), rgba(9, 13, 20, 0.96));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    padding: clamp(18px, 4vw, 26px);
  }

  .db-music-platforms-head {
    text-align: center;
    margin-bottom: clamp(16px, 2.6vw, 24px);
  }

  .db-music-platforms-title {
    margin: 0 0 8px;
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 4.2vw, 34px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4f7fd;
  }

  .db-music-platforms-subtitle {
    font-size: 14px;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
  }

  .db-music-platform-grid {
    display: grid;
    gap: clamp(16px, 2.8vw, 24px);
  }

  @media (min-width: 980px) {
    .db-music-platform-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .db-music-platform-card {
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.16), transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(127, 202, 191, 0.16), transparent 55%),
      rgba(10, 14, 21, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(176, 187, 202, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    padding: clamp(14px, 2.5vw, 18px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .db-music-platform-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .db-music-platform-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
  }

  .db-music-platform-pill {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.46);
    background: rgba(11, 16, 24, 0.92);
    color: #f4f7fd;
    white-space: nowrap;
  }

  .db-music-platform-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
    line-height: 1.65;
  }

  .db-music-embed-frame {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.24);
    background: #000;
  }

  .db-music-embed-frame iframe {
    width: 100%;
    height: 540px;
    border: 0;
    display: block;
  }

  @media (max-width: 768px) {
    .db-music-head,
    .db-music-platforms,
    .db-music-purchase {
      border-radius: 18px;
    }

    .db-music-coming {
      flex-direction: column;
      align-items: flex-start;
    }

    .db-music-player-head,
    .db-music-platform-card-head {
      flex-direction: column;
      align-items: flex-start;
    }

    .db-music-embed-frame iframe {
      height: 480px;
    }
  }

  .dba-store {
    --bg: #07090d;
    --bg-soft: #0b0f15;
    --card: rgba(12, 17, 25, 0.96);
    --card-elevated: rgba(14, 20, 29, 0.96);
    --chip: rgba(15, 23, 42, 0.9);
    --border: rgba(176, 187, 202, 0.28);
    --border-soft: rgba(176, 187, 202, 0.2);
    --text: #f4f6f9;
    --muted: #b9c1ce;
    --accent: #ecc87f;
    --accent-soft: #c9a15a;
    --accent-alt: #7fcabf;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.72);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 999px;
    width: 100%;
    margin: clamp(10px, 2vw, 18px) 0 0;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    background:
      radial-gradient(circle at top, rgba(236, 200, 127, 0.12) 0, transparent 42%),
      radial-gradient(circle at 90% 0, rgba(127, 202, 191, 0.1) 0, transparent 38%),
      linear-gradient(165deg, #06070a 0%, #0b0f15 52%, #090b10 100%);
    color: var(--text);
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
  }

  .dba-store *,
  .dba-store *::before,
  .dba-store *::after {
    box-sizing: inherit;
  }

  .dba-store a {
    color: inherit;
    text-decoration: none;
  }

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

  .dba-store-page-intro {
    text-align: center;
    margin-bottom: 32px;
  }

  .dba-store-page-kicker {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .dba-store-page-title {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-family: 'Cinzel', serif;
  }

  .dba-store-page-title span {
    background: linear-gradient(135deg, var(--accent), #de9ba2, var(--accent-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .dba-store-page-subtitle {
    font-size: 14px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .dba-store-subnav {
    margin: 24px auto 32px;
    max-width: 760px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(8, 12, 18, 0.78);
    backdrop-filter: blur(14px);
  }

  .dba-store-subnav a {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--muted);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: 180ms ease-out;
  }

  .dba-store-subnav a:hover {
    color: #ffffff;
    border-color: rgba(236, 200, 127, 0.7);
    background: rgba(236, 200, 127, 0.12);
  }

  .dba-store section {
    margin-bottom: 50px;
  }

  #dba-video {
    border-radius: 30px;
    padding: 26px 24px 30px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    background: radial-gradient(circle at top, rgba(11, 16, 24, 0.95) 0, rgba(6, 10, 16, 0.98) 70%);
  }

  #dba-soon {
    max-width: 860px;
    margin: 0 auto 50px;
    border-radius: 24px;
    padding: 20px 22px 22px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.62);
    background: radial-gradient(circle at top, rgba(11, 16, 24, 0.95) 0, rgba(6, 10, 16, 0.96) 100%);
  }

  #dba-upcoming {
    border-radius: 28px;
    padding: 28px 24px 32px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.66);
    background: radial-gradient(circle at top, rgba(11, 16, 24, 0.95) 0, rgba(6, 10, 16, 0.98) 75%);
  }

  .dba-store-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
  }

  .dba-store-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
  }

  .dba-store-section-subtitle {
    font-size: 13px;
    color: var(--muted);
    max-width: 420px;
    line-height: 1.6;
  }

  .dba-store-video-card {
    background: var(--card);
    border-radius: 22px;
    padding: 18px 18px 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.78);
  }

  .dba-store-video-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
  }

  .dba-store-video-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

  .dba-store-tool-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .dba-store-tool-status {
    font-size: 11px;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid rgba(236, 200, 127, 0.7);
    background: rgba(236, 200, 127, 0.2);
    color: #fef3c7;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .dba-store-tool-status-soon {
    border-color: rgba(127, 202, 191, 0.72);
    background: rgba(127, 202, 191, 0.2);
    color: #d5f4ee;
  }

  .dba-store-tool-status-pipeline {
    border-color: rgba(176, 187, 202, 0.62);
    background: rgba(176, 187, 202, 0.2);
    color: #e3e9f3;
  }

  .dba-store-video-subtext {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.65;
  }

  .dba-store-video-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.55);
    background: #020617;
    position: relative;
  }

  .dba-store-video-wrapper::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
  }

  .dba-store-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .dba-store-video-caption {
    margin-top: 8px;
    font-size: 11px;
    color: var(--muted);
  }

  .dba-store-soon-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.68;
  }

  .dba-store-soon-body p {
    margin: 0 0 8px;
  }

  .dba-store-soon-body p:last-child {
    margin-bottom: 0;
  }

  .dba-store-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .dba-store-pill {
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.35);
    font-size: 11px;
    color: #e2e8f0;
    background: var(--chip);
  }

  .dba-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    color: inherit;
    transition: 180ms ease-out;
  }

  .dba-store-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #11161f;
    box-shadow: 0 20px 45px rgba(201, 161, 90, 0.45);
  }

  .dba-store-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 28px 60px rgba(201, 161, 90, 0.62);
  }

  .dba-store-btn-ghost {
    border-color: rgba(176, 187, 202, 0.4);
    background: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
  }

  .dba-store-btn-ghost:hover {
    border-color: rgba(236, 200, 127, 0.8);
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-1px);
  }

  .dba-store-mastering-card {
    background: radial-gradient(circle at 0 0, rgba(127, 202, 191, 0.2), transparent 55%), var(--card-elevated);
    border-radius: 22px;
    padding: 20px 20px 22px;
    border: 1px solid rgba(127, 202, 191, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.72);
  }

  .dba-store-master-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
  }

  .dba-store-master-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  .dba-store-master-status {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(127, 202, 191, 0.8);
    background: rgba(127, 202, 191, 0.2);
    color: #d5f4ee;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .dba-store-master-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    padding: 14px 0 16px;
    border-bottom: 1px solid rgba(176, 187, 202, 0.24);
  }

  .dba-store-master-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .dba-store-master-row-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .dba-store-master-row h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
  }

  .dba-store-master-row p {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
  }

  .dba-store-master-meta {
    font-size: 11px;
    color: var(--muted);
  }

  .dba-store-master-meta span {
    color: #e5e7eb;
  }

  .dba-store-master-image-wrap {
    display: flex;
    justify-content: flex-end;
  }

  .dba-store-master-image-wrap > div {
    width: 100%;
    max-width: 260px;
  }

  .dba-store-ai-image,
  .dba-store-analog-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.4);
    background: radial-gradient(circle at top, #020617, #000);
  }

  .dba-store-ai-image {
    border-color: rgba(127, 202, 191, 0.62);
  }

  .dba-store-grid-below {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  .dba-store-tool-card {
    background: rgba(14, 20, 29, 0.95);
    border-radius: 18px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(176, 187, 202, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: 180ms ease-out;
  }

  .dba-store-tool-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 0, rgba(236, 200, 127, 0.2), transparent 60%);
    opacity: 0;
    transition: 180ms ease-out;
    pointer-events: none;
  }

  .dba-store-tool-card:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 200, 127, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.72);
    background: linear-gradient(135deg, rgba(8, 12, 18, 0.96), rgba(10, 14, 21, 0.96));
  }

  .dba-store-tool-card:hover::before {
    opacity: 1;
  }

  .dba-store-tool-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
  }

  .dba-store-tool-name {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
  }

  .dba-store-tool-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.65;
  }

  .dba-store-tool-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .dba-store-tool-meta span {
    color: #e5e7eb;
  }

  .dba-store-tool-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dba-store-daw-card {
    background: radial-gradient(circle at 0 0, rgba(127, 202, 191, 0.16), transparent 55%), rgba(14, 20, 29, 0.95);
    border-color: rgba(127, 202, 191, 0.45);
  }

  .dba-store-cta-banner {
    margin-top: 24px;
    padding: 18px 18px 20px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 0 0, rgba(236, 200, 127, 0.24), transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(127, 202, 191, 0.26), transparent 55%),
      rgba(8, 12, 18, 0.95);
    border: 1px solid rgba(176, 187, 202, 0.42);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .dba-store-cta-text-main {
    font-size: 16px;
    font-weight: 600;
  }

  .dba-store-cta-text-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  .dba-store-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dba-store-newsletter {
    margin-top: 26px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px dashed rgba(176, 187, 202, 0.52);
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  .dba-store-newsletter strong {
    color: #e5e7eb;
  }

  .dba-store-newsletter-input {
    display: flex;
    gap: 8px;
  }

  .dba-store-newsletter-input input {
    background: #070b12;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.36);
    padding: 7px 10px;
    font-size: 13px;
    color: #e5e7eb;
    min-width: 180px;
    font-family: inherit;
  }

  .dba-store-newsletter-input input::placeholder {
    color: #8b95a5;
  }

  .dba-store-action-row {
    margin-top: 12px;
  }

  @media (max-width: 980px) {
    .dba-store {
      padding-inline: 18px;
    }

    .dba-store-master-row {
      grid-template-columns: 1fr;
    }

    .dba-store-master-image-wrap {
      justify-content: flex-start;
    }

    .dba-store-master-image-wrap > div {
      max-width: 320px;
    }

    .dba-store-grid-below {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 680px) {
    .dba-store {
      padding-inline: 14px;
    }

    .dba-store-subnav {
      border-radius: 18px;
    }

    .dba-store-section-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .dba-store-newsletter {
      flex-direction: column;
      align-items: flex-start;
    }

    .dba-store-newsletter-input {
      width: 100%;
    }

    .dba-store-newsletter-input input {
      flex: 1;
    }
  }

  .db-music-stack {
    display: grid;
    gap: clamp(24px, 3vw, 36px);
  }

  .db-music-feature-grid {
    display: grid;
    gap: 16px;
  }

  @media (min-width: 1024px) {
    .db-music-feature-grid {
      grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
      grid-template-areas:
        "tracks stream"
        "tracks album";
    }
  }

  .db-track-card {
    grid-area: tracks;
  }

  .db-stream-card {
    grid-area: stream;
  }

  .db-album-card {
    grid-area: album;
  }

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

  .db-track-item {
    border-radius: 12px;
    border: 1px solid rgba(176, 187, 202, 0.22);
    background: rgba(11, 16, 24, 0.78);
    padding: 10px;
  }

  .db-track-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .db-track-title {
    display: grid;
    gap: 2px;
  }

  .db-track-title strong {
    color: #eef3fb;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .db-track-title span {
    color: #97a6ba;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .db-track-audio {
    width: 100%;
    height: 34px;
  }

  .db-stream-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
  }

  .db-stream-link-row a {
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.34);
    color: #e7edf7;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 12px;
    background: rgba(14, 20, 29, 0.84);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .db-stream-link-row a:hover {
    border-color: rgba(236, 200, 127, 0.66);
    background: rgba(20, 28, 38, 0.95);
    transform: translateY(-1px);
  }

  .db-stream-embed-grid {
    display: grid;
    gap: 10px;
  }

  .db-stream-embed {
    border-radius: 12px;
    border: 1px solid rgba(176, 187, 202, 0.24);
    overflow: hidden;
    background: #05070b;
    min-height: 152px;
  }

  .db-stream-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 152px;
    border: 0;
    display: block;
  }

  .db-stream-embed-apple iframe {
    min-height: 176px;
  }

  .db-album-highlight {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(176, 187, 202, 0.22);
    background: rgba(11, 16, 24, 0.78);
    padding: 10px;
    margin-top: 10px;
  }

  .db-album-highlight img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid rgba(176, 187, 202, 0.24);
  }

  .db-album-meta {
    display: grid;
    gap: 4px;
  }

  .db-album-meta strong {
    color: #f3f7fd;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .db-album-meta span {
    color: #9caabc;
    font-size: 11px;
    line-height: 1.5;
  }

  .db-store-grid,
  .db-about-grid {
    display: grid;
    gap: 16px;
  }

  @media (min-width: 980px) {
    .db-store-grid {
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    }

    .db-about-grid {
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    }
  }

  .db-store-card p,
  .db-about-card p {
    margin-bottom: 12px;
  }

  .db-store-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
  }

  .db-store-pills span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(176, 187, 202, 0.28);
    background: rgba(12, 16, 23, 0.68);
    color: #d9e2ee;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
  }

  .db-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .db-store-video,
  .db-about-video {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(176, 187, 202, 0.24);
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .db-store-video iframe,
  .db-about-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .db-slideshow-shell {
    background: var(--surface);
    border: 1px solid rgba(176, 187, 202, 0.18);
    border-radius: var(--radius-md);
    padding: clamp(14px, 2.3vw, 20px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  }

  .db-slideshow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 0;
    background: #111;
    border: 1px solid rgba(176, 187, 202, 0.24);
  }

  .db-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .db-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .db-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
  }

  .db-slide-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(7, 10, 14, 0.62);
    color: #f3f6fb;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 10px;
    text-align: center;
  }

  .db-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(176, 187, 202, 0.42);
    background: rgba(10, 14, 20, 0.58);
    color: #f3f6fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(2px);
  }

  .db-slide-arrow i {
    font-size: 22px;
    line-height: 1;
  }

  .db-slide-arrow:hover {
    background: rgba(17, 23, 31, 0.88);
    border-color: rgba(236, 200, 127, 0.86);
    transform: translateY(-50%) scale(1.04);
  }

  .db-slide-arrow:focus-visible {
    outline: 2px solid rgba(243, 201, 105, 0.95);
    outline-offset: 2px;
  }

  .db-slide-arrow.prev {
    left: 12px;
  }

  .db-slide-arrow.next {
    right: 12px;
  }

  .db-slide-nav {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
  }

  .db-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(176, 187, 202, 0.55);
    background: rgba(22, 28, 38, 0.72);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .db-dot.active {
    background: linear-gradient(135deg, var(--gold), var(--teal));
    border-color: transparent;
    transform: scale(1.08);
  }

  .db-video-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .db-video-mini-card {
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(176, 187, 202, 0.18);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .db-video-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 200, 127, 0.45);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  }

  .db-video-mini-frame {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  .db-video-mini-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .db-video-mini-title {
    margin-top: 8px;
    font-size: 11px;
    color: #dbe3ee;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .db-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 920px) {
    .db-contact-grid {
      grid-template-columns: 1.35fr 1fr;
    }
  }

  .db-card {
    background: var(--surface-soft);
    border: 1px solid rgba(176, 187, 202, 0.18);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2.2vw, 22px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  }

  .db-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #edf1f7;
  }

  .db-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
  }

  .db-chat-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(19, 24, 33, 0.96), rgba(12, 16, 23, 0.96));
    border-color: rgba(201, 161, 90, 0.33);
  }

  .db-chat-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 200, 127, 0.24), transparent 70%);
    pointer-events: none;
  }

  .db-chat-window {
    border: 1px solid rgba(176, 187, 202, 0.22);
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(13, 19, 27, 0.95), rgba(10, 14, 21, 0.96));
    display: block;
    overflow: hidden;
    min-height: 0;
  }

  .db-chat-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(176, 187, 202, 0.2);
    background: linear-gradient(180deg, rgba(20, 27, 37, 0.98), rgba(17, 23, 32, 0.95));
  }

  .db-chat-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .db-chat-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
  }

  .db-chat-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(236, 200, 127, 0.52);
    background: linear-gradient(135deg, rgba(236, 200, 127, 0.3), rgba(127, 202, 191, 0.3));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8f0db;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.33);
    flex-shrink: 0;
  }

  .db-chat-avatar i {
    font-size: 14px;
  }

  .db-chat-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
  }

  .db-chat-brand-text strong {
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #f4f7fc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .db-chat-brand-text small {
    font-size: 10px;
    color: #a7b2c2;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .db-chat-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .db-chat-header-note {
    margin: 0;
    font-size: 10px;
    color: #9faabc;
    letter-spacing: 0.02em;
    line-height: 1.45;
  }

  .db-chat-telegram-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid rgba(84, 169, 235, 0.42);
    border-radius: 10px;
    padding: 7px 10px;
    color: #dff2ff;
    background: rgba(30, 91, 149, 0.22);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .db-chat-telegram-link:hover {
    border-color: rgba(84, 169, 235, 0.7);
    background: rgba(30, 91, 149, 0.34);
    transform: translateY(-1px);
  }

  .db-chat-status {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #b9c1ce;
    border: 1px solid rgba(176, 187, 202, 0.3);
    border-radius: 999px;
    padding: 3px 9px;
    background: rgba(14, 19, 27, 0.75);
  }

  .db-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55c47a;
    box-shadow: 0 0 0 7px rgba(85, 196, 122, 0.12);
  }

  .db-chat-log {
    padding: 13px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 190px;
    max-height: 286px;
    background:
      radial-gradient(circle at 12% 0, rgba(127, 202, 191, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(13, 18, 25, 0.74), rgba(11, 16, 23, 0.68));
  }

  .db-chat-log::-webkit-scrollbar {
    width: 7px;
  }

  .db-chat-log::-webkit-scrollbar-track {
    background: rgba(9, 13, 19, 0.4);
  }

  .db-chat-log::-webkit-scrollbar-thumb {
    background: rgba(176, 187, 202, 0.3);
    border-radius: 999px;
  }

  .db-msg {
    max-width: min(86%, 430px);
    border-radius: 12px;
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1.55;
    border: 1px solid rgba(176, 187, 202, 0.2);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);
    word-break: break-word;
  }

  .db-msg-text {
    display: block;
  }

  .db-msg-status {
    display: none;
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: right;
    color: rgba(255, 247, 232, 0.72);
  }

  .db-msg.bot,
  .db-msg.assistant {
    align-self: flex-start;
    background: linear-gradient(160deg, rgba(22, 31, 43, 0.95), rgba(17, 24, 34, 0.95));
    color: #edf3fc;
  }

  .db-msg.user {
    align-self: flex-end;
    background: linear-gradient(155deg, rgba(224, 176, 255, 0.24), rgba(236, 200, 127, 0.25));
    border-color: rgba(236, 200, 127, 0.48);
    color: #fff7e8;
    border-bottom-right-radius: 5px;
  }

  .db-msg.user .db-msg-status {
    display: block;
  }

  .db-msg.pending {
    border-style: dashed;
    border-color: rgba(176, 187, 202, 0.45);
    color: #c7d1de;
  }

  .db-msg.delivered {
    border-color: rgba(114, 214, 134, 0.5);
    color: #d6ffe0;
  }

  .db-msg.failed {
    border-color: rgba(248, 113, 113, 0.55);
    color: #ffd3d3;
  }

  .db-msg.user.failed .db-msg-status {
    color: #ffb4b4;
  }

  .db-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 10px 12px;
    border-top: 1px solid rgba(176, 187, 202, 0.16);
    background: rgba(13, 18, 25, 0.85);
  }

  .db-chat-chip {
    border: 1px solid rgba(176, 187, 202, 0.34);
    border-radius: 999px;
    background: rgba(16, 22, 31, 0.88);
    color: #dce4ef;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .db-chat-chip:hover {
    border-color: rgba(236, 200, 127, 0.62);
    background: rgba(24, 31, 42, 0.96);
    transform: translateY(-1px);
  }

  .db-chat-form {
    border-top: 0;
    padding: 12px;
    background: transparent;
    display: grid;
    gap: 8px;
  }

  .db-chat-composer-row {
    display: grid;
    grid-template-columns: minmax(126px, 34%) 1fr auto;
    gap: 8px;
    align-items: center;
  }

  .db-chat-contact-field,
  .db-chat-email-field,
  .db-chat-message-field {
    width: 100%;
    background: rgba(10, 13, 18, 0.86);
    color: #edf2fa;
    border: 1px solid rgba(176, 187, 202, 0.28);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 12px;
  }

  .db-chat-contact-field:focus,
  .db-chat-email-field:focus,
  .db-chat-message-field:focus {
    outline: none;
    border-color: rgba(236, 200, 127, 0.8);
    box-shadow: 0 0 0 2px rgba(236, 200, 127, 0.14);
  }

  .db-chat-send-btn {
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 14px;
    color: #0f151d;
    background: linear-gradient(135deg, #ecc87f, #c9a15a);
    white-space: nowrap;
  }

  .db-chat-input-wrap {
    display: flex;
    gap: 8px;
  }

  .db-chat-input,
  .db-contact-input,
  .db-contact-textarea {
    width: 100%;
    background: rgba(10, 13, 18, 0.86);
    color: #edf2fa;
    border: 1px solid rgba(176, 187, 202, 0.28);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
  }

  .db-chat-input:focus,
  .db-contact-input:focus,
  .db-contact-textarea:focus {
    outline: none;
    border-color: rgba(236, 200, 127, 0.8);
    box-shadow: 0 0 0 2px rgba(236, 200, 127, 0.14);
  }

  .db-chat-send,
  .db-contact-send {
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
  }

  .db-chat-send {
    white-space: nowrap;
    padding: 0 14px;
    color: #0f151d;
    background: linear-gradient(135deg, #ecc87f, #c9a15a);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 24px rgba(201, 161, 90, 0.35);
  }

  .db-chat-send i {
    font-size: 12px;
  }

  .db-contact-form {
    display: grid;
    gap: 10px;
  }

  .db-contact-email-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(236, 200, 127, 0.38);
    border-radius: 10px;
    padding: 8px 10px;
    color: #ffe7aa;
    background: rgba(236, 200, 127, 0.08);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
  }

  .db-contact-email-link:hover {
    border-color: rgba(236, 200, 127, 0.65);
    background: rgba(236, 200, 127, 0.14);
  }

  .db-contact-textarea {
    min-height: 130px;
    resize: vertical;
  }

  .db-contact-send {
    width: fit-content;
    padding: 10px 16px;
    color: #0f151d;
    background: linear-gradient(135deg, #ecc87f, #c9a15a);
  }

  .db-note {
    font-size: 12px;
    color: #b8b8b8;
    min-height: 16px;
  }

  @media (max-width: 680px) {
    .db-chat-composer-row {
      grid-template-columns: 1fr;
    }

    .db-album-highlight {
      grid-template-columns: 1fr;
    }

    .db-album-highlight img {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      max-width: 180px;
    }
  }

  .db-footer {
    margin-top: clamp(34px, 5vw, 56px);
    border-top: 1px solid rgba(176, 187, 202, 0.18);
    padding-top: 20px;
    text-align: center;
  }

  .db-footer-links {
    display: flex;
    gap: 10px;
    row-gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .db-footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f1f1f1;
    border: 1px solid rgba(176, 187, 202, 0.3);
    border-radius: 999px;
    width: 50px;
    height: 50px;
    background: rgba(12, 16, 23, 0.82);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .db-footer-links i {
    font-size: 24px;
    line-height: 1;
  }

  .db-footer-links a.brand-facebook i {
    color: #1877f2;
  }

  .db-footer-links a.brand-instagram i {
    color: #e1306c;
  }

  .db-footer-links a.brand-x i {
    color: #ffffff;
  }

  .db-footer-links a.brand-youtube i {
    color: #ff0000;
    font-size: 14px;
  }

  .db-footer-links a.brand-tiktok i {
    color: #25f4ee;
    text-shadow: 1px 0 #fe2c55;
  }

  .db-footer-links a:hover {
    background: rgba(19, 25, 34, 0.92);
    border-color: rgba(236, 200, 127, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
  }

  .db-footer-meta {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 14px;
    color: #b8c0cc;
    font-size: clamp(8px, 0.95vw, 11px);
    letter-spacing: 0.08em;
    text-transform: none;
    white-space: nowrap;
  }

  .db-footer-meta .left {
    text-align: left;
  }

  .db-footer-meta .center {
    text-align: center;
  }

  .db-footer-meta .right {
    text-align: right;
  }

  @media (max-width: 768px) {
    .main-nav {
      top: 8px;
      width: calc(100% - 14px);
      border-radius: 14px;
      padding: 6px;
      gap: 6px;
    }

    .main-nav a {
      flex: 1;
      font-size: 11px;
      letter-spacing: 0.05em;
      padding: 8px 6px;
    }

    .db-top-nav {
      top: 8px;
      width: calc(100% - 14px);
      border-radius: 14px;
      padding: 6px;
    }

    .db-top-nav-links {
      gap: 6px;
    }

    .db-top-nav-links a {
      flex: 1;
      font-size: 11px;
      letter-spacing: 0.05em;
      padding: 8px 6px;
    }

    .db-shell {
      padding: 16px;
      border-radius: 18px;
    }

    .db-title-section {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding-inline: 0;
    }

    .db-page-hero {
      border-radius: 16px;
      padding: 18px;
    }

    .db-page-title {
      font-size: clamp(26px, 8vw, 40px);
    }

    .db-premium-section {
      border-radius: 16px;
      padding: 16px;
    }

    .db-section-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .db-music-album-cover {
      max-width: 100%;
    }

    .db-song-list {
      max-height: none;
      padding-right: 0;
    }

    .db-music-embed-grid .db-stream-embed iframe,
    .db-music-embed-grid .db-stream-embed-apple iframe {
      min-height: 320px;
    }

    .db-about-heading-box {
      width: 100%;
    }

    .db-about-photo-blend {
      aspect-ratio: 16 / 10;
    }

    .db-chat-input-wrap {
      flex-direction: column;
    }

    .db-chat-send {
      width: 100%;
      justify-content: center;
      padding: 10px 12px;
    }

    .db-slide-arrow {
      width: 40px;
      height: 40px;
    }

    .db-slide-arrow i {
      font-size: 19px;
    }

    .db-footer-meta {
      font-size: 8px;
      column-gap: 8px;
    }
  }

  /* Professional polish layer (final overrides) */
  :root {
    --db-shell-max: 1280px;
    --db-focus: rgba(236, 200, 127, 0.88);
  }

  body {
    color: var(--text);
    background:
      radial-gradient(1200px 640px at 50% -20%, rgba(236, 200, 127, 0.1), transparent 58%),
      radial-gradient(900px 560px at 110% -12%, rgba(127, 202, 191, 0.09), transparent 58%),
      radial-gradient(900px 560px at -10% 8%, rgba(121, 89, 160, 0.07), transparent 56%),
      linear-gradient(165deg, #04050a 0%, #080b12 52%, #06080d 100%);
  }

  .db-wrap {
    padding: clamp(84px, 9vw, 118px) clamp(14px, 2.4vw, 28px) clamp(32px, 4vw, 52px);
  }

  .db-shell {
    max-width: min(var(--db-shell-max), 100%);
    border-radius: clamp(20px, 3vw, 34px);
    padding: clamp(18px, 3vw, 36px);
    display: grid;
    gap: clamp(22px, 3vw, 36px);
  }

  .db-page-section {
    display: grid;
    gap: clamp(18px, 2.2vw, 28px);
  }

  .db-page-section + .db-page-section {
    margin-top: clamp(8px, 1.2vw, 14px);
  }

  .main-nav {
    width: min(1260px, calc(100% - 20px));
    border-color: rgba(176, 187, 202, 0.34);
    background: rgba(7, 10, 15, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.54);
  }

  .main-nav a {
    min-height: 38px;
    font-size: clamp(11px, 0.9vw, 12px);
    letter-spacing: 0.08em;
  }

  .main-nav a.active {
    box-shadow: inset 0 0 0 1px rgba(236, 200, 127, 0.28);
  }

  .db-section-header {
    margin-bottom: clamp(16px, 2.1vw, 24px);
  }

  .db-section-header p {
    max-width: 600px;
  }

  .db-video-mini-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
  }

  .db-video-mini-card {
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(172deg, rgba(18, 23, 32, 0.94), rgba(10, 14, 21, 0.95));
    border-color: rgba(176, 187, 202, 0.24);
  }

  .db-video-mini-frame {
    border-radius: 12px;
  }

  .db-video-mini-title {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.45;
    white-space: normal;
  }

  .db-card,
  .db-premium-card,
  .db-music-platform-card,
  .dba-store-video-card,
  .dba-store-mastering-card,
  .dba-store-tool-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  }

  .db-about-premium-grid {
    align-items: start;
    gap: clamp(16px, 2.1vw, 24px);
  }

  .db-about-bio-card,
  .db-about-story-card {
    border-radius: 20px;
  }

  .db-about-bio-card p,
  .db-about-story-copy p {
    line-height: 1.78;
  }

  .db-about-video,
  .db-about-photo-blend {
    border-radius: 16px;
  }

  .db-music-head,
  .db-music-purchase,
  .db-music-platforms {
    border-radius: clamp(18px, 2.4vw, 24px);
  }

  .db-music-track h4 {
    white-space: normal;
    line-height: 1.35;
  }

  .db-music-play-btn:hover {
    transform: translateY(-1px);
  }

  .dba-store {
    border-radius: clamp(22px, 3vw, 30px);
  }

  .dba-store-subnav {
    position: sticky;
    top: 74px;
    z-index: 35;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  }

  .dba-store section {
    margin-bottom: clamp(34px, 4vw, 50px);
  }

  .dba-store-section-header {
    align-items: flex-start;
    gap: 10px;
  }

  .dba-store-video-wrapper,
  .dba-store-ai-image,
  .dba-store-analog-image {
    border-radius: 16px;
  }

  .dba-store-newsletter-input input:focus {
    outline: none;
    border-color: rgba(236, 200, 127, 0.82);
    box-shadow: 0 0 0 2px rgba(236, 200, 127, 0.14);
  }

  .db-footer {
    padding-top: clamp(18px, 2.6vw, 26px);
    border-top-color: rgba(176, 187, 202, 0.24);
  }

  .db-footer-meta {
    margin-top: 14px;
    font-size: clamp(10px, 0.95vw, 12px);
    letter-spacing: 0.04em;
    line-height: 1.5;
    white-space: normal;
    gap: 8px;
  }

  :where(a, button, input, textarea, select):focus-visible {
    outline: 2px solid var(--db-focus);
    outline-offset: 2px;
  }

  @media (max-width: 1024px) {
    .db-video-mini-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }

  @media (max-width: 900px) {
    .db-footer-meta {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2px;
    }

    .db-footer-meta .left,
    .db-footer-meta .center,
    .db-footer-meta .right {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .db-wrap {
      padding-top: 82px;
      padding-inline: 10px;
    }

    .main-nav {
      width: calc(100% - 10px);
      padding: 5px;
      gap: 4px;
      border-radius: 12px;
    }

    .main-nav a {
      padding: 7px 4px;
      font-size: 10px;
      letter-spacing: 0.04em;
    }

    .db-shell {
      border-radius: 16px;
      padding: 14px;
      gap: 18px;
    }

    .dba-store-subnav {
      position: static;
      box-shadow: none;
    }
  }

  @media (max-width: 560px) {
    .db-video-mini-grid {
      grid-template-columns: 1fr;
    }

    .db-footer-links a {
      width: 44px;
      height: 44px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }
  }
