body {
    background-color: #0f0f0f; /* Темный фон */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    overflow: hidden; /* Чтобы не скроллилось при свайпе */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

#card-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    height: 70vh;
    margin-top: 20px;
}

.tinder-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1c1c1e;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: transform 0.3s;
}

.card-info {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    padding-bottom: 30px;
}

.card-info h2 { margin: 0; font-size: 28px; }
.card-info h3 { margin: 5px 0; color: #4ade80; font-size: 20px; } /* Зеленая цена */
.card-info p { margin: 5px 0; color: #ccc; font-size: 14px; }

/* Кнопки внизу */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}
.btn:active { transform: scale(0.9); }
.btn-no { background: #ff4b4b; color: white; }
.btn-yes { background: #4ade80; color: white; }
