/* Genel Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    /* Light mode variables */
    --primary: #f6546a;
    --primary-light: #e91e63;
    --primary-dark: #7a0642;
    --secondary: #6a0572;
    --accent: #ff4081;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --mobile-font: 0.85rem;
    --mobile-padding: 0.8rem;
    --bg-color: #ffffff;
    --text-color: #212529;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.05);
    --hover-bg: rgba(158, 7, 84, 0.1);
}

/* Dark mode variables */
body.dark-mode {
    --primary: #e91e63;
    --primary-light: #f48fb1;
    --primary-dark: #c2185b;
    --secondary: #ab47bc;
    --accent: #ff4081;
    --light: #37474f;
    --dark: #eceff1;
    --gray: #b0bec5;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --bg-color: #121212;
    --text-color: #eceff1;
    --card-bg: rgba(30, 30, 30, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(233, 30, 99, 0.2);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: var(--mobile-font);
    position: relative;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="25" cy="25" r="1" fill="%23ffffff20"/><circle cx="75" cy="75" r="1" fill="%23ffffff20"/><circle cx="25" cy="75" r="1" fill="%23ffffff20"/><circle cx="75" cy="25" r="1" fill="%23ffffff20"/></svg>');
    z-index: -1;
    opacity: 0.4;
}

body.dark-mode::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="25" cy="25" r="1" fill="%23ffffff10"/><circle cx="75" cy="75" r="1" fill="%23ffffff10"/><circle cx="25" cy="75" r="1" fill="%23ffffff10"/><circle cx="75" cy="25" r="1" fill="%23ffffff10"/></svg>');
    opacity: 0.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
	margin-right:100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(158, 7, 84, 0.3);
    z-index: 1001;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(158, 7, 84, 0.4);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Navigasyon - Mobil Uyumlu */
.nav {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-logo {
    height: 32px;
    margin-right: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: none;
}

/* Modal Pencereler - Mobil Uyumlu */
.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: modalAppear 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

@keyframes modalAppear {
    from {
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

#hakkimizda, #iletisim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(158, 7, 84, 0.3);
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--primary-dark);
}

#hakkimizda h1, #iletisim h1 {
    color: var(--primary);
    margin-bottom: 1rem; 
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    display: block;
}

#hakkimizda p, #iletisim p {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--gray);
    line-height: 1.6;
    font-size: var(--mobile-font);
}

.email-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(158, 7, 84, 0.2);
    border-radius: 12px;
    font-size: var(--mobile-font);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
}

body.dark-mode .email-form input {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(233, 30, 99, 0.3);
}

.email-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158, 7, 84, 0.15);
    background: white;
    color: var(--dark);
}

body.dark-mode .email-form input:focus {
    background: rgba(50, 50, 50, 0.9);
    color: var(--light);
}

.email-form button {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--mobile-font);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(158, 7, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.email-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.email-form button:hover::before {
    left: 100%;
}

.email-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 7, 84, 0.4);
}

/* Ana İçerik Alanı */
.cer {
    max-width: 50%;
    margin: 1rem auto;
    padding: 0 var(--mobile-padding);
}

/* Arama Kutusu - Mobil Uyumlu */
.search-box {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    text-align: center;
    display: block;
}

.boxx {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    text-align: center;
    display: block;
}

.boxx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
}

#arama {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(158, 7, 84, 0.2);
    border-radius: 50px;
    font-size: var(--mobile-font);
    margin-bottom: 1rem;
    outline: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    align-items: center;
    justify-content: center;
}

body.dark-mode #arama {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(233, 30, 99, 0.3);
}

#arama:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158, 7, 84, 0.15);
    background: white;
    color: var(--dark);
}

body.dark-mode #arama:focus {
    background: rgba(50, 50, 50, 0.9);
    color: var(--light);
}

/* Müzik Listesi - Mobil Uyumlu */
#sonuclarr, #son_arananlarr, #playlist {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

#sonuclarr li, #son_arananlarr li, #playlist li {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    animation: slideInLeft 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#sonuclarr li:nth-child(1) { animation-delay: 0.1s; }
#sonuclarr li:nth-child(2) { animation-delay: 0.2s; }
#sonuclarr li:nth-child(3) { animation-delay: 0.3s; }
#sonuclarr li:nth-child(4) { animation-delay: 0.4s; }
#sonuclarr li:nth-child(5) { animation-delay: 0.5s; }

