:root {
    /* Light Theme */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --accent-color: #6366f1;
    --accent-hover: #4f46e5;
    --accent-light: #eef2ff;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.2s ease;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: #334155;
    --accent-light: #312e81;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: var(--transition);
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-size: 20px;
    font-weight: 800;
    color: #5c4a3d;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.logo a:hover h1 {
    opacity: 0.8;
}

[data-theme="dark"] .logo h1 {
    color: #ffffff;
}

.search-container {
    flex: 1;
    max-width: none;
    position: relative;
    margin-left: auto;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-container input {
    width: 100%;
    padding: 10px 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    height: 38px;
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-muted);
    border: none;
    color: var(--bg-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.clear-search.visible {
    display: flex;
}

.clear-search:hover {
    background: var(--text-secondary);
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-self: flex-end;
}

.btn-icon {
    width: 38px;
    height: 38px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-light);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    position: sticky;
    top: 52px;
    z-index: 99;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
}

/* Sounds Grid */
.sounds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Sound Button */
.sound-btn {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.sound-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color), #a855f7);
    opacity: 0;
    transition: var(--transition);
}

.sound-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.sound-btn:hover::before {
    opacity: 0.1;
}

.sound-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.sound-btn.playing {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.sound-btn.playing .sound-icon {
    animation: bounce 0.6s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.sound-icon {
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.sound-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    word-break: break-word;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 72px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.no-results h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 300px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Now Playing */
.now-playing {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-secondary);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 300px;
}

.now-playing.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.now-playing-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.now-playing-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.now-playing-icon {
    font-size: 24px;
    animation: bounce 0.6s infinite;
}

.now-playing-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.now-playing-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #a855f7);
    width: 0%;
    transition: width 0.1s linear;
}

/* Footer (SEO Enhanced) */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    margin-bottom: 16px;
}

.footer-brand {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-stats {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-seo {
    margin-bottom: 16px;
    padding: 0 20px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-nav {
    display: flex;
    gap: 16px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 16px;
        gap: 12px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .search-container {
        order: 3;
        flex-basis: 100%;
        max-width: none;
    }

    .sounds-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .sound-btn {
        padding: 16px 12px;
        min-height: 100px;
    }

    .sound-icon {
        font-size: 28px;
    }

    .sound-name {
        font-size: 12px;
    }

    .main-content {
        padding: 16px;
    }

    .stats-bar {
        gap: 24px;
        padding: 10px 16px;
    }

    .stat-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sounds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .now-playing {
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
        min-width: auto;
    }

    .now-playing.visible {
        transform: translateX(0) translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: white;
}

/* Load More Spinner */
.load-more-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    width: 100%;
}

.load-more-spinner .loading-spinner {
    width: 36px;
    height: 36px;
}

/* Audio Control Bar */
.audio-control-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    padding: 12px 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.control-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.audio-control-bar .now-playing-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    max-width: 200px;
}

.audio-control-bar .now-playing-icon {
    font-size: 24px;
    animation: none;
}

.audio-control-bar.playing .now-playing-icon {
    animation: bounce 0.6s infinite;
}

.audio-control-bar .now-playing-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Progress Container */
.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.time-display {
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    min-width: 40px;
}

.progress-wrapper {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.2s ease;
}

.progress-wrapper:hover {
    height: 10px;
}

.progress-wrapper .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #a855f7);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/* Control Buttons */
.control-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.control-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-light);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Rastgele buton aktif durumu */
.control-btn.active,
#randomBtn.active {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border-color: #ef4444 !important;
    color: white !important;
    animation: pulse-random 1.5s ease-in-out infinite;
}

@keyframes pulse-random {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.control-btn-main {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #a855f7);
    border: none;
    color: white;
}

.control-btn-main:hover {
    background: linear-gradient(135deg, var(--accent-hover), #9333ea);
    color: white;
    transform: scale(1.15);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Extra Actions */
.extra-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.share-modal-header h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.close-modal:hover {
    color: var(--text-primary);
}

.share-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.share-url-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.share-url-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 14px;
}

.copy-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-color), #a855f7);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    transform: scale(1.05);
}

.copy-btn.copied {
    background: var(--success-color);
}

.share-info {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    display: none;
}

.share-info.visible {
    display: block;
}

