/* Feedback Button Styles */
.feedback-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4FF 0%, #4B7BFF 30%, #9F40FF 60%, #FF40FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(159, 64, 255, 0.4);
    transition: all 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.feedback-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(159, 64, 255, 0.5);
    color: white;
}

.feedback-float-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Platform Feedback Stats */
.feedback-stats {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(75, 123, 255, 0.08) 30%, rgba(159, 64, 255, 0.08) 60%, rgba(255, 64, 255, 0.08) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.feedback-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.feedback-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4FF 0%, #4B7BFF 30%, #9F40FF 60%, #FF40FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-stats .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feedback Card Hover Effects */
.feedback-card {
    transition: all 0.3s;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #9F40FF;
}

/* Rating Display */
.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff3cd;
    border-radius: 50px;
    font-weight: 600;
}

.rating-display .rating-value {
    font-size: 1.2rem;
    color: #856404;
}

/* Comment Box Styling */
.comment-box {
    background: #f8f9fa;
    border-left: 4px solid #9F40FF;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.comment-box .comment-author {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.comment-box .comment-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.comment-box .comment-text {
    color: #212529;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Feedback Success Message */
.feedback-success {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #28a745;
    animation: slideIn 0.5s ease;
    z-index: 1100;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
    
    .feedback-stats .stat-number {
        font-size: 2rem;
    }
}