/* 反馈按钮样式 - 改成和sponsor一样的样式 */
.feedback-container {
    position: fixed;
    bottom: 20px;
    right: 85px;
    z-index: 1000;
}

.feedback-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.feedback-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .feedback-container {
        bottom: 15px;
        right: 70px;
    }
    
    .feedback-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .feedback-container {
        bottom: 10px;
        right: 60px;
    }
    
    .feedback-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* 移动端横向排列适配 */
@media (max-width: 768px) and (orientation: landscape) {
    .feedback-container {
        bottom: 15px;
        right: 75px;
    }
}

/* 隐藏旧的反馈按钮样式 */
.feedback-button {
    display: none !important;
}

/* 确保容器不会被其他样式影响 */
.feedback-container,
.sponsor-container {
    position: fixed !important;
    bottom: 20px !important;
    z-index: 1000 !important;
}

.sponsor-container {
    right: 20px !important;
}

.feedback-container {
    right: 85px !important;
}

/* 移动端容器位置调整 */
@media (max-width: 768px) {
    .sponsor-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .feedback-container {
        bottom: 15px !important;
        right: 70px !important;
    }
}

@media (max-width: 480px) {
    .sponsor-container {
        bottom: 10px !important;
        right: 10px !important;
    }
    
    .feedback-container {
        bottom: 10px !important;
        right: 60px !important;
    }
}
