/* =============================================================
   SoundWave — light theme for musicstreampanel.com
   Spotify-inspired palette · Inter + DM Sans · waveform motifs
   ============================================================= */

:root {
    --spotify-green: #1DB954;
    --spotify-green-hover: #1ED760;
    --spotify-green-press: #169C46;
    --spotify-black: #191414;
    --ink-900: #191414;
    --ink-700: #2C2C2C;
    --ink-500: #6A6A6A;
    --ink-400: #8A8A8A;
    --ink-300: #B3B3B3;
    --line: #E6E6E6;
    --line-soft: #F0F0F0;
    --surface: #FFFFFF;
    --surface-2: #FAFAFA;
    --surface-3: #F4F4F4;
    --surface-hover: #F7F7F7;
    --tint-green: #E8F8EE;
    --tint-green-2: #D4F1DE;
    --tint-warn: #FFF4E0;
    --tint-warn-ink: #8A5A00;
    --tint-danger: #FDECEC;
    --tint-danger-ink: #B3261E;
    --tint-info: #E7F1FF;
    --tint-info-ink: #0B5FD9;

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(25, 20, 20, 0.04);
    --shadow-sm: 0 2px 6px rgba(25, 20, 20, 0.06);
    --shadow-md: 0 8px 24px rgba(25, 20, 20, 0.08);
    --shadow-lg: 0 20px 48px rgba(25, 20, 20, 0.12);
    --shadow-green: 0 12px 30px rgba(29, 185, 84, 0.28);

    --header-h: 72px;
    --sidebar-w: 264px;
    --max-w: 1320px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'DM Sans', 'Inter', sans-serif;

    --ease: cubic-bezier(.2,.8,.2,1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-900);
    background: var(--surface-2);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--spotify-green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--spotify-green-hover); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--ink-900); margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.25rem); line-height: 1.2; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; color: var(--ink-700); }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
small { font-size: 12.5px; color: var(--ink-500); }
code, pre { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 13px; }
.muted { color: var(--ink-500); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--spotify-black); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.sw-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.sw-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-h);
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 18px;
}
.sw-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-900);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.sw-logo:hover { color: var(--ink-900); }
.sw-logo__mark { display: inline-flex; }
.sw-logo__text { white-space: nowrap; }

.sw-header__nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sw-header__nav a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-pill);
    transition: all .2s var(--ease);
}
.sw-header__nav a:hover { background: var(--surface-3); color: var(--ink-900); }
.sw-header__nav li.is-active a { background: var(--spotify-black); color: #fff; }

.sw-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.sw-nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.sw-nav-toggle span { position: absolute; left: 10px; width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.sw-nav-toggle span:nth-child(1) { top: 14px; }
.sw-nav-toggle span:nth-child(2) { top: 20px; }
.sw-nav-toggle span:nth-child(3) { top: 26px; }
.sw-nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sw-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.sw-nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* chips (lang / currency) */
.sw-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--surface-3);
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    color: var(--ink-700);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s var(--ease);
}
.sw-chip:hover { background: var(--surface-hover); border-color: var(--line); color: var(--ink-900); }
.sw-chip i.fa-chevron-down { font-size: 10px; opacity: .6; }

/* balance pill */
.sw-balance {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    background: linear-gradient(135deg, var(--tint-green), var(--tint-green-2));
    border-radius: var(--radius-pill);
    color: var(--ink-900);
    font-weight: 700;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(29,185,84,0.18);
    transition: all .2s var(--ease);
}
.sw-balance:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(29,185,84,0.3), var(--shadow-sm); color: var(--ink-900); }
.sw-balance__label { color: var(--ink-500); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.sw-balance__value { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.sw-balance__plus {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--spotify-green);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(29,185,84,0.35);
}

/* user avatar */
.sw-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--spotify-black);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--surface);
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--line);
    transition: all .2s var(--ease);
}
.sw-avatar:hover { box-shadow: 0 0 0 2px var(--spotify-green); }

