* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #22c55e;
    --accent-hover: #16a34a;
    --background: #ffffff;
    --surface: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
}

[data-theme="dark"] {
    --primary: #1e293b;
    --secondary: #475569;
    --accent: #22c55e;
    --accent-hover: #16a34a;
    --background: #020617;
    --surface: #0f172a;
    --border: #334155;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--primary);
    color: white;
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--accent);
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }
}

header .container {
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle, .language-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.theme-toggle:hover, .language-select:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.language-select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.language-select:active {
    background: rgba(255, 255, 255, 0.1) !important;
}

.language-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.language-select option {
    background: var(--background);
    color: var(--text);
    padding: 8px;
}

/* Ensure dropdown works in both themes */
[data-theme="dark"] .language-select option {
    background: var(--surface);
    color: var(--text);
}

[data-theme="light"] .language-select option,
.language-select option {
    background: white;
    color: #0f172a;
}

@media (max-width: 768px) {
    .header-controls {
        gap: 0.5rem;
    }
    
    .theme-toggle, .language-select {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 8px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.logo-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.875rem;
    opacity: 0.75;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
}

/* Navigation */
.tools-nav {
    background: var(--background);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .tools-nav {
        padding: 0.75rem 0;
        position: relative;
    }
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .nav-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .nav-grid::-webkit-scrollbar-track {
        background: var(--surface);
    }
    
    .nav-grid::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 2px;
    }
}

.nav-btn {
    background: var(--surface);
    border: 2px solid var(--border);
    padding: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-height: 88px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .nav-btn {
        flex-direction: row;
        padding: 0.625rem 1rem;
        min-height: auto;
        min-width: 140px;
        flex-shrink: 0;
        gap: 0.5rem;
        scroll-snap-align: start;
    }
}

.nav-icon {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    background: var(--background);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
}

.nav-label {
    font-size: 0.8125rem;
}

.nav-btn:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.nav-btn:hover .nav-icon {
    color: var(--accent);
    border-color: var(--accent);
}

.nav-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-btn.active .nav-icon {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.nav-btn.active .nav-label {
    color: white;
}

/* Main Content Layout */
main {
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.main-content {
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Tool Sections */
.tool-section {
    display: none;
}

.tool-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tool-section h2 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.tool-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Upload Areas */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--background); transition: background-color 0.3s ease;
}

.upload-area:hover {
    border-color: var(--accent);
    background: #f0fdf4;
}

.upload-area svg {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.upload-area p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn-secondary {
    background: var(--background); transition: background-color 0.3s ease;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--secondary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Compression Controls */
.compression-controls {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.compression-controls label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.compression-controls input[type="range"] {
    width: 100%;
    margin-bottom: 1rem;
}

/* Results Area */
.results-area {
    margin-top: 1.5rem;
}

.result-item {
    background: var(--background); transition: background-color 0.3s ease;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.result-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.result-item p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

/* File List */
.file-list h3 {
    margin: 1.5rem 0 1rem;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
}

/* Text Tools */
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9375rem;
    resize: vertical;
    margin-bottom: 1rem;
    background: var(--background); transition: background-color 0.3s ease;
    color: var(--text);
}

textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.text-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.text-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

/* QR Code Generator */
.qr-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qr-inputs label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.qr-inputs input,
.qr-inputs select {
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 0.9375rem;
    background: var(--background); transition: background-color 0.3s ease;
    color: var(--text);
}

.qr-inputs input:focus,
.qr-inputs select:focus {
    outline: none;
    border-color: var(--accent);
}

.qr-result {
    margin-top: 2rem;
}

.qr-display {
    text-align: center;
    padding: 2rem;
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.qr-display img {
    max-width: 100%;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Color Tools */
.color-picker-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.color-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-input-group label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

#colorPicker {
    width: 100px;
    height: 50px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
}

/* Color Tool Mode Selector */
.color-mode-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mode-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border);
    background: var(--card);
    color: var(--text);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.mode-btn:hover {
    border-color: var(--primary);
}

.mode-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Component Inputs */
.component-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.component-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.component-field label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
    min-width: 30px;
}

.component-field input[type="number"] {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--background);
    color: var(--text);
    flex: 1;
}

.component-field .unit {
    color: var(--muted);
    font-size: 0.875rem;
    min-width: 25px;
}

/* Color Result Display */
.color-result {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 8px;
    border: 2px solid var(--border);
}

.color-preview {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.color-codes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.code-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.code-item strong {
    min-width: 60px;
    color: var(--text);
    font-size: 0.875rem;
}

.code-item span {
    flex: 1;
    font-family: 'Space Grotesk', monospace;
    color: var(--muted);
    font-size: 0.875rem;
}

.copy-btn-small {
    padding: 0.375rem 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background 0.2s;
}

.copy-btn-small:hover {
    background: var(--secondary);
}

/* Old styles kept for compatibility */
.color-display {
    width: 100px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid var(--border);
}

.color-formats {
    display: grid;
    gap: 1rem;
}

.format-box {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.format-box label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.format-box input {
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: 'Space Grotesk', monospace;
    background: var(--background); transition: background-color 0.3s ease;
    color: var(--text);
}

.copy-btn {
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--secondary);
}

.palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.color-swatch {
    height: 100px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.color-swatch:hover {
    transform: scale(1.05);
}

.color-swatch span {
    background: rgba(255,255,255,0.95);
    color: #0f172a;
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Space Grotesk', monospace;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Calculator */
.calculator {
    max-width: 400px;
    margin: 0 auto;
}

.calc-display {
    width: 100%;
    padding: 1.5rem;
    font-size: 2rem;
    text-align: right;
    border: 2px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', monospace;
    background: var(--background); transition: background-color 0.3s ease;
    color: var(--text);
    font-weight: 600;
}

.calc-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.calc-btn {
    padding: 1.5rem;
    font-size: 1.25rem;
    border: 1px solid var(--border);
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}

.calc-btn:hover {
    background: var(--surface);
    transform: translateY(-1px);
}

.calc-btn.operator {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.calc-btn.operator:hover {
    background: var(--accent-hover);
}

.calc-btn.clear {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.calc-btn.clear:hover {
    background: #dc2626;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-ad {
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

/* Ads */
.ad-container {
    margin: 2rem auto;
    text-align: center;
}

.ad-placeholder {
    background: var(--background); transition: background-color 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

/* Info Box */
.info-box {
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

[data-theme="dark"] .info-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #60a5fa;
}

.info-box h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

[data-theme="dark"] .info-box h3 {
    color: #60a5fa;
}

[data-theme="dark"] .info-box p,
[data-theme="dark"] .info-box ol,
[data-theme="dark"] .info-box li {
    color: var(--text);
}

.info-box ol {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.info-box code {
    background: rgba(0,0,0,0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.875rem;
}

[data-theme="dark"] .info-box code {
    background: rgba(255,255,255,0.1);
    color: #60a5fa;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 3px solid var(--accent);
}

.footer-note {
    margin-top: 0.5rem;
    opacity: 0.75;
    font-size: 0.875rem;
}

/* Global Form Elements */
input[type="text"],
input[type="url"],
input[type="email"],
textarea,
select {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

input[type="text"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    background: var(--background);
    border-color: var(--accent);
}

textarea {
    background: var(--surface);
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    header .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8125rem;
    }
    
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .text-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-buttons {
        gap: 0.5rem;
    }
    
    .calc-btn {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .format-box {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .format-box label {
        font-size: 0.8125rem;
    }
    
    .copy-btn {
        width: 100%;
        padding: 0.75rem;
    }
    
    .color-result {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .color-preview {
        width: 100%;
        height: 120px;
    }
    
    .component-inputs {
        flex-direction: column;
    }
    
    .mode-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .text-actions {
        flex-direction: column;
    }
    
    .text-actions button {
        width: 100%;
        min-height: 48px;
    }
    
    .logo-section {
        gap: 0.5rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .btn-secondary {
        min-height: 44px;
    }
    
    input, select, textarea {
        font-size: 16px !important;
    }
}
/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.about-section h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.about-section p {
    line-height: 1.6;
    color: var(--text);
    margin: 0.5rem 0;
}

.about-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.about-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.credits-list {
    list-style: none;
    padding: 0;
}

.credits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.credits-list li:last-child {
    border-bottom: none;
}

.credits-list strong {
    color: var(--text);
    font-size: 1.1rem;
}

.credits-list small {
    color: var(--text-muted);
}