/* YourCoding Image Compressor - Styles */

:root {
    --primary: #1e88a8;
    --primary-dark: #156e8a;
    --primary-light: #2ba3c7;
    --accent: #17a2b8;
    --bg: #ffffff;
    --bg-elevated: #ffffff;
    --bg-secondary: #f8f9fa;
    --text: #2c3e50;
    --text-muted: #6c757d;
    --border: #e9ecef;
    --shadow: rgba(0, 0, 0, 0.1);
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #0f1419;
    --bg-elevated: #1a1f26;
    --bg-secondary: #151a21;
    --text: #e8eaed;
    --text-muted: #9ca3af;
    --border: #2d3748;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header (same as other tools) */
.header {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.logo {
    height: 40px;
    width: auto;
}

[data-theme="light"] .logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: block;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.header-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lang-switch,
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch:hover,
.theme-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.lang-switch.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.theme-toggle {
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.sun-icon,
.moon-icon {
    transition: var(--transition);
}

[data-theme="light"] .moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

/* Back Button in Header */
.back-button-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-right: 1rem;
}

.back-button-header:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.back-button-header svg {
    width: 16px;
    height: 16px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(30, 136, 168, 0.05) 0%, transparent 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 1rem;
}

.badge-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
}

.badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Main Grid */
.compressor-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text);
}

/* Settings Panel */
.settings-panel {
    height: fit-content;
    position: sticky;
    top: 80px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.875rem;
}

.quality-value,
.word-value,
.count-value {
    color: var(--primary);
    font-weight: 700;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(30, 136, 168, 0.2);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(30, 136, 168, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.format-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.format-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 136, 168, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.checkbox-label:hover {
    background: var(--bg);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Resize Options */
.resize-options {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-top: 0.75rem;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preset-btn {
    padding: 0.5rem;
    border: 2px solid var(--border);
    background: var(--bg);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text);
    font-family: inherit;
}

.preset-btn:hover {
    border-color: var(--primary);
}

.preset-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.size-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.lock-icon {
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.lock-icon:hover {
    transform: scale(1.1);
}

.lock-icon.unlocked {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    width: 100%;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 136, 168, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 168, 0.4);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: var(--bg);
}

.upload-zone.drag-over {
    border-color: var(--primary);
    background: rgba(30, 136, 168, 0.1);
}

.upload-zone svg {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.upload-zone h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.upload-zone p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.upload-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.image-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    transition: var(--transition);
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.image-preview {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.image-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.image-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-value {
    font-weight: 700;
    color: var(--text);
}

.stat-value.success {
    color: var(--success);
}

.image-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem;
    font-size: 0.875rem;
    flex: 1;
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

/* Processing State */
.processing {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    gap: 0.875rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, rgba(30, 136, 168, 0.1) 0%, rgba(23, 162, 184, 0.05) 100%);
    border: 1px solid rgba(30, 136, 168, 0.2);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.privacy-notice svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
}

.privacy-notice strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
}

.privacy-notice p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* SEO Content */
.seo-content {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.seo-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.seo-block {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.seo-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.seo-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.seo-faq {
    margin: 2rem 0;
}

.seo-faq h3,
.seo-use-cases h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    user-select: none;
}

.faq-item summary:hover {
    background: var(--bg);
    color: var(--primary);
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.seo-use-cases {
    margin: 2rem 0 0;
}

.seo-use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-use-cases li {
    background: var(--bg-secondary);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    color: var(--text-muted);
    line-height: 1.7;
}

.seo-use-cases li strong {
    color: var(--text);
    font-weight: 600;
}

/* Other Tools Section */
.other-tools-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.other-tools-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--bg-elevated);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.qr-icon {
    background: linear-gradient(135deg, rgba(30, 136, 168, 0.1), rgba(23, 162, 184, 0.1));
    color: var(--primary);
}

.password-icon {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(23, 162, 184, 0.1));
    color: var(--success);
}

.tool-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.tool-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
}

.tool-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
}

.tool-card:hover .tool-cta svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Floating Donation */
.floating-donation {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(30, 136, 168, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.floating-donation:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 30px rgba(30, 136, 168, 0.5);
}

.floating-donation svg {
    width: 24px;
    height: 24px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease;
    text-align: center;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.modal-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    color: var(--text);
}

.modal-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.modal-actions .btn {
    flex: 1;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .compressor-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem 1rem;
    }
    
    .header-content {
        flex-direction: column;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-donation span {
        display: none;
    }
}

.image-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    color: var(--warning);
}
/* Logo: witte overlay in dark mode (logo-breed is donker) */
[data-theme="dark"] .logo { filter: brightness(0) invert(1); }