#playlist li:nth-child(1) { animation-delay: 0.1s; }
#playlist li:nth-child(2) { animation-delay: 0.2s; }
#playlist li:nth-child(3) { animation-delay: 0.3s; }
#playlist li:nth-child(4) { animation-delay: 0.4s; }
#playlist li:nth-child(5) { animation-delay: 0.5s; }

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(158, 7, 84, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-btn:hover::before {
    width: 100%;
    height: 100%;
}

.play-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(158, 7, 84, 0.5);
}

.song-info {
    flex: 1;
}

.sarki-adir {
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: var(--mobile-font);
    transition: var(--transition);
    text-align: left;
}

.sarki-adir:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.sarki-suresir {
    color: var(--gray);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.progressr-bar-container {
    height: 5px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-top: 0.6rem;
    overflow: hidden;
    position: relative;
    color: var(--primary);
}

body.dark-mode .progressr-bar-container {
    background: rgba(255, 255, 255, 0.1);
}

.progressr-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.progressr-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressShine 1.5s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Butonlar - Mobil Uyumlu */
#daha_fazla_btn, #load-more-btn, .dahaFazlaBtn {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--mobile-font);
    margin: 1.5rem auto;
    display: block;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(158, 7, 84, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

#daha_fazla_btn::before, #load-more-btn::before, .dahaFazlaBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

#daha_fazla_btn:hover::before, #load-more-btn:hover::before, .dahaFazlaBtn:hover::before {
    left: 100%;
}

#daha_fazla_btn:hover, #load-more-btn:hover, .dahaFazlaBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(158, 7, 84, 0.5);
}

#go-to-top-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

#go-to-top-button.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#go-to-top-button:hover {
    transform: translateY(-8px) rotate(15deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Müzik Detay Sayfası - Mobil Uyumlu */
.loading-message {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 1.8rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    border: 1px solid var(--border-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(158, 7, 84, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(158, 7, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(158, 7, 84, 0);
    }
}

.progress {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 1.2rem;
    overflow: hidden;
}

body.dark-mode .progress {
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 4px;
    animation: progress 2s infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.ad-container {
    display: flex;
    justify-content: space-around;
    margin-top: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ad-slot {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    min-width: 120px;
    text-align: center;
    color: var(--gray);
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.ad-slot:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Yorum Bölümü - Mobil Uyumlu */
.comment-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.8rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.comment-section h2 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#yorumEkleForm input, #yorumEkleForm textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(158, 7, 84, 0.2);
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: var(--mobile-font);
    color: var(--text-color);
}

body.dark-mode #yorumEkleForm input,
body.dark-mode #yorumEkleForm textarea {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(233, 30, 99, 0.3);
}

#yorumEkleForm input:focus, #yorumEkleForm textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158, 7, 84, 0.15);
    background: white;
    color: var(--dark);
}

body.dark-mode #yorumEkleForm input:focus,
body.dark-mode #yorumEkleForm textarea:focus {
    background: rgba(50, 50, 50, 0.9);
    color: var(--light);
}

#yorumEkleForm textarea {
    min-height: 100px;
    resize: vertical;
}

#gonderBtn {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--mobile-font);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(158, 7, 84, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

#gonderBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

#gonderBtn:hover::before {
    left: 100%;
}

#gonderBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 7, 84, 0.5);
}

/* Müzik Player - Mobil Uyumlu */
#musicPlayer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

/* SEO Bölümü - Mobil Uyumlu */
#mp3-seo {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

#mp3-seo h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#mp3-seo p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.6;
    font-size: var(--mobile-font);
}

/* Link Bölümü - Mobil Uyumlu */
#mp3-link {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.sitemap {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--mobile-font);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(158, 7, 84, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.sitemap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.sitemap:hover::before {
    left: 100%;
}

.sitemap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(158, 7, 84, 0.5);
}