/* dropdowns */
.sw-dropdown { position: relative; }
.sw-dropdown__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all .2s var(--ease);
    z-index: 200;
}
.sw-dropdown.is-open .sw-dropdown__menu,
.sw-dropdown__menu.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sw-dropdown__menu.dropdown-max-height { max-height: 320px; overflow: auto; }
.sw-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--ink-700);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
}
.sw-dropdown__menu a:hover { background: var(--surface-3); color: var(--ink-900); }
.sw-dropdown__menu li.is-active > a { background: var(--tint-green); color: var(--spotify-green-press); }
.sw-dropdown__user { padding: 12px; display: flex; flex-direction: column; gap: 2px; border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; }
.sw-dropdown__user strong { font-size: 14px; color: var(--ink-900); }
.sw-dropdown__user span { font-size: 12.5px; color: var(--ink-500); }
.sw-dropdown__divider { height: 1px; background: var(--line-soft); margin: 4px 2px; }

/* =========================================================
   LAYOUT SHELL
   ========================================================= */
.sw-shell {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    gap: 28px;
    min-height: calc(100vh - var(--header-h) - 340px);
    align-items: start;
}
body.is-guest .sw-shell {
    display: block;
    padding: 0;
    max-width: none;
}
.sw-main { padding: 32px 0 64px; min-width: 0; }
.sw-main--wide { padding: 0 0 64px; }

/* sidebar */
.sw-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    padding: 20px 0;
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
}
.sw-sidebar__group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}
.sw-sidebar__title {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-400);
}
.sw-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all .15s var(--ease);
}
.sw-sidebar a:hover { background: var(--surface-3); color: var(--ink-900); }
.sw-sidebar a i { width: 18px; text-align: center; color: var(--ink-400); font-size: 14px; }
.sw-sidebar a.is-active,
.sw-sidebar a[aria-current="page"] {
    background: var(--spotify-black);
    color: #fff;
}
.sw-sidebar a.is-active i,
.sw-sidebar a[aria-current="page"] i { color: var(--spotify-green); }

