body {
    background-color: #ffeef2;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    width: 380px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.baslik {
    color: #d81b60;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gif-box {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-box img {
    width: min(180px, 70vw);   
    max-width: 100%;          
    height: auto;             
    object-fit: contain;      
}


.buton-grubu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

button {
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none !important; /* Mavi/Siyah çizgiyi kaldırır */
    -webkit-tap-highlight-color: transparent; /* Mobildeki mavi tıklama gölgesini kaldırır */
}

#evetBtn {
    background-color: #388e3c;
    color: white;
}

#hayirBtn {
    background-color: #e53935;
    color: white;
}

.gizli { display: none; }

/* Mekan Ekranı */
.input-box {
    width: 100%;
    margin-top: 10px;
}

input {
    width: 90%;
    padding: 12px;
    border: 2px solid #f8bbd0;
    border-radius: 10px;
    outline: none;
    margin-bottom: 15px;
    font-size: 14px;
}

#gonderBtn {
    background-color: #25d366;
    color: white;
    width: 100%;
}

/* Kalpler */
.heart {
    position: absolute;
    color: #ff80ab;
    animation: fly 3s linear infinite;
    pointer-events: none;
}

@keyframes fly {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
/* 📱 Mobil uyum */
@media (max-width: 480px) {

    body {
        padding: 15px;
        align-items: flex-start;
    }

    .container {
        width: 100%;
        max-width: 360px;
        padding: 25px 20px;
        border-radius: 20px;
        margin-top: 40px;
    }

    .baslik{
    font-size: clamp(16px, 4.5vw, 22px);
}

    .gif-box img {
        width: 150px;
    }

    button {
        font-size: 16px;
        padding: 10px 18px;
    }

    input {
        width: 100%;
        font-size: 14px;
    }

    .buton-grubu {
        flex-direction: column;
        gap: 12px;
    }
}
