/* Genel Stil Ayarları */
body {
    font-family: 'Roboto', sans-serif; 
    background-color: #ffeef2; 
    color: #4b4b4b; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
    text-align: center;
}

/* Ana İçerik Kutusu */
.container {
    max-width: 650px;
    padding: 50px;
    background-color: #ffffff; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(255, 105, 135, 0.2); 
    position: relative; 
}

/* Başlık ve Metinler */
h1 {
    font-family: 'Dancing Script', cursive; 
    color: #ff698d; 
    font-size: 3em;
    margin-bottom: 25px;
}

.section-header {
    font-weight: bold;
    color: #ff698d;
    margin-top: 20px;
    font-size: 1.2em;
}

/* Fotoğraf */
.target-photo {
    width: 180px; 
    height: 180px;
    border-radius: 50%; 
    object-fit: cover;
    border: 6px solid #ff698d; 
    margin-bottom: 30px;
}

/* Liste (Sevdiğiniz Şeyler) */
.love-list {
    list-style: none; 
    padding: 0;
    margin-bottom: 30px;
    font-style: italic;
}
.love-list li {
    margin: 5px 0;
}

/* Ana Teklif Sorusu */
.final-question {
    font-size: 1.5em;
    font-weight: 700;
    color: #c9003c; 
    margin: 40px 0 30px;
    padding: 10px;
    border: 2px dashed #ffb3c1; 
    display: inline-block;
}

/* Buton Grubu */
.button-group {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    margin-top: 30px;
    min-height: 80px; 
    position: relative; 
}

/* EVET Butonu */
.yes-btn {
    background-color: #38c47b; 
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px; 
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
}
.yes-btn:hover {
    background-color: #2cae6a;
    transform: scale(1.05);
}

/* HAYIR Butonu */
.no-btn {
    position: relative; 
    z-index: 10; 

    background-color: #ff698d; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, left 0s, top 0s; 
    font-family: 'Roboto', sans-serif;
}

