body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
    text-align: center;
}

/* LOGO */
.logo {
    font-size: 32px;
    margin-top: 20px;
    font-weight: bold;
}

/* MENÜ */
.menu {
    margin: 20px;
}

button {
    padding: 10px 18px;
    margin: 5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #ffb6c1;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* SECTIONS */
.section {
    margin-top: 40px;
    opacity: 1;
    transition: 0.3s;
}

.hidden {
    display: none;
}

/* ŞİİR YAZISI */
#siirText {
    font-size: 24px;
    margin: 20px;
    transition: 0.3s;
    white-space: pre-wrap;
}
.photo-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* foto stili */
.photo-container img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;

    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: popIn 0.6s forwards;
}

/* giriş animasyonu */
@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* Müzik Çalar Kutusu */
.player-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

/* Sözlerin Alanı */
.lyrics-container {
    margin-top: 20px;
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* Her bir söz satırı */
.lyric-line {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.2); /* Okunmayanlar soluk */
    margin: 15px 0;
    transition: all 0.4s ease;
}

/* O an okunan söz (Spotify Efekti) */
.lyric-line.active {
    color: #ffb6c1;
    transform: scale(1.15);
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 182, 193, 0.6);
}

/* Kaydırma çubuğunu gizle (isteğe bağlı) */
.lyrics-container::-webkit-scrollbar {
    width: 0px;
}
/* Anılar Alanı (Yan yana dizme) */
.memory-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Beyaz Fotoğraf Çerçevesi (Polaroid) */
.polaroid {
    background: white;
    padding: 20px 20px 50px 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    transform: rotate(-1.5deg); 
    width: 600px; /* Genişliği biraz daha artırdım */
    max-width: 90%; 
    margin: auto; /* Ortala */
    transition: all 0.3s ease;
}

.polaroid img {
    width: 100%;
    max-height: 70vh; /* Ekran yüksekliğinin %70'inden fazla olmasın */
    object-fit: contain; /* Fotoğrafı kesmez, çerçeveye tam sığdırır */
    background: #f0f0f0; /* Fotoğrafın kenarlarında boşluk kalırsa çirkin durmasın */
    border-radius: 5px;
}

.polaroid .caption {
    color: #333; /* Yazı rengi siyah/gri */
    font-size: 24px;
    margin-top: 15px;
    font-weight: bold;
}

/* Geçişlerde Arka Planın Yumuşak Değişmesi İçin */
body {
    transition: background 1s ease;
}