.sw-pill {
    margin-left: auto;
    background: var(--spotify-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.sw-sidebar__promo {
    margin-top: 20px;
    padding: 20px;
    background: var(--spotify-black);
    color: #fff;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.sw-sidebar__promo h4 { color: #fff; margin: 14px 0 6px; font-size: 16px; }
.sw-sidebar__promo p { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
.sw-sidebar__promo-wave { opacity: .7; }
.sw-sidebar__promo-wave svg { width: 100%; height: 36px; }
.sw-sidebar__promo-wave rect { animation: eq 1.4s ease-in-out infinite; transform-origin: bottom; }
.sw-sidebar__promo-wave rect:nth-child(odd) { animation-delay: .2s; }
.sw-sidebar__promo-wave rect:nth-child(3n) { animation-delay: .4s; }
@keyframes eq { 0%,100% { transform: scaleY(.4);} 50% { transform: scaleY(1);} }

/* =========================================================
   BUTTONS
   ========================================================= */
.sw-btn, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all .18s var(--ease);
    white-space: nowrap;
    text-decoration: none;
}
.sw-btn--primary, .btn-primary {
    background: var(--spotify-green);
    color: #fff;
}
.sw-btn--primary:hover, .btn-primary:hover {
    background: var(--spotify-green-hover);
    color: #fff;
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-green);
}
.sw-btn--primary:active { transform: scale(.98); background: var(--spotify-green-press); }

.sw-btn--dark, .btn-dark {
    background: var(--spotify-black);
    color: #fff;
}
.sw-btn--dark:hover { background: #000; color: #fff; transform: translateY(-1px); }

.sw-btn--ghost, .btn-default {
    background: transparent;
    color: var(--ink-900);
    box-shadow: inset 0 0 0 1.5px var(--ink-900);
}
.sw-btn--ghost:hover, .btn-default:hover { background: var(--ink-900); color: #fff; }

.sw-btn--light {
    background: var(--surface-3);
    color: var(--ink-900);
}
.sw-btn--light:hover { background: var(--surface-hover); box-shadow: inset 0 0 0 1px var(--line); }

.sw-btn--sm, .btn-xs, .btn-sm { padding: 8px 14px; font-size: 12.5px; }
.sw-btn--lg, .btn-lg { padding: 16px 28px; font-size: 16px; }
.sw-btn--block { width: 100%; }

.sw-btn.disabled, .btn.disabled, .sw-btn:disabled, .btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* =========================================================
   CARDS · PANELS · WELLS
   ========================================================= */
.sw-card, .well, .panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 0 0 20px;
    box-shadow: var(--shadow-xs);
    transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.sw-card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sw-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.sw-card__title { margin: 0; font-size: 1.125rem; font-family: var(--font-display); }
.sw-card__footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.well-float { overflow-x: auto; }

/* page header */
.sw-page-head {
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}
.sw-page-head h1 { font-size: 2rem; margin: 0 0 4px; }
.sw-page-head p { color: var(--ink-500); margin: 0; max-width: 60ch; }
.sw-page-head__actions { display: flex; gap: 10px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 18px; }
.control-label, label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 13px; color: var(--ink-700); }
.form-control, input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="url"], input[type="tel"], input[type="search"], textarea, select {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    color: var(--ink-900);
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    transition: all .18s var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
select.form-control, select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236A6A6A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.form-control:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--spotify-green);
    box-shadow: 0 0 0 4px rgba(29,185,84,0.15);
}
textarea.form-control { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-control::placeholder { color: var(--ink-400); }
.has-error .form-control { border-color: var(--tint-danger-ink); }
.help-block { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ink-500); }
.has-error .help-block { color: var(--tint-danger-ink); }

.input-group { display: flex; align-items: stretch; border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--line); background: var(--surface); }
.input-group:focus-within { border-color: var(--spotify-green); box-shadow: 0 0 0 4px rgba(29,185,84,0.15); }
.input-group .form-control { border: 0; border-radius: 0; box-shadow: none; }
.input-group-addon { display: inline-flex; align-items: center; padding: 0 14px; background: var(--surface-3); color: var(--ink-500); font-size: 13px; font-weight: 600; }

.checkbox, .radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: var(--ink-700);
}
.checkbox input[type="checkbox"], .radio input[type="radio"] {
    width: 18px; height: 18px;
    accent-color: var(--spotify-green);
    margin-top: 2px;
    cursor: pointer;
    flex: none;
}

/* =========================================================
   ALERTS
   ========================================================= */
.alert {
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border: 1px solid transparent;
}
.alert::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}
.alert-success { background: var(--tint-green); color: #0E5A2A; border-color: rgba(29,185,84,0.25); }
.alert-success::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231DB954'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.alert-danger, .alert-error { background: var(--tint-danger); color: var(--tint-danger-ink); border-color: rgba(179,38,30,0.2); }
.alert-danger::before, .alert-error::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B3261E'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.alert-warning { background: var(--tint-warn); color: var(--tint-warn-ink); border-color: rgba(138,90,0,0.2); }
.alert-info { background: var(--tint-info); color: var(--tint-info-ink); border-color: rgba(11,95,217,0.2); }
.alert .close { position: absolute; right: 12px; top: 10px; background: transparent; border: 0; font-size: 20px; line-height: 1; color: inherit; opacity: .6; cursor: pointer; }
.alert .close:hover { opacity: 1; }

/* =========================================================
   BADGES / STATUS
   ========================================================= */
.badge, .sw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--surface-3);
    color: var(--ink-700);
}
.sw-badge--green, .badge-success { background: var(--tint-green); color: var(--spotify-green-press); }
.sw-badge--dark { background: var(--spotify-black); color: #fff; }
.sw-badge--warn, .badge-warning { background: var(--tint-warn); color: var(--tint-warn-ink); }
.sw-badge--danger, .badge-danger { background: var(--tint-danger); color: var(--tint-danger-ink); }
.sw-badge--info, .badge-info { background: var(--tint-info); color: var(--tint-info-ink); }

.sw-status { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 12.5px; }
.sw-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px currentColor; opacity: 1; }
.sw-status::before { opacity: .25; }
.sw-status.is-completed { color: var(--spotify-green-press); }
.sw-status.is-pending { color: var(--tint-info-ink); }
.sw-status.is-progress { color: var(--tint-warn-ink); }
.sw-status.is-partial { color: var(--ink-500); }
.sw-status.is-canceled { color: var(--tint-danger-ink); }