/* Müzik Platformu Detayları - Mobil Uyumlu */
.music-platform {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

img {
    max-width: 100%;
    height: 100%;
}

.user-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
    position: relative;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.dark-mode .user-avatar {
    border-color: var(--light);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.song-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.username {
    color: var(--gray);
    font-size: var(--mobile-font);
    font-weight: 500;
}

.song-meta {
    text-align: center;
    color: var(--gray);
    font-size: 0.75rem;
    margin-top: 1rem;
}

.player-section {
    padding: 1.5rem;
}

.audio-player {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 90px;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.like-btn {
    background: linear-gradient(135deg, var(--accent), #ff1744);
    color: white;
}

.btn-playlist {
    background: linear-gradient(135deg, #4dabf7, #339af0);
    color: white;
}

.btn-share {
    background: linear-gradient(135deg, #fcc419, #fab005);
    color: white;
}

.btn-download {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.action-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray);
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sekil-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 1.2rem;
}

.sekilcss {
    flex: 1;
    min-width: 80px;
    text-align: center;
    transition: var(--transition);
}

.sekilcss img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.sekilcss:hover img {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Sözler Bölümü - Mobil Uyumlu */
.lyrics-box {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.lyrics-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lyrics-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.lyrics-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid rgba(158, 7, 84, 0.2);
    border-radius: 12px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
    font-size: var(--mobile-font);
    transition: var(--transition);
    color: var(--text-color);
}

body.dark-mode .lyrics-textarea {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(233, 30, 99, 0.3);
}

.lyrics-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158, 7, 84, 0.15);
    background: white;
    color: var(--dark);
}

body.dark-mode .lyrics-textarea:focus {
    background: rgba(50, 50, 50, 0.9);
    color: var(--light);
}

/* Mobil Özel Efektler */
@media (max-width: 768px) {
    /* Butonlara dokunma efekti */
    .cer {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0 var(--mobile-padding);
    }

    .action-btn:active, 
    #gonderBtn:active, 
    .sitemap:active, 
    #daha_fazla_btn:active {
        transform: scale(0.95);
    }
    
    /* Liste elemanlarına kaydırma efekti */
    #sonuclarr li, #son_arananlarr li, #playlist li {
        transform-origin: left center;
        transition: transform 0.3s ease;
    }
    
    #sonuclarr li:active, #son_arananlarr li:active, #playlist li:active {
        transform: scale(0.98);
    }
    
    /* Yüklenme animasyonu */
    .loading-message {
        animation: pulse 2s infinite;
    }
    
    /* Parallax arka plan efekti */
    body {
        background-attachment: fixed;
    }
    
    /* Geçiş animasyonları */
    .cer > * {
        animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation-fill-mode: both;
    }
    
    .cer > *:nth-child(1) { animation-delay: 0.1s; }
    .cer > *:nth-child(2) { animation-delay: 0.2s; }
    .cer > *:nth-child(3) { animation-delay: 0.3s; }
    .cer > *:nth-child(4) { animation-delay: 0.4s; }
    .cer > *:nth-child(5) { animation-delay: 0.5s; }
}

/* Çok Küçük Ekranlar için */
@media (max-width: 480px) {
    .cer {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0 var(--mobile-padding);
    }
    
    :root {
        --mobile-font: 0.8rem;
        --mobile-padding: 0.6rem;
    }
    
    .nav {
        padding: 0.6rem;
    }
    
    .navbar-logo {
        height: 28px;
    }
    
    .search-box, .comment-section, .music-platform, #mp3-seo {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .play-btn {
        width: 42px;
        height: 42px;
    }
    
    .user-avatar {
        width: 80px;
        height: 80px;
    }
    
    .song-title {
        font-size: 1.2rem;
    }
    
    .lyrics-textarea {
        min-height: 120px;
    }
    
    #go-to-top-button {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Navbar Stilləri */
.navbar {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.navbar-brand {
    flex: 0 0 auto;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-user {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.user-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.user-link i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--primary);
}

.user-name {
    display: none;
}

.login-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--primary-dark);
}

.login-btn i {
    margin-right: 8px;
}

