/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Canva Blue Color Palette */
    --primary-brand: #0088cc;
    --primary-hover: #1b5d98;
    --primary-active: #163f65;
    --secondary-panel: #84a4b4;
    --text-primary: #163f65;
    --text-secondary: #6b88a3;
    --text-muted: #84a4b4;
    --bg-white: #ffffff;
    --bg-panel: rgba(132, 164, 180, 0.15);
    --dark-section: #163f65;

    /* Semantic Colors */
    --primary-color: #0088cc;
    --primary-dark: #1b5d98;
    --primary-light: #0088cc;
    --accent-color: #0088cc;
    --success-color: #10b981;
    --error-color: #ef4444;

    /* Text Colors */
    --text-on-dark: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: rgba(132, 164, 180, 0.15);
    --bg-tertiary: #163f65;
    --bg-light: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 35px -8px rgba(0, 0, 0, 0.18);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--dark-section);
    color: var(--text-on-dark);
    padding: 1.75rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--primary-brand);
}

.logo h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
}

.tagline {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Tool Container */
.tool-container {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Upload Section */
.upload-section {
    margin-bottom: 2.5rem;
}

.upload-area {
    border: 3px dashed var(--secondary-panel);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-panel);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-area:hover::before {
    opacity: 0.05;
}

.upload-area:hover {
    border-color: var(--primary-brand);
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.upload-area.dragover {
    border-color: var(--primary-brand);
    background: white;
    box-shadow: var(--shadow-lg);
}

.upload-area.dragover::before {
    opacity: 0.08;
}

.upload-icon {
    width: 72px;
    height: 72px;
    color: var(--primary-brand);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.upload-area h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.upload-area p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.supported-formats {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.file-info > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    color: var(--primary-color);
}

.file-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.file-size {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-remove {
    background: var(--error-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.btn-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Form Controls */
.controls-section {
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.prompt-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--secondary-panel);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: white;
    color: var(--text-primary);
}

.prompt-input:focus {
    outline: none;
    border-color: var(--primary-brand);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.3);
    background: white;
}

.input-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.input-hint strong {
    color: var(--primary-brand);
    font-weight: 600;
}

/* Format Options */
.format-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.format-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid var(--secondary-panel);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    flex: 1;
    min-width: 150px;
}

.format-option:hover {
    border-color: var(--primary-brand);
    background: var(--bg-panel);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.format-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-brand);
}

.format-option span {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.format-option input[type="checkbox"]:checked + span {
    color: var(--primary-brand);
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: var(--primary-brand);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 14px 0 rgba(0, 136, 204, 0.3);
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 136, 204, 0.4);
}

.btn-primary:active:not(:disabled) {
    background: var(--primary-active);
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* Process Button */
.process-btn {
    width: 100%;
    padding: 1.25rem 2.5rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 6px 24px 0 rgba(0, 136, 204, 0.4);
    text-transform: none;
    letter-spacing: 0.01em;
}

.process-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-active) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(0, 136, 204, 0.5);
}

.process-btn:active:not(:disabled) {
    background: var(--primary-active);
    transform: translateY(-1px);
}

.process-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: #84a4b4;
}

.process-btn .btn-icon {
    font-size: 1.5rem;
}

/* Progress Section */
.progress-section {
    margin: 2.5rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-brand) 0%, var(--primary-hover) 100%);
    width: 0%;
    transition: width 0.3s ease;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.progress-text {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Results Section */
.results-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary-panel);
}

.results-title {
    font-size: 1.75rem;
    color: var(--success-color);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.result-card {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.result-card:last-child {
    margin-bottom: 0;
}

.result-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.result-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.audio-player {
    margin-bottom: 1.25rem;
}

.audio-player audio {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}

.download-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-on-dark);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 18px;
    height: 18px;
}

.file-note {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* All Stems Section */
.all-stems-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-panel);
}

.section-title {
    font-size: 1.875rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    text-align: center;
}

.all-stems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stem-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--bg-secondary);
    transition: all 0.3s ease;
}

.stem-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.stem-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stem-audio {
    width: 100%;
    margin-bottom: 1rem;
    height: 40px;
}

.stem-downloads {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.download-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-on-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.download-btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-btn-small .download-icon {
    width: 14px;
    height: 14px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: white;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.use-case {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.use-case:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 8px;
}

.use-case h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.use-case p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-hover) 100%);
    color: var(--text-on-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(0, 136, 204, 0.35);
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* SEO Content Section */
.seo-content {
    padding: 5rem 0;
    background: white;
}

.seo-content .container {
    max-width: 900px;
}

.seo-content article {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.seo-content h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-content ul {
    margin: 1.25rem 0 2rem 2.5rem;
}

.seo-content li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.seo-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* FAQ Link Section */
.faq-link-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.faq-link-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.faq-link-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.faq-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--dark-section);
    color: var(--text-on-dark);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 3px solid var(--primary-brand);
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 1rem;
}

/* FAQ Page Styles */
.faq-header {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.2s;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer ul {
    list-style-position: inside;
    padding-left: 2.5rem;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .tool-container {
        padding: 2rem 1.5rem;
    }

    .features h2,
    .use-cases h2,
    .how-it-works h2,
    .seo-content h2 {
        font-size: 2rem;
    }

    .features-grid,
    .use-cases-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .format-options {
        flex-direction: column;
    }

    .format-option {
        flex: auto;
    }

    .upload-area {
        padding: 2.5rem 1.5rem;
    }

    .all-stems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .btn-primary {
        font-size: 1.125rem;
        padding: 1.125rem 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p,
    .faq-answer ul {
        padding: 0 1.5rem 1.25rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}