/* =========================================================
   TABLES
   ========================================================= */
.sw-table-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.sw-table-wrap .sw-table-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sw-table-wrap .sw-table-scroll { overflow-x: auto; }
table.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
}
.table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-500);
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}
.table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-700);
    vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: var(--surface-2); }
.table .nowrap, td.nowrap, th.nowrap { white-space: nowrap; }
.table .width-40 { max-width: 280px; word-break: break-all; }

/* =========================================================
   SEARCH / FILTER BAR
   ========================================================= */
.sw-toolbar {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
    margin-bottom: 18px;
}
.sw-search {
    position: relative;
    flex: 1;
    min-width: 240px;
    max-width: 420px;
}
.sw-search input {
    padding-left: 44px;
    background: var(--surface);
}
.sw-search::before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-400);
    font-size: 14px;
    pointer-events: none;
}

.sw-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--surface-3);
    border-radius: var(--radius-pill);
    overflow-x: auto;
}
.sw-tabs a, .sw-tabs li a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-500);
    white-space: nowrap;
    transition: all .2s var(--ease);
}
.sw-tabs a:hover { color: var(--ink-900); }
.sw-tabs .active a,
.sw-tabs a.active,
.sw-tabs li.active a { background: var(--spotify-black); color: #fff; }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination li a {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 13px;
    transition: all .2s var(--ease);
}
.pagination li a:hover { background: var(--surface-3); }
.pagination li.active a { background: var(--spotify-black); color: #fff; }

/* =========================================================
   HERO (landing + service header)
   ========================================================= */
.sw-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 24px 120px;
    background:
        radial-gradient(1000px 400px at 85% -10%, rgba(29,185,84,.22), transparent 60%),
        radial-gradient(800px 500px at 10% 110%, rgba(29,185,84,.14), transparent 60%),
        linear-gradient(180deg, #fff 0%, #F7F7F7 100%);
}
.sw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(25,20,20,0.06) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 80%, transparent 100%);
    pointer-events: none;
}
.sw-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}
.sw-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--tint-green);
    color: var(--spotify-green-press);
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 1px rgba(29,185,84,0.2);
}
.sw-hero__eyebrow i { font-size: 11px; }
.sw-hero h1 { margin-bottom: 20px; }
.sw-hero h1 .accent { color: var(--spotify-green); white-space: nowrap; }
.sw-hero__lead { font-size: 18px; color: var(--ink-700); max-width: 56ch; margin-bottom: 32px; }
.sw-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 36px; }
.sw-hero__trust { display: flex; flex-wrap: wrap; gap: 24px; color: var(--ink-500); font-size: 13px; }
.sw-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.sw-hero__trust i { color: var(--spotify-green); }

.sw-hero__art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin-left: auto;
}
.sw-hero__disc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #2C2C2C 0 22%, #000 22% 24%, #191414 24% 100%);
    box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.05);
    animation: spin 18s linear infinite;
}
.sw-hero__disc::before, .sw-hero__disc::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}
.sw-hero__disc::before { inset: 40px; }
.sw-hero__disc::after { inset: 80px; border-color: rgba(255,255,255,0.08); }
@keyframes spin { to { transform: rotate(360deg); } }
.sw-hero__disc-label {
    position: absolute;
    inset: 38%;
    border-radius: 50%;
    background: var(--spotify-green);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .05em;
    box-shadow: 0 10px 30px rgba(29,185,84,0.45), inset 0 0 0 6px rgba(255,255,255,0.08);
}
.sw-hero__float {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floaty 6s ease-in-out infinite;
}
.sw-hero__float strong { font-family: var(--font-display); font-size: 18px; color: var(--ink-900); display: block; }
.sw-hero__float span { font-size: 12px; color: var(--ink-500); }
.sw-hero__float--top { top: 6%; left: -4%; }
.sw-hero__float--bottom { bottom: 8%; right: -6%; animation-delay: -3s; }
.sw-hero__float-icon { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--tint-green); color: var(--spotify-green-press); flex: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   STATS STRIP
   ========================================================= */
