/* Floating Feature Request Button */
.feature-request-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 20px rgba(114, 137, 218, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid rgba(114, 137, 218, 0.3);
}

.feature-request-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.8), 0 0 30px rgba(114, 137, 218, 0.4);
    border-color: rgba(114, 137, 218, 0.6);
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
}

.feature-request-btn svg {
    width: 28px;
    height: 28px;
    fill: #7289da;
    filter: drop-shadow(0 0 4px rgba(114, 137, 218, 0.5));
}

/* Modal Overlay */
.feature-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1000;
    padding: 20px;
}

.feature-request-modal.active {
    display: flex;
}

/* Modal Content */
.feature-request-content {
    background: #1e1e1e;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.3s ease;
    margin-bottom: 100px;
    margin-right: 10px;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.feature-request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feature-request-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: #b9bbbe;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.feature-request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #b9bbbe;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7289da;
    background: #2f2f2f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    color: #72767d;
    font-size: 0.8rem;
    margin-top: -8px;
}

.submit-btn {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 137, 218, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message,
.error-message {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 12px;
    display: none;
}

.success-message {
    background: rgba(67, 181, 129, 0.1);
    border: 1px solid rgba(67, 181, 129, 0.3);
    color: #43b581;
}

.error-message {
    background: rgba(240, 71, 71, 0.1);
    border: 1px solid rgba(240, 71, 71, 0.3);
    color: #f04747;
}

.success-message.show,
.error-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-request-content {
        max-width: 100%;
        margin-bottom: 90px;
        margin-right: 0;
    }

    .feature-request-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .feature-request-btn svg {
        width: 24px;
        height: 24px;
    }
}
