    :root {
      --bg-primary:    #120a06;
      --bg-secondary:  #1c1009;
      --bg-card:       #221309;
      --bg-card-alt:   #2a1a0d;
      --gold:          #d4a756;
      --gold-light:    #f0d9a8;
      --gold-dim:      #9a7a3e;
      --gold-border:   rgba(212,167,86,.18);
      --rust:          #c8622a;
      --rust-hover:    #e0733a;
      --rust-glow:     rgba(200,98,42,.35);
      --text-primary:  #f0d9a8;
      --text-muted:    rgba(240,217,168,.6);
      --text-faint:    rgba(240,217,168,.38);
      --font-serif:    'Playfair Display', Georgia, serif;
      --font-sans:     'Inter', system-ui, sans-serif;
      --radius-card:   20px;
      --radius-btn:    12px;
      color-scheme: dark;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-sans); font-size: 16px; line-height: 1.7; min-height: 100vh; }
    body::before { content: ''; position: fixed; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E"); background-size: 400px 400px; opacity: .6; z-index: 0; }
    .energy-banner { background: linear-gradient(90deg, rgba(200,98,42,.18), rgba(212,167,86,.08), rgba(200,98,42,.18)); border-bottom: 1px solid rgba(200,98,42,.25); padding: 10px 0; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rust-hover); }
    .container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); margin: 40px 0; }
    .badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--gold-border); }
    .badge-available { background: rgba(212,167,86,.1); color: var(--gold); border-color: rgba(212,167,86,.35); }
    .badge-genre { background: rgba(255,255,255,.05); color: var(--text-muted); }
    .badge-new { background: rgba(37,211,102,.08); color: #5ee890; border-color: rgba(37,211,102,.25); }
    .badge-demo { background: rgba(200,98,42,.12); color: var(--rust-hover); border-color: var(--rust-glow); font-size: 10px; }
    nav.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(18,10,6,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gold-border); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-logo { font-family: var(--font-serif); font-size: 18px; font-weight: 900; color: var(--gold); text-decoration: none; letter-spacing: .02em; }
    .nav-logo span { color: var(--text-muted); font-weight: 400; font-size: 13px; display: block; line-height: 1; margin-top: 1px; font-family: var(--font-sans); letter-spacing: .12em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .15s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--rust); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: var(--radius-btn); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: background .15s, transform .15s; }
    .nav-cta:hover { background: var(--rust-hover); transform: translateY(-1px); }
    @media (max-width: 700px) { .nav-links { display: none; } }
    .hero-artwork { position: relative; width: 100%; aspect-ratio: 1 / 0.55; overflow: hidden; background: #120a06; }
    .hero-artwork img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
    .hero-artwork::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-primary) 0%, rgba(18,10,6,.72) 35%, rgba(18,10,6,.1) 70%, transparent 100%); }
    .hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 40px 40px 44px; text-align: center; }
    @media (max-width: 640px) { .hero-overlay { padding: 24px 20px 32px; } }
    .hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; justify-content: center; }
    .hero-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 6.5vw, 4.8rem); font-weight: 900; color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.7); line-height: 1.02; margin-bottom: 12px; }
    .hero-title span { color: var(--rust-hover); font-style: italic; display: block; }
    .hero-subtitle { font-size: 17px; color: rgba(255,255,255,.75); max-width: 560px; line-height: 1.6; text-shadow: 0 2px 8px rgba(0,0,0,.5); margin-left: auto; margin-right: auto; }
    
    /* FOOTER */
    footer { margin-top: 80px; padding: 48px 0; border-top: 1px solid var(--gold-border); text-align: center; }
    .footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 20px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; margin-bottom: 20px; }
    .footer-links a { color: var(--text-faint); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .15s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-faint); }
    .footer-disc { font-size: 11px; color: var(--text-faint); margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    .player-wrap { background: var(--bg-card); border: 1px solid var(--gold-border); border-radius: var(--radius-card); overflow: hidden; margin: 36px 0; box-shadow: 0 20px 60px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(212,167,86,.06); }
    .player-header { padding: 20px 24px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--gold-border); }
    .player-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--gold-light); }
    .player-body { padding: 24px; }
    .player-row { display: flex; align-items: center; gap: 16px; }
    .player-btn { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--rust) 0%, #a04820 100%); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 24px var(--rust-glow); transition: transform .15s, box-shadow .15s; }
    .player-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px var(--rust-glow); }
    .player-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
    .player-btn.is-playing .icon-play { display: none !important; }
    .player-btn .icon-pause { display: none; }
    .player-btn.is-playing .icon-pause { display: block; margin-left: 0 !important; }
    .player-info { flex: 1; min-width: 0; }
    .player-track { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .player-progress { position: relative; height: 6px; border-radius: 999px; background: rgba(212,167,86,.12); cursor: pointer; touch-action: none; }
    .player-fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: linear-gradient(90deg, var(--rust) 0%, var(--gold) 100%); border-radius: 999px; pointer-events: none; }
    .player-dot { position: absolute; top: 50%; left: 0%; transform: translate(-50%,-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--gold-light); border: 2px solid var(--bg-card); box-shadow: 0 0 8px rgba(212,167,86,.5); pointer-events: none; }
    .player-times { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
    .player-vol { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .player-vol svg { width: 16px; height: 16px; fill: var(--text-faint); }
    .player-vol input[type=range] { width: 80px; accent-color: var(--gold); }
    @media (max-width: 520px) { .player-vol { display: none; } }
    .player-note { margin-top: 16px; padding: 12px 16px; background: rgba(200,98,42,.08); border: 1px solid rgba(200,98,42,.2); border-radius: 10px; font-size: 12px; color: var(--rust-hover); letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
    .player-note svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
    .metadata-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-card); overflow: hidden; margin: 0 0 40px; }
    .meta-item { background: var(--bg-card); padding: 18px 16px; text-align: center; }
    .meta-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
    .meta-value { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--gold); line-height: 1.2; }
    .meta-sub { font-size: 11px; color: var(--text-faint); margin-top: 2px; }
    .section-label { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 14px; }
    .description-text { color: var(--text-muted); line-height: 1.8; font-size: 16px; }
    .description-text p + p { margin-top: 1em; }
    .description-text strong { color: var(--gold-light); font-weight: 600; }
    .tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: rgba(212,167,86,.07); border: 1px solid rgba(212,167,86,.15); font-size: 12px; font-weight: 600; color: var(--gold-dim); letter-spacing: .06em; }
    .callout { background: rgba(212,167,86,.05); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; padding: 18px 20px; margin: 28px 0; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    .callout strong { color: var(--gold-light); }
    .lyrics-wrap { background: var(--bg-card); border: 1px solid var(--gold-border); border-radius: var(--radius-card); padding: 36px 40px; margin: 40px 0; }
    @media (max-width: 600px) { .lyrics-wrap { padding: 24px 20px; } }
    .lyrics-wrap .section-label { margin-bottom: 28px; }
    .lyrics-block { margin-bottom: 28px; }
    .lyrics-block:last-child { margin-bottom: 0; }
    .lyrics-part { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rust-hover); margin-bottom: 12px; display: block; }
    .lyrics-text { font-family: var(--font-serif); font-size: 17px; line-height: 1.75; color: var(--text-primary); white-space: pre-line; }
    .lyrics-text em { color: var(--gold); font-style: italic; }
    .lyrics-text strong { color: var(--rust-hover); font-weight: 700; font-style: normal; }
    .cta-block { background: linear-gradient(135deg, var(--bg-card-alt) 0%, var(--bg-card) 100%); border: 1px solid rgba(212,167,86,.28); border-radius: var(--radius-card); padding: 40px; margin: 40px 0; position: relative; overflow: hidden; }
    .cta-block::before { content: ''; position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(200,98,42,.12), transparent 70%); pointer-events: none; }
    @media (max-width: 600px) { .cta-block { padding: 28px 24px; } }
    .cta-title { font-family: var(--font-serif); font-size: 28px; font-weight: 900; color: var(--gold-light); margin-bottom: 8px; }
    .cta-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
    .cta-includes { list-style: none; margin-bottom: 32px; display: grid; gap: 12px; }
    .cta-includes li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
    .cta-includes li svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
    .cta-includes li strong { color: var(--gold-light); font-weight: 600; }
    .cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
    .btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 16px 28px; border-radius: var(--radius-btn); font-size: 15px; font-weight: 700; text-decoration: none; transition: background .15s, transform .15s; box-shadow: 0 8px 28px rgba(37,211,102,.22); }
    .btn-whatsapp:hover { background: #1eb456; transform: translateY(-2px); }
    .btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
    .btn-email { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,167,86,.1); color: var(--gold); padding: 16px 28px; border-radius: var(--radius-btn); font-size: 15px; font-weight: 700; text-decoration: none; border: 1px solid rgba(212,167,86,.28); transition: background .15s, transform .15s; }
    .btn-email:hover { background: rgba(212,167,86,.18); transform: translateY(-2px); }
    .btn-email svg { width: 18px; height: 18px; fill: currentColor; }
    .cta-note { margin-top: 20px; font-size: 12px; color: var(--text-faint); }
    .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 24px; }
    .related-card { background: var(--bg-card); border: 1px solid var(--gold-border); border-radius: var(--radius-card); padding: 22px; text-decoration: none; transition: border-color .2s, transform .15s, box-shadow .15s; }
    .related-card:hover { border-color: rgba(212,167,86,.45); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.35); }
    .related-genre { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; display: block; }
    .related-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; font-style: italic; color: var(--gold-light); margin-bottom: 6px; }
    .related-desc { font-size: 13px; color: var(--text-faint); line-height: 1.55; }
    .related-cta { margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rust-hover); display: flex; align-items: center; gap: 4px; }
    .related-cta svg { width: 12px; height: 12px; fill: currentColor; transition: transform .15s; }
    .related-card:hover .related-cta svg { transform: translateX(3px); }
    footer { margin-top: 80px; padding: 48px 0; border-top: 1px solid var(--gold-border); text-align: center; }
    .footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 20px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; margin-bottom: 20px; }
    .footer-links a { color: var(--text-faint); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .15s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-faint); }
    .footer-disc { font-size: 11px; color: var(--text-faint); margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    section { margin: 56px 0; }
    section:first-of-type { margin-top: 0; }
    h2.section-heading { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--gold-light); margin-bottom: 20px; }