.sw-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: -40px auto 64px;
    max-width: var(--max-w);
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.sw-stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.sw-stat__value { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.sw-stat__label { font-size: 12.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-top: 4px; }

/* =========================================================
   SERVICE GRID / CATEGORIES
   ========================================================= */
.sw-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px;
}
.sw-section__head { text-align: center; margin-bottom: 48px; }
.sw-section__head h2 { margin: 0 0 12px; }
.sw-section__head p { color: var(--ink-500); font-size: 17px; max-width: 60ch; margin: 0 auto; }

.sw-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.sw-service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 10px;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.sw-service-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--spotify-green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.sw-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(29,185,84,0.3); }
.sw-service-card:hover::before { transform: scaleX(1); }
.sw-service-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--tint-green);
    color: var(--spotify-green-press);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 4px;
}
.sw-service-card h3 { margin: 0; font-size: 1.15rem; }
.sw-service-card p { margin: 0; color: var(--ink-500); font-size: 14px; }
.sw-service-card__price { margin-top: 12px; display: flex; align-items: baseline; gap: 6px; }
.sw-service-card__price strong { font-family: var(--font-display); font-size: 22px; color: var(--ink-900); }
.sw-service-card__price span { font-size: 12.5px; color: var(--ink-500); }
.sw-service-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink-900); font-weight: 700; font-size: 14px; }
.sw-service-card__link i { transition: transform .2s; }
.sw-service-card:hover .sw-service-card__link i { transform: translateX(4px); }
.sw-service-card__link:hover { color: var(--spotify-green); }

/* =========================================================
   HOW IT WORKS / STEPS
   ========================================================= */
.sw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: sw-step;
}
.sw-step {
    position: relative;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    counter-increment: sw-step;
}
.sw-step::before {
    content: counter(sw-step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--spotify-green);
    margin-bottom: 16px;
}
.sw-step h4 { margin: 0 0 8px; font-size: 18px; }
.sw-step p { margin: 0; color: var(--ink-500); font-size: 14.5px; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.sw-cta {
    max-width: calc(var(--max-w) - 48px);
    margin: 60px auto;
    padding: 60px 48px;
    background:
        radial-gradient(500px 200px at 85% 100%, rgba(29,185,84,0.45), transparent 60%),
        linear-gradient(135deg, var(--spotify-black) 0%, #000 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.sw-cta::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(29,185,84,0.3), transparent 65%);
    pointer-events: none;
}
.sw-cta h2 { color: #fff; margin: 0 0 8px; font-size: 2rem; }
.sw-cta p { color: rgba(255,255,255,0.7); margin: 0; font-size: 16px; }
.sw-cta__actions { display: flex; gap: 12px; z-index: 1; }
.sw-cta .sw-btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4); }
.sw-cta .sw-btn--ghost:hover { background: #fff; color: var(--ink-900); }

/* =========================================================
   AUTH CARDS (sign-in / sign-up)
   ========================================================= */
.sw-auth {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.sw-auth__form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--surface);
}
.sw-auth__form-inner { width: 100%; max-width: 420px; }
.sw-auth__side {
    position: relative;
    background: linear-gradient(160deg, var(--spotify-black) 0%, #000 100%);
    color: #fff;
    padding: 60px;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
}
.sw-auth__side::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,185,84,0.5), transparent 65%);
    filter: blur(40px);
}
.sw-auth__side-inner { position: relative; }
.sw-auth__side h2 { color: #fff; font-size: 2.25rem; margin-bottom: 16px; }
.sw-auth__side p { color: rgba(255,255,255,0.7); font-size: 15.5px; }
.sw-auth__quote { position: relative; padding: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); backdrop-filter: blur(10px); margin-top: 40px; }
.sw-auth__quote p { color: rgba(255,255,255,0.9); font-size: 15px; font-style: italic; margin-bottom: 12px; }
.sw-auth__quote cite { color: var(--spotify-green); font-style: normal; font-weight: 700; font-size: 13px; }

