@font-face {
    font-family: 'berkeley';
    src: url('../font/berkeley.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg-dark: #0a0a0b;
    --bg-panel: #131316;
    --bg-surface: #1a1a1f;
    --bg-hover: #2a2a32;
    --border: #2d2d35;
    --border-light: #3d3d48;
    --text-primary: #e8e8ec;
    --text-secondary: #8888a0;
    --text-muted: #555566;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --kick: #ef4444;
    --snare: #f97316;
    --hihat: #eab308;
    --bass: #22c55e;
    --lead: #06b6d4;
    --pad: #a855f7;
    --note-active: #6366f1;
    --note-hover: rgba(99, 102, 241, 0.3);
    --step-active: #6366f1;
    --step-inactive: #2a2a32;
    --pattern-clip: #4f46e5;
}

[data-theme="light"] {
    --bg-dark: #f5f5f7;
    --bg-panel: #ffffff;
    --bg-surface: #f0f0f4;
    --bg-hover: #dcdce4;
    --border: #d4d4dc;
    --border-light: #c4c4d0;
    --text-primary: #1a1a1f;
    --text-secondary: #5a5a70;
    --text-muted: #8888a0;
    --step-inactive: #d4d4dc;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'berkeley', monospace;
    font-size: 11px;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.4;
}

body > main {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 240px 1fr 200px;
    grid-template-areas:
        "header header header"
        "left center right"
        "left playlist playlist";
    height: 100vh;
    gap: 1px;
    background: var(--border);
}

body > main > header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
}

body > main > header > section:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 76px;
    padding-bottom: 8px;
}

body > main > header > section:first-child > strong {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 0.75;
}

body > main > header > section:first-child > span {
    font-size: 11px;
    font-weight: 700;
    font-stretch: ultra-condensed;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1;
}

