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

    :root {
      --bg:        #1c1c1e;
      --bg-panel:  #222224;
      --bg-track:  #252527;
      --border:    rgba(255,255,255,0.07);
      --gold:      #f0b429;
      --link:      #f0b429;
      --gold-dim:  rgba(240,180,41,0.18);
      --text:      #f0ede8;
      --muted:     #9a9898;
      --dim:       #555;
      --body-w:    860px;
      --photo-w:   220px;
    }

    html, body { max-width: 100%; overflow-x: hidden; }
    html { background: var(--bg); }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      line-height: 1.5;
      min-height: 100vh;
    }

    /* ════════════════════════════════
       FULL-WIDTH BANNER
    ════════════════════════════════ */
    .banner-wrap {
      width: 100%;
      position: relative;
      line-height: 0;
    }
    .banner {
      width: 100%;
      background: #111;
      display: block;
      position: relative;
      line-height: 0;
      overflow: visible;
    }
    .banner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .banner-empty {
      width: 100%; height: 100%;
      background: linear-gradient(160deg, #12181a 0%, #1a1f14 50%, #0d1018 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .banner-empty svg { opacity: 0.07; }
    .banner-overlay {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      pointer-events: none;
      max-width: 100%;
    }



    /* ════════════════════════════════
       PAGE BODY
    ════════════════════════════════ */
    .page {
      max-width: var(--body-w);
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    /* ════════════════════════════════
       PROFILE SECTION
    ════════════════════════════════ */
    .profile {
      padding: 36px 0 16px;
      overflow: hidden; /* clearfix for float */
    }
    .profile-name {
      font-family: 'Lato', sans-serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 14px;
    }
    .profile-bio {
      font-size: 0.95rem;
      font-weight: 300;
      color: #ccc;
      line-height: 1.75;
      margin-bottom: 22px;
      max-width: 580px;
    }
    .profile-links {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .profile-links a {
      font-size: 0.9rem;
      color: var(--link);
      text-decoration: none;
    }
    .profile-links a:hover { text-decoration: underline; }
    .profile-contact {
      font-size: 0.9rem;
      color: var(--text);
      margin-top: 2px;
    }

    .profile-photo {
      float: right;
      width: var(--photo-w);
      margin-left: 32px;
      border-radius: 3px;
      background: transparent;
    }
    .profile-photo img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 3px;
      filter: grayscale(15%);
    }
    .profile-photo-empty {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0.15;
    }

    /* ════════════════════════════════
       WAVEFORM PLAYER
    ════════════════════════════════ */
    .player-wrap {
      background: var(--bg);
      margin: 0 -24px;
      padding: 0 24px;
    }

    .player {
      display: flex;
      align-items: center;
      gap: 16px;
      height: 130px;
      position: relative;
    }

    /* Play button — circular gold */
    .play-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--gold);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s, transform 0.1s;
      box-shadow: 0 2px 12px rgba(240,180,41,0.35);
    }
    .play-btn:hover { filter: brightness(1.18); transform: scale(1.05); }
    .play-btn:active { transform: scale(0.97); }
    .play-btn svg { width: 26px; height: 26px; fill: #1a1a1a; margin-left: 3px; }
    .play-btn.paused svg { margin-left: 2px; }
    .play-btn.playing svg { margin-left: 0; }

    /* Waveform canvas area */
    .wave-area {
      flex: 1;
      height: 90px;
      position: relative;
      cursor: crosshair;
      min-width: 0;
    }
    .wave-area canvas {
      display: block;
      width: 100%; height: 100%;
    }
    .wave-loading {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: flex-start;
      gap: 6px;
      padding-left: 4px;
    }
    .wave-loading span {
      font-size: 11px;
      color: var(--dim);
      font-style: italic;
    }
    .wl-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--gold);
      opacity: 0.5;
      animation: wldot 1.2s ease-in-out infinite;
    }
    .wl-dot:nth-child(2) { animation-delay: 0.15s; }
    .wl-dot:nth-child(3) { animation-delay: 0.30s; }
    @keyframes wldot { 0%,80%,100%{transform:scaleY(0.4);opacity:0.3} 40%{transform:scaleY(1);opacity:0.8} }



    /* Now-playing label below player */
    .now-playing {
      padding: 6px 0 12px;
      font-size: 12px;
      color: var(--muted);
      font-style: italic;
    }
    .now-playing strong { color: var(--text); font-style: normal; font-weight: 400; }

    /* ════════════════════════════════
       TRACK LIST
    ════════════════════════════════ */
    .tracklist { margin-top: 10px; }

    .section-head {
      font-size: 22px;
      font-weight: 400;
      color: var(--text);
      padding: 0 0 8px 0px;
      margin-bottom: 2px;
      margin-top: 18px;
    }

    .track-row {
      display: flex;
      align-items: center;
      padding: 7px 10px;
      border-top: 1px solid var(--border);
      cursor: pointer;
      border-radius: 2px;
      transition: background 0.1s;
      gap: 12px;
    }
    .track-row:last-child { border-bottom: 1px solid var(--border); }
    .track-row:hover  { background: rgba(255,255,255,0.04); }
    .track-row.active { background: rgba(240,180,41,0.07); }

    .tr-playing-icon {
      width: 12px; height: 12px;
      flex-shrink: 0;
      visibility: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .track-row.active .tr-playing-icon { visibility: visible; }
    .tr-play-svg { width: 8px; height: 10px; fill: var(--gold); display: block; }
    .tr-vu { display: none; flex-direction: column; justify-content: space-between; width: 12px; height: 11px; }
    .track-row.active.playing .tr-play-svg { display: none; }
    .track-row.active.playing .tr-vu       { display: inline-flex; }
    @keyframes vu-bounce {
      0%, 100% { width: 3px; }
      50%       { width: 12px; }
    }
    .vu-bar {
      height: 2px; border-radius: 1px; background: var(--gold);
      animation: vu-bounce 0.55s ease-in-out infinite alternate;
    }
    .vu-bar:nth-child(1) { animation-duration: 0.55s; animation-delay: 0.00s; }
    .vu-bar:nth-child(2) { animation-duration: 0.70s; animation-delay: 0.14s; }
    .vu-bar:nth-child(3) { animation-duration: 0.42s; animation-delay: 0.28s; }

    .tr-title {
      flex: 1;
      font-size: 16px;
      font-weight: 400;
      padding-left: 8px;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .track-row.active .tr-title { color: var(--gold); }

    .tr-dur {
      font-size: 0.88rem;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ════════════════════════════════
       VIDEO SECTION
    ════════════════════════════════ */
    .video-section { margin-top: 44px; }
    .video-section .section-head { margin-bottom: 12px; }

    .video-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .video-list.side {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .video-list.side .video-card { flex: 0 0 calc(50% - 8px); }
    @media (max-width: 600px) {
      .video-list.side .video-card { flex: 0 0 100%; }
    }
    .video-card {
      width: 100%;
      cursor: pointer;
      border-radius: 3px;
      overflow: hidden;
      background: #202022;
      border: 1px solid var(--border);
      transition: border-color 0.15s;
      display: flex;
      flex-direction: column;
    }
    .video-card:hover { border-color: rgba(240,180,41,0.3); }

    .vc-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      background: #18181a;
      position: relative;
      overflow: hidden;
    }
    .vc-thumb img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      opacity: 0.8; transition: opacity 0.15s;
    }
    .video-card:hover .vc-thumb img { opacity: 0.95; }
    .vc-thumb-empty {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0.1;
    }
    .vc-play-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .vc-circle {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      border: 2px solid rgba(255,255,255,0.55);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s, border-color 0.15s;
    }
    .video-card:hover .vc-circle {
      background: rgba(240,180,41,0.25);
      border-color: rgba(240,180,41,0.8);
    }
    .vc-circle svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
    .vc-label {
      padding: 10px 14px;
      font-size: 0.88rem;
      color: var(--muted);
    }

    /* ════════════════════════════════
       TEXT BLOCK
    ════════════════════════════════ */
    .text-block {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .text-block h3 {
      font-size: 1rem; font-weight: 600;
      color: var(--text); margin-bottom: 10px;
    }
    .text-block p {
      font-size: 0.9rem; font-weight: 300;
      color: #aaa; line-height: 1.8;
    }
    .text-body, .profile-bio {
      font-size: 0.9rem; line-height: 1.8; color: #aaa;
    }
    .text-body p, .text-body div { margin-bottom: 0.4em; }
    .text-body a, .profile-bio a { color: var(--link); text-decoration: underline; }
    .text-body b, .text-body strong,
    .profile-bio b, .profile-bio strong { font-weight: 600; color: var(--text); }
    .text-body i, .text-body em,
    .profile-bio i, .profile-bio em { font-style: italic; }

    /* ════════════════════════════════
       INFO COLUMNS BLOCK
    ════════════════════════════════ */
    .columns-block { margin-top: 40px; }
    .columns-block .section-head { margin-bottom: 16px; }
    .columns-row {
      display: grid;
      gap: 24px;
      align-items: start;
    }
    .columns-1 .columns-row { grid-template-columns: 1fr; }
    .columns-2 .columns-row { grid-template-columns: 1fr 1fr; }
    .columns-3 .columns-row { grid-template-columns: 1fr 1fr 1fr; }
    .columns-4 .columns-row { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .col-column { display: flex; flex-direction: column; }
    .col-inner  { display: flex; flex-direction: column; gap: 12px; flex: 1; }
    .col-field-title { font-size: 1.5rem; font-weight: 600; color: var(--text); }
    .col-field-image img { width: 100%; height: auto; display: block; border-radius: 3px; }
    .col-field-text { font-size: 1rem; font-weight: 300; color: #aaa; line-height: 1.75; }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      text-align: center;
      padding: 32px 0 16px;
      font-size: 11px;
      color: var(--dim);
      border-top: 1px solid var(--border);
      margin-top: 48px;
    }
    footer a { color: var(--dim); text-decoration: none; }
    footer a:hover { color: var(--muted); }

    /* ════════════════════════════════
       SOCIAL BLOCK
    ════════════════════════════════ */
    .social-block {
      margin-top: 28px;
      padding-top: 8px;
    }
    .social-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      padding: 8px 0;
    }
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      color: var(--gold);
      text-decoration: none;
      transition: opacity 0.15s;
    }
    .social-icon:hover { opacity: 0.7; }
    .social-icon svg { width: 28px; height: 28px; }

    /* ════════════════════════════════
       NAV BLOCK
    ════════════════════════════════ */
    .nav-block { margin-top: 32px; }
    .nav-block.position-top { margin-top: 0; margin-bottom: 4px; }
    .nav-block .section-head { margin-bottom: 12px; }
    .nav-buttons {
      display: flex;
      gap: 8px;
    }
    .nav-buttons.layout-full .nav-btn { flex: 1; }
    .nav-buttons.layout-left  { justify-content: flex-start; }
    .nav-buttons.layout-center { justify-content: center; }
    .nav-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      padding: 0 20px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-weight: 100;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      background: transparent;
      white-space: nowrap;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
    }
    .nav-btn:hover { color: var(--gold); background: var(--gold-dim); }
    .nav-buttons.hover-text .nav-btn:hover { background: transparent; }
    .nav-btn.nav-bordered {
      border: 1px solid var(--border);
      border-radius: 2px;
    }
    .nav-btn.nav-bordered:hover { border-color: rgba(240,180,41,0.4); }
    @media (max-width: 600px) {
      .nav-buttons { flex-wrap: wrap; }
      .nav-buttons.layout-full .nav-btn { flex: 1 1 calc(50% - 4px); }
      .nav-btn { height: 50px; font-size: 1.3rem; }
    }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    .site-footer {
      text-align: center;
      padding: 28px 20px 32px;
      margin-top: 40px;
      border-top: 1px solid var(--border);
      font-size: 0.78rem;
      color: var(--dim);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 6px 16px;
    }
    .site-footer a { color: var(--dim); text-decoration: underline; }
    .site-footer a:hover { color: var(--muted); }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 600px) {
      .profile-photo { float: right; width: 90px; height: 120px; margin-left: 16px; padding: 5px; overflow: hidden; }
      .profile-photo img { height: 100%; object-fit: cover; object-position: center 15%; }
      .banner { height: 130px; overflow: clip; }
      .banner img:not(.banner-overlay) { height: 100%; object-fit: cover; object-position: left center; }
      .banner img.banner-overlay { position: absolute; top: 0; left: -20px; transform: none; height: 20px; width: calc(100% + 100px); max-width: none; object-fit: fill; }
      .player { height: 100px; }
      .wave-area { height: 65px; }
      .columns-2 .columns-row,
      .columns-3 .columns-row,
      .columns-4 .columns-row { grid-template-columns: 1fr; }
    }
  