/* =========================================================
   NEW ORDER BUILDER
   ========================================================= */
.sw-order-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
.sw-summary {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
}
.sw-summary h4 { margin: 0 0 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); font-weight: 700; }
.sw-summary__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line-soft); font-size: 14px; }
.sw-summary__row:last-of-type { border-bottom: 0; }
.sw-summary__row span:first-child { color: var(--ink-500); }
.sw-summary__row strong { font-weight: 700; color: var(--ink-900); }
.sw-summary__total { margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.sw-summary__total .label { font-size: 12.5px; color: var(--ink-500); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.sw-summary__total .value { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--ink-900); }

/* =========================================================
   TICKETS / MESSAGES
   ========================================================= */
.sw-ticket-msg {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    max-width: 80%;
    background: var(--surface-3);
    border: 1px solid var(--line-soft);
}
.sw-ticket-msg.is-support {
    background: var(--tint-green);
    border-color: rgba(29,185,84,0.15);
    margin-left: auto;
}
.sw-ticket-msg__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 12.5px; color: var(--ink-500); }
.sw-ticket-msg__head strong { color: var(--ink-900); }

/* =========================================================
   API / CODE
   ========================================================= */
.sw-code {
    background: var(--spotify-black);
    color: #E0E0E0;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
    position: relative;
}
.sw-code .tok-key { color: var(--spotify-green); }
.sw-code .tok-str { color: #FFAB70; }
.sw-code .tok-num { color: #79B8FF; }

.sw-method {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
}
.sw-method__head { padding: 18px 22px; background: var(--surface-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.sw-method__verb { padding: 4px 10px; background: var(--spotify-green); color: #fff; font-size: 11.5px; font-weight: 700; border-radius: var(--radius-xs); letter-spacing: .05em; }
.sw-method__path { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 14px; color: var(--ink-900); }
.sw-method__body { padding: 22px; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.sw-faq { max-width: 820px; margin: 0 auto; }
.sw-faq details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all .2s var(--ease);
}
.sw-faq details[open] { box-shadow: var(--shadow-sm); }
.sw-faq summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink-900);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    list-style: none;
}
.sw-faq summary::-webkit-details-marker { display: none; }
.sw-faq summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--ink-500);
    transition: transform .2s;
    flex: none;
}
.sw-faq details[open] summary::after { transform: rotate(45deg); color: var(--spotify-green); }
.sw-faq .sw-faq__body { padding: 0 24px 22px; color: var(--ink-700); font-size: 14.5px; line-height: 1.7; }

/* =========================================================
   BLOG
   ========================================================= */
.sw-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.sw-blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); display: flex; flex-direction: column; }
.sw-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sw-blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.sw-blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.sw-blog-card__date { font-size: 12px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 8px; }
.sw-blog-card h4 { margin: 0 0 10px; font-size: 18px; line-height: 1.35; }
.sw-blog-card p { color: var(--ink-500); font-size: 14.5px; margin-bottom: 16px; flex: 1; }

.sw-blogpost { max-width: 740px; margin: 0 auto; }
.sw-blogpost__image { border-radius: var(--radius-lg); overflow: hidden; margin: 0 0 32px; }
.sw-blogpost__meta { color: var(--ink-500); font-size: 13px; margin-bottom: 20px; }
.sw-blogpost__body { font-size: 16.5px; line-height: 1.75; color: var(--ink-700); }
.sw-blogpost__body h2, .sw-blogpost__body h3 { margin-top: 1.5em; }

/* =========================================================
   FOOTER
   ========================================================= */
