* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f; /* Tam Siyah */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    padding-bottom: 50px;
}

/* Gizli Mesaj - Güncellendi */
.secret-message {
    position: fixed;
    top: 15px; /* Biraz daha aşağı indi */
    right: 20px; /* Kenardan uzaklaştı */
    font-size: 14px; /* Yazı büyüdü (Eskisi 8px idi) */
    color: rgba(255, 255, 255, 0.8); /* Parlaklık arttı (Eskisi 0.2 idi) */
    z-index: 9999;
    font-weight: 500; /* Biraz kalınlaştı */
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Hafif neon parlaması */
    pointer-events: none;
}

header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
}

h1 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #ccc;
    text-transform: uppercase;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Müzik Kartı Tasarımı */
.audio-card {
    background-color: #181818;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid #2a2a2a;
    transition: transform 0.2s;
}

.audio-card:hover {
    border-color: #1db954; /* Spotify Yeşili ince detay */
}

.song-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.song-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.song-details p {
    font-size: 0.8rem;
    color: #888;
}

/* Player Bar Özelleştirme */
audio {
    width: 100%;
    height: 35px;
    outline: none;
}

/* Webkit tarayıcılar (Chrome, Safari) için player rengini koyulaştırma */
audio::-webkit-media-controls-panel {
    background-color: #ccc;
}
/* Bunu style.css'in en altına ekleyebilirsin */

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdırıp kırpar */
    border-radius: 8px;
}