/* Donate Button */
.donate-btn {
    background: linear-gradient(135deg, #ec4899, #f43f5e) !important;
    border: none !important;
    color: white !important;
    animation: pulse-donate 2s ease-in-out infinite;
}

.donate-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

@keyframes pulse-donate {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(236, 72, 153, 0);
    }
}

/* Favorites Button */
.favorites-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border: none !important;
    color: white !important;
    position: relative;
}

.favorites-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.favorites-btn.active {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    animation: pulse-favorites 1s ease-in-out infinite;
}

@keyframes pulse-favorites {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.favorites-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.favorites-count:empty,
.favorites-count[data-count="0"] {
    display: none;
}

/* Donate Modal */
.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.donate-modal.active {
    opacity: 1;
    visibility: visible;
}

.donate-modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.donate-modal.active .donate-modal-content {
    transform: scale(1) translateY(0);
}

.donate-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.donate-modal-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.donate-modal-header .close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.donate-modal-header .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.donate-modal-body {
    padding: 24px;
}

.donate-message {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ec4899;
}

.donate-message p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.donate-message p:last-child {
    margin-bottom: 0;
}

.donate-message p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.donate-info {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.bank-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

.account-name {
    color: var(--text-secondary);
    font-size: 14px;
}

.iban-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.iban-container label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
}

.iban-copy {
    display: flex;
    gap: 8px;
}

.iban-copy input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Monaco', 'Consolas', monospace;
    letter-spacing: 1px;
}

.donate-thanks {
    text-align: center;
    color: #ec4899;
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
}

/* Footer padding for control bar */
.footer {
    margin-bottom: 80px;
}

/* Responsive for Control Bar */
@media (max-width: 900px) {
    .control-bar-content {
        gap: 12px;
    }
    
    .audio-control-bar .now-playing-info {
        min-width: 120px;
        max-width: 150px;
    }
    
    .progress-container {
        min-width: 150px;
    }
    
    .volume-slider {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .audio-control-bar {
        padding: 10px 16px;
    }
    
    .control-bar-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .audio-control-bar .now-playing-info {
        order: 1;
        flex-basis: 100%;
        max-width: none;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .progress-container {
        order: 2;
        flex-basis: 100%;
        margin-bottom: 8px;
    }
    
    .control-buttons {
        order: 3;
    }
    
    .volume-control {
        order: 4;
    }
    
    .extra-actions {
        order: 5;
    }
    
    .footer {
        margin-bottom: 160px;
    }
}

@media (max-width: 480px) {
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .control-btn-main {
        width: 44px;
        height: 44px;
    }
    
    .volume-slider {
        width: 60px;
    }
    
    .footer {
        margin-bottom: 180px;
    }
}

/* Sound Button Like Heart */
.sound-btn {
    position: relative;
}

.sound-like-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-like-heart:hover {
    opacity: 1;
    transform: scale(1.15);
}

.sound-like-heart svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-primary);
}

[data-theme="dark"] .sound-like-heart svg {
    stroke: #ffffff;
}

.sound-like-heart.liked {
    opacity: 1;
}

.sound-like-heart.liked svg {
    fill: #ef4444;
    stroke: #ef4444;
    animation: heartPop 0.4s ease;
}

.sound-like-heart .heart-count {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-primary);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 1px;
}

[data-theme="dark"] .sound-like-heart .heart-count {
    color: #ffffff;
}

.sound-like-heart.liked .heart-count {
    color: #ffffff;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Like Button in Control Bar */
.like-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto !important;
    padding: 0 12px !important;
    border-radius: 20px !important;
}

.like-btn.liked {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.like-btn.liked .heart-empty {
    display: none;
}

.like-btn.liked .heart-filled {
    display: block !important;
    animation: heartPop 0.4s ease;
}

.like-btn:not(.liked) .heart-empty {
    display: block;
}

.like-btn:not(.liked) .heart-filled {
    display: none !important;
}

.like-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.like-btn.liked .like-count {
    color: #ef4444;
}

/* Heart burst animation */
.heart-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.heart-particle {
    position: absolute;
    font-size: 20px;
    animation: burstParticle 0.8s ease-out forwards;
}

@keyframes burstParticle {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.5);
    }
}

/* Like count badge on sound button - artık kullanılmıyor, kalbin içinde gösteriliyor */
.sound-like-count {
    display: none !important;
}

.sound-like-count.visible {
    display: block;
}
