/* =========================
   Fonts
========================= */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;600;700&display=swap');

/* =========================
   Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

/* =========================
   Body Background
========================= */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* =========================
   Main Container
========================= */
.container {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 24px 20px 32px;
    text-align: center;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* =========================
   Image
========================= */
.image-box img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}
/* =========================
   Question Text
========================= */
.question {
    font-size: 1.35rem;
    font-weight: 600;
    color: #5a0f2e;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* =========================
   Buttons Area
========================= */
.buttons {
    position: relative;
    height: 120px;
}

/* =========================
   Buttons (General)
========================= */
.btn {
    min-width: 120px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* =========================
   Yes Button
========================= */
.btn.yes {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    margin-left: 12px;
}

.btn.yes:active {
    transform: scale(0.95);
}

/* =========================
   No Button (Running)
========================= */
.btn.no {
    background: linear-gradient(135deg, #ff5f6d, #ff0844);
    color: white;
    position: absolute;
    right: 0;
    top: 0;
}

.btn.no:active {
    transform: scale(0.9);
}
.love-text {
    margin-bottom: 32px;   /* فاصله امن بین متن و دکمه */
}

.btn {
    display: inline-block;
    margin-top: 0;         /* جلوگیری از overlap */
}
a {
    text-decoration: none;
}
/* =========================
   Desktop Enhancement
========================= */
@media (min-width: 768px) {
    .container {
        max-width: 460px;
    }

    .question {
        font-size: 1.5rem;
    }

  .image-box {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
}
