.feedback-button {
    position: fixed;
    right: 40px;
    bottom: 95px;
    z-index: 9999;
    padding: 14px 20px;
    background: linear-gradient(246deg, var(--color-mint-pink), var(--color-mint-pink-dark));
    color: black;
    font-weight: 600;
    font-size: 1.8vh;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.3s ease;
}
.feedback-button:hover {
    background: linear-gradient(246deg, #f55087, #3df4ec);
}
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease forwards;
}
.feedback-content {
    background-color: #fff;
    margin: auto;
    margin-top: 10vh;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 460px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease;
}
.feedback-close {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 50px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.feedback-close:hover {
    color: #333;
}
#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#feedback-form input,
#feedback-form select,
#feedback-form textarea {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
}
#feedback-form button[type="submit"] {
    padding: 12px;
    background: var(--tg-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#feedback-form button[type="submit"]:hover {
    background: var(--tg-accent);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 500px) {
    .feedback-content {
        padding: 20px;
    }
.feedback-button {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 9999;
    padding: 12px 16px;
    background-color: #ffd700;
    color: black;
    font-size: 14px;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.3s ease;
}
}