.navbar-toggler {
    position: relative;
    left: -90%;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggler-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

.navbar-nav .nav-item {
    border-bottom: none;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-nav .fa {
    font-size: 16px;
}

.user-menu {
    left: -65%;
    padding: 1.8rem;
    text-align: center;
    position: relative;
}

.logo {
    width: 100px;
    height: 100px;
    right: -100%;
    padding: 1.8rem;
    text-align: center;
    position: relative;
}

/* Mobil Görünüş */
@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
    }
    
    .logo {
        visibility: hidden;
    }
    
    .navbar-menu {
        background: var(--card-bg);
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 25px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        list-style: none;
        margin: 0;
        padding: 0;
        background: var(--card-bg);
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        display: block;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 10px 15px;
        color: var(--primary);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: background .3s, color .3s;
    }

    .navbar-nav .nav-link:hover {
        background: var(--primary);
        color: #fff;
    }

    .navbar-nav .fa {
        margin-right: 8px;
    }

    .logout {
        right: 20px;
        padding: 1.8rem;
        text-align: center;
        margin-top: -30px;
        position: relative;
    }

    .user-menu {
        left: 60px;
        padding: 1.8rem;
        text-align: center;
        margin-top: -30px;
        position: relative;
    }
    
    .navbar-user {
        position: absolute;
        top: 15px;
        right: 60px;
    }
    
    .user-name {
        display: inline-block;
    }
    
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-toggler.active .toggler-icon:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .navbar-toggler.active .toggler-icon:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggler.active .toggler-icon:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    img {
        max-width: 100%;
        height: 100%;
    }

    .user-avatar {
        margin-top: -35px;
        left: 5px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        border: 6px solid white;
        position: absolute;
        animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    body.dark-mode .user-avatar {
        border-color: var(--light);
    }
    
    .song-title {
        position: absolute;
        top: 25px;
        right: 230px;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.3;
        margin-bottom: 0.5rem;
        background: var(--primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .username {
        position: absolute;
        top: 52px;
        right: 205px;
        color: var(--gray);
        font-size: var(--mobile-font);
        font-weight: 500;
    }
    
    .song-time {
        position: absolute;
        top: 75px;
        right: 245px;
    }
    
    .song-title {
        font-size: 1.2rem;
        top: 25px;
        right: 165px;
    }

    .mesafe {
        margin-top: 15px;
    }
}

/* Modern Comment System Styles */
.yorumlarListesi {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    max-width: 800px;
}

.yorumlarListesi:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.profil {
    flex-shrink: 0;
}

.profil img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.profil img:hover {
    border-color: var(--primary);
}

.yorum-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.yorum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.yorum-adi {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.2;
    margin-top: 5px;
}

.tarix {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
    flex-shrink: 0;
}

.bubble {
    position: relative;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    margin-top: 4px;
}

.bubble:after {
    content: '';
    position: absolute;
    top: 0;
    left: 3%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: var(--card-bg);
    border-top: 0;
    margin-left: -10px;
    margin-top: -10px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .yorumlarListesi {
        padding: 15px;
        gap: 10px;
    }
    
    .profil img {
        width: 40px;
        height: 40px;
    }
    
    .yorum-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .tarix {
        align-self: flex-end;
        font-size: 12px;
        margin-top: -20px;
    }
    
    .bubble {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .bubble:after {
        content: '';
        position: absolute;
        top: 0;
        left: 6%;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-bottom-color: var(--card-bg);
        border-top: 0;
        margin-left: -10px;
        margin-top: -10px;
    }


}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(238, 90, 82, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.remove-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(238, 90, 82, 0.4);
    background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
}

.remove-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(238, 90, 82, 0.3);
}

.remove-btn i {
    color: white;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.remove-btn:hover i {
    transform: rotate(180deg);
}

h2 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 20px 0;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}


h3 {
    font-family: "Roboto", "Open Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-size: 25px;
    color: var(--text-color);

    display: flex;             
    align-items: center;      
    justify-content: center;   
    gap: 8px;                  
    text-align: center;
}

h3::before {
    font-family: "Font Awesome 6 Free";
    content: "\f013";
    font-weight: 900;
    display: inline-block;
    color: #ffc107;
    font-size: 32px;
    animation: spin 2s linear infinite; 
    line-height: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