body > main > header > nav {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

body > main > header > nav > section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body > main > header > nav > section > button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

body > main > header > nav > section > button:hover {
    background: var(--bg-hover);
}

body > main > header > nav > section > button[data-active="true"] {
    background: var(--accent);
    color: white;
}

body > main > header > nav > section > button svg {
    width: 14px;
    height: 14px;
}

body > main > header > nav > fieldset {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

body > main > header > nav > fieldset > label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 10px;
    cursor: pointer;
    background: var(--bg-surface);
    color: var(--text-secondary);
    transition: background 0.15s, color 0.15s;
    border: none;
}

body > main > header > nav > fieldset > label:first-of-type {
    border-right: none;
    border-bottom: 1px solid var(--border);
}

body > main > header > nav > fieldset > label:has(input:checked) {
    background: var(--accent);
    color: white;
}

body > main > header > nav > fieldset > label > input {
    display: none;
}

body > main > header > nav > label[data-bpm-control] {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

body > main > header > nav > label[data-bpm-control] > span {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

body > main > header > nav > label[data-bpm-control] > input {
    width: 70px;
    height: 36px;
    padding: 0 8px;
    border: none;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

body > main > header > aside {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body > main > header > aside > nav {
    display: flex;
    gap: 4px;
}

body > main > header > aside > nav > button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

body > main > header > aside > nav > button:hover {
    background: var(--bg-hover);
}

body > main > header > aside > nav > button svg {
    width: 14px;
    height: 14px;
}

body > main > header > aside > button[data-action="export"] {
    width: 76px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: var(--accent);
    color: white;
    font-family: inherit;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

body > main > header > aside > button[data-action="export"]:hover {
    background: var(--accent-hover);
}

body > main > aside:first-of-type {
    grid-area: left;
    display: flex;
    flex-direction: column;
    background: var(--bg-panel);
    overflow: hidden;
}

body > main > aside:first-of-type > section:first-child {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

body > main > aside:first-of-type > section:first-child > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

body > main > aside:first-of-type > section:first-child > header > h2 {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: lowercase;
}

body > main > aside:first-of-type > section:first-child > header > nav {
    display: flex;
    gap: 4px;
}

body > main > aside:first-of-type > section:first-child > header > nav > button {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 3px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

body > main > aside:first-of-type > section:first-child > header > nav > button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

body > main > aside:first-of-type > section:first-child > header > nav > button svg {
    width: 10px;
    height: 10px;
}

body > main > aside:first-of-type > section:first-child > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 120px;
    overflow-y: auto;
}

body > main > aside:first-of-type > section:first-child > ul > li {
    padding: 8px 10px;
    border-radius: 4px;
    background: var(--bg-surface);
    cursor: pointer;
    font-size: 11px;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body > main > aside:first-of-type > section:first-child > ul > li:hover {
    background: var(--bg-hover);
}

body > main > aside:first-of-type > section:first-child > ul > li[data-selected="true"] {
    background: var(--accent);
    color: white;
}

body > main > aside:first-of-type > section:first-child > ul > li > span {
    flex: 1;
    cursor: pointer;
}

body > main > aside:first-of-type > section:first-child > ul > li > button {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 3px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s;
}

body > main > aside:first-of-type > section:first-child > ul > li:hover > button {
    opacity: 1;
}

body > main > aside:first-of-type > section:first-child > ul > li > button:hover {
    background: rgba(255, 255, 255, 0.1);
}

body > main > aside:first-of-type > section:first-child > ul > li > button svg {
    width: 10px;
    height: 10px;
}

body > main > aside:first-of-type > section:last-child {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

body > main > aside:first-of-type > section:last-child > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

body > main > aside:first-of-type > section:last-child > header > h2 {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

body > main > aside:first-of-type > section:last-child > header > nav {
    display: flex;
    gap: 4px;
}

body > main > aside:first-of-type > section:last-child > header > nav > button {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 3px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

body > main > aside:first-of-type > section:last-child > header > nav > button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

body > main > aside:first-of-type > section:last-child > header > nav > button svg {
    width: 10px;
    height: 10px;
}

body > main > aside:first-of-type > section:last-child > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

body > main > aside:first-of-type > section:last-child > ul > li {
    background: var(--bg-surface);
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body > main > aside:first-of-type > section:last-child > ul > li[data-selected="true"] {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

body > main > aside:first-of-type > section:last-child > ul > li > header {
    display: flex;
    align-items: center;
    gap: 8px;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button svg {
    width: 10px;
    height: 10px;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button[data-muted="true"] {
    opacity: 0.3;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > span {
    flex: 1;
    font-size: 11px;
    cursor: pointer;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button[data-edit] {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 3px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s;
}

body > main > aside:first-of-type > section:last-child > ul > li:hover > header > button[data-edit] {
    opacity: 1;
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button[data-edit]:hover {
    background: rgba(255, 255, 255, 0.1);
}

body > main > aside:first-of-type > section:last-child > ul > li > header > button[data-edit] svg {
    width: 10px;
    height: 10px;
}

body > main > aside:first-of-type > section:last-child > ul > li > ol {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 2px;
}

body > main > aside:first-of-type > section:last-child > ul > li > ol > li {
    aspect-ratio: 1;
    background: var(--step-inactive);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.1s, transform 0.1s;
}

body > main > aside:first-of-type > section:last-child > ul > li > ol > li:hover {
    background: var(--bg-hover);
    transform: scale(1.1);
}

body > main > aside:first-of-type > section:last-child > ul > li > ol > li[data-active="true"] {
    background: var(--step-active);
}

body > main > aside:first-of-type > section:last-child > ul > li > ol > li[data-beat="true"] {
    border-left: 1px solid var(--border-light);
}

body > main > aside:first-of-type > section:last-child > ul > li > ol > li:nth-child(4n+1) {
    border-left: none;
}

body > main > article {
    grid-area: center;
    background: var(--bg-panel);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body > main > article > header {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body > main > article > header > h2 {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

body > main > article > header > span {
    font-size: 10px;
    color: var(--accent);
}

body > main > article > section {
    flex: 1;
    display: flex;
    overflow: hidden;
}

body > main > article > section > aside {
    width: 40px;
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
}

body > main > article > section > aside > span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-size: 8px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    min-height: 0;
}

body > main > article > section > aside > span[data-black="true"] {
    background: var(--bg-dark);
    color: var(--text-secondary);
}

body > main > article > section > figure {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(24, 1fr);
    overflow: hidden;
    position: relative;
}

body > main > article > section > figure > span {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    min-height: 0;
    min-width: 0;
}

body > main > article > section > figure > span:nth-child(16n+4),
body > main > article > section > figure > span:nth-child(16n+8),
body > main > article > section > figure > span:nth-child(16n+12),
body > main > article > section > figure > span:nth-child(16n) {
    border-right: 1px solid var(--border-light);
}

body > main > article > section > figure > span:hover {
    background: var(--note-hover);
}

body > main > article > section > figure > span[data-black="true"] {
    background: rgba(0, 0, 0, 0.2);
}

body > main > article > section > figure > span[data-black="true"]:hover {
    background: var(--note-hover);
}

body > main > article > section > figure > article {
    position: absolute;
    background: var(--note-active);
    border-radius: 2px;
    cursor: grab;
    min-width: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    user-select: none;
    z-index: 5;
}

body > main > article > section > figure > article:hover {
    background: var(--accent-hover);
}

body > main > article > section > figure > article::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    cursor: ew-resize;
    background: transparent;
}

body > main > article > section > figure > article:hover::after {
    background: rgba(255, 255, 255, 0.2);
}

body > main > article > section > figure > mark {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    pointer-events: none;
    z-index: 10;
    display: none;
}

body > main > article > section > figure[data-playing="true"] > mark {
    display: block;
}

body > main > aside:last-of-type {
    grid-area: right;
    background: var(--bg-panel);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body > main > aside:last-of-type > header {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

body > main > aside:last-of-type > header > h2 {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

body > main > aside:last-of-type > section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    overflow-y: auto;
}

body > main > aside:last-of-type > section > article {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-surface);
    border-radius: 4px;
}

body > main > aside:last-of-type > section > article > span {
    flex: 0 0 44px;
    font-size: 9px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body > main > aside:last-of-type > section > article > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body > main > aside:last-of-type > section > article > div > label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 8px;
    color: var(--text-muted);
}

body > main > aside:last-of-type > section > article > div > label > span {
    flex: 0 0 20px;
}

body > main > aside:last-of-type > section > article > div > label > input[type="range"] {
    flex: 1;
    min-width: 0;
    height: 16px;
    accent-color: var(--accent);
}

body > main > footer {
    grid-area: playlist;
    background: var(--bg-panel);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 140px;
}

body > main > footer > header {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body > main > footer > header > h2 {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

body > main > footer > header > select {
    font-family: inherit;
    font-size: 9px;
    color: var(--text-primary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2px 6px;
    cursor: pointer;
}

body > main > footer > section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 8px;
}

body > main > footer > section > header {
    display: flex;
    height: 20px;
}

body > main > footer > section > header > span {
    flex: 1;
    font-size: 9px;
    color: var(--text-muted);
    padding: 2px 4px;
    border-right: 1px solid var(--border);
}

body > main > footer > section > figure {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

body > main > footer > section > figure > div {
    flex: 1;
    display: flex;
    min-height: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

body > main > footer > section > figure > div > span {
    flex: 1;
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
}

body > main > footer > section > figure > div > span:hover {
    background: var(--bg-hover);
}

body > main > footer > section > figure > div > span:nth-child(4n+1) {
    border-right-color: var(--border-light);
}

body > main > footer > section > figure > div > article {
    position: absolute;
    top: 2px;
    bottom: 2px;
    background: var(--pattern-clip);
    border-radius: 3px;
    padding: 0 6px;
    font-size: 9px;
    display: flex;
    align-items: center;
    cursor: grab;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
    z-index: 5;
    min-width: 20px;
    color: white;
}

body > main > footer > section > figure > div > article:hover {
    background: var(--accent-hover);
}

body > main > footer > section > figure > div > article::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    cursor: ew-resize;
    background: transparent;
}

body > main > footer > section > figure > div > article:hover::after {
    background: rgba(255, 255, 255, 0.2);
}

body > main > footer > section > figure > mark {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    pointer-events: none;
    z-index: 10;
    display: none;
}

body > main > footer > section > figure[data-playing="true"] > mark {
    display: block;
}

dialog[data-instrument-dialog] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

dialog[data-instrument-dialog]::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

dialog[data-instrument-dialog] > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

dialog[data-instrument-dialog] > header > h3 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

dialog[data-instrument-dialog] > header > button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

dialog[data-instrument-dialog] > header > button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

dialog[data-instrument-dialog] > ul {
    list-style: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

dialog[data-instrument-dialog] > ul > li {
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
    color: var(--text-primary);
}

dialog[data-instrument-dialog] > ul > li:hover {
    background: var(--bg-hover);
}

dialog[data-instrument-dialog] > ul > li > span {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

dialog[data-info-dialog] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0;
    width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

dialog[data-info-dialog]::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

dialog[data-info-dialog] > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

dialog[data-info-dialog] > header > h3 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

dialog[data-info-dialog] > header > button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

dialog[data-info-dialog] > header > button:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

dialog[data-info-dialog] > article {
    padding: 16px;
}

dialog[data-info-dialog] > article > p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 700px) {
    body > main {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto auto;
        grid-template-areas:
            "header"
            "left"
            "center"
            "playlist"
            "right";
    }

    body > main > aside:first-of-type {
        flex-direction: row;
        max-height: 200px;
    }

    body > main > aside:first-of-type > section:first-child {
        flex: 0 0 160px;
        border-bottom: none;
        border-right: 1px solid var(--border);
    }

    body > main > aside:first-of-type > section:last-child {
        flex: 1;
    }

    body > main > article {
        min-height: 300px;
    }

    body > main > aside:last-of-type {
        max-height: 120px;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
