/* Floating Action Button (FAB) for Beta Feedback */
.fab-feedback-btn {
    position: fixed;
    right: 20px;
    bottom: 165px; /* Centered between the two promo cards */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15); /* Sleek transparent gold */
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fab-feedback-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.fab-feedback-btn:active {
    transform: scale(0.95);
}

.fab-feedback-btn svg {
    width: 24px;
    height: 24px;
}

.feedback-textarea {
    width: 100%;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    margin-bottom: 4px;
    box-sizing: border-box;
}

.feedback-textarea:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.feedback-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Modal Specific Overrides for Feedback */
#feedback-modal-overlay {
    padding: 20px 0 0 0 !important;
}

#feedback-modal-overlay .glass-modal {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px !important;
    text-align: center;
    padding: 35px 25px 25px 25px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px !important;
    width: 90% !important;
}

#feedback-modal-overlay .modal-header {
    margin-bottom: 11px !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
}

#feedback-modal-overlay .modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.65rem;
    margin: 0 !important;
    color: #ffffff;
    line-height: 1.3;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.feedback-status-msg {
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
    color: #10b981;
    opacity: 0;
    transition: opacity 0.3s;
}

.feedback-status-msg.error {
    color: #ef4444;
}

.feedback-status-msg.show {
    opacity: 1;
}
