.floating-controls {
    position: absolute;
    right: 14px;
    bottom: 180px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.avatar-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
    background: #000;
}
.avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-plus {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #000;
}

.control-btn {
    background: transparent !important;
    border: none;
    width: 50px;   
    height: 50px;  
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.control-btn:hover {
    transform: scale(1.08);
}

.icon-img {
    width: 32px;
    height: 32px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 1.5px rgba(0,0,0,0.5));
}

.like-count {
    margin-top: 2px;
    font-size: 12px;
    color: #fff;
    text-shadow: 0 0 1.5px rgba(0,0,0,0.8);
    font-weight: 500;
}

.like-btn.active .icon-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(93%) saturate(7471%) hue-rotate(356deg);
}

.reward-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.reward-content {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    max-width: 300px;
    text-align: center;
}
.reward-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.reward-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.reward-tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}
.reward-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}
.reward-qrcode {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    object-fit: contain;
}
.reward-close {
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
