    /*
        14 Şubat Sevgililer Scripti
        Copyright (C) 2025 Telif Hakkı Mehmet Selman'a aittir.
        Yardım ve talep için https://mehmetselman.com.tr
    */
	
    .mutluluk-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .mutluluk-button button {
        background: linear-gradient(135deg, #ff7eb3, #ff758c);
        color: white;
        font-size: 18px;
        font-weight: bold;
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 4px 10px rgba(255, 118, 136, 0.5);
        position: relative;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 280px;
    }

    .mutluluk-button button:hover {
        background: linear-gradient(135deg, #ff758c, #ff7eb3);
        transform: translateY(-3px);
        box-shadow: 0px 6px 15px rgba(255, 118, 136, 0.7);
    }

    /* 📌 Gün Sayacı */
    .gunSayaci {
        font-size: 16px;
        font-weight: normal;
        margin-top: 5px;
        opacity: 0.9;
    }

    /* 📌 Tam Ortada Görünen Toast */
    .toast {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(135deg, #ff7eb3, #ff758c);
        color: white;
        font-weight: bold;
        font-size: 18px;
        padding: 20px 40px;
        border-radius: 15px;
        box-shadow: 0px 4px 15px rgba(255, 118, 136, 0.7);
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 9999;
        display: none;
        text-align: center;
        animation: fadeInOut 2.5s ease-in-out;
    }

    /* 📌 Yumuşak Fade-in ve Fade-out Efekti */
    @keyframes fadeInOut {
        0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
        20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    }

    /* 📌 Kalp Animasyonu */
    .toast::before, .toast::after {
        content: "💖";
        font-size: 24px;
        margin: 0 10px;
    }
	
.couple-img-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.couple-img-small {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #ff4d6d, #ff9a8b, #ff7eb3, #ff4d6d) border-box;
}

/* Kalp simgesini daha şık hale getirelim */
.heart-icon {
    width: 130px;
    height: 180px;
    object-fit: contain;
    animation: heartbeat 2s infinite alternate ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobil uyumluluk */
@media (max-width: 767px) {
    .couple-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .couple-heart {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .col-md-5 {
        width: 100%;
        margin-bottom: 20px;
    }

    .heart-icon {
        width: 100px;
        height: 150px;
    }
}
/* Çerçeve Efekti */
.couple-img-small {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #ff1e56, #ffac41, #ff4b5c, #ff1e56) border-box;
    box-shadow: 0px 0px 15px rgba(255, 30, 86, 0.6);
}

/* Row düzeni - görsel ve metin */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.img-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.img-holder img {
    max-width: 100%;
    height: auto;
}

.story-text {
    padding: 15px;
}

.heart-divider {
    margin: 20px 0;
    font-size: 30px;
}