.sw-footer {
    background: var(--spotify-black);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
    margin-top: 60px;
}
.sw-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
}
.sw-footer__brand .sw-logo { color: #fff; margin-bottom: 16px; }
.sw-footer__brand .sw-logo:hover { color: #fff; }
.sw-footer__brand p { color: rgba(255,255,255,0.55); font-size: 14px; max-width: 40ch; }
.sw-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.sw-footer__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: all .2s var(--ease);
}
.sw-footer__social a:hover { background: var(--spotify-green); transform: translateY(-2px); }
.sw-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sw-footer__cols h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; font-weight: 700; font-family: var(--font-sans); }
.sw-footer__cols a { display: block; padding: 5px 0; color: rgba(255,255,255,0.55); font-size: 14px; }
.sw-footer__cols a:hover { color: #fff; }
.sw-footer__bar {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    color: rgba(255,255,255,0.5);
    font-size: 12.5px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .sw-header__nav { display: none; }
    .sw-nav-toggle { display: inline-block; }
    .sw-shell { grid-template-columns: 1fr; }
    .sw-sidebar {
        position: fixed;
        left: -100%;
        top: var(--header-h);
        width: 280px;
        height: calc(100vh - var(--header-h));
        background: var(--surface);
        border-right: 1px solid var(--line);
        padding: 20px;
        transition: left .28s var(--ease);
        z-index: 90;
        box-shadow: var(--shadow-lg);
    }
    .sw-sidebar.is-open { left: 0; }
    .sw-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .sw-hero__art { max-width: 360px; margin: 0 auto; }
    .sw-stats { grid-template-columns: repeat(2, 1fr); }
    .sw-auth { grid-template-columns: 1fr; }
    .sw-auth__side { display: none; }
    .sw-order-layout { grid-template-columns: 1fr; }
    .sw-summary { position: static; }
    .sw-steps { grid-template-columns: 1fr; }
    .sw-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
    .sw-hero { padding: 60px 20px 80px; }
    .sw-hero__float { display: none; }
    .sw-section { padding: 60px 20px; }
    .sw-balance__label { display: none; }
    .sw-chip span:not(.muted) { display: none; }
    .sw-header__inner { padding: 0 16px; gap: 10px; }
    .sw-stats { grid-template-columns: 1fr 1fr; }
    .sw-footer__cols { grid-template-columns: 1fr 1fr; }
    .sw-cta { padding: 40px 24px; }
    .sw-cta h2 { font-size: 1.5rem; }
}
@media (max-width: 440px) {
    .sw-logo__text { display: none; }
    .sw-stat__value { font-size: 22px; }
    .sw-footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   RTL
   ========================================================= */
.rtl .sw-header__actions { justify-self: start; }
.rtl .sw-sidebar a i { margin-left: 0; }
.rtl-table th, .rtl-table td { text-align: right; }
.rtl-form label { text-align: right; }
.rtl .sw-dropdown__menu { right: auto; left: 0; }
.rtl-pagination { flex-direction: row-reverse; }

/* =========================================================
   UTILITIES
   ========================================================= */
.sw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sw-flex { display: flex; gap: 12px; align-items: center; }
.sw-flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sw-mt-0 { margin-top: 0 !important; }
.sw-mb-0 { margin-bottom: 0 !important; }
.sw-text-center { text-align: center; }
.hidden-xs { }
@media (max-width: 720px) {
    .sw-grid-2, .sw-grid-3 { grid-template-columns: 1fr; }
    .hidden-xs { display: none !important; }
}

/* scrollbar */
.sw-table-scroll::-webkit-scrollbar, .dropdown-max-height::-webkit-scrollbar { width: 8px; height: 8px; }
.sw-table-scroll::-webkit-scrollbar-thumb, .dropdown-max-height::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.sw-table-scroll::-webkit-scrollbar-thumb:hover, .dropdown-max-height::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }

/* selection */
::selection { background: var(--tint-green); color: var(--spotify-green-press); }

/* focus ring (keyboard) */
:focus-visible { outline: 3px solid rgba(29,185,84,0.35); outline-offset: 2px; border-radius: 6px; }
