/* =========================================
   COUPLE WARS TV ÖZEL EFEKTLER (AŞK MEŞK TEMASI)
   ========================================= */

/* Arka planda uçuşan kalpler için konteyner */
#heart-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}

.floating-heart {
    position: absolute; bottom: -100px;
    color: rgba(234, 33, 88, 0.3); /* Yarı saydam IF Kırmızısı/Pembesi */
    animation: floatUp 10s linear infinite, sway 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
    0% { bottom: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { bottom: 110vh; opacity: 0; }
}

@keyframes sway {
    0% { transform: translateX(-20px) rotate(-15deg); }
    100% { transform: translateX(20px) rotate(15deg); }
}

/* Çift isimlerinin arasına şık bir '&' işareti */
.couple-names { font-weight: bold; font-size: 1.2rem; }
.couple-names .amp { 
    color: var(--brand-red); 
    font-family: 'Oswald'; 
    margin: 0 5px; 
    font-size: 1.5rem; 
    animation: pulse 1.5s infinite; 
}

/* Ekran içerikleri kalplerin üstünde kalsın */
.content-area, .top-bar, .footer { z-index: 10; position: relative; }