

/* 人氣榜樣式 */

.hot-content {

    padding: 20px 0;

}



.hot-ranking-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.hot-ranking-item {

    display: flex;

    align-items: center;

    padding: 16px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

    cursor: pointer;

}



.hot-ranking-item:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 16px rgba(208, 13, 9, 0.15);

}



/* 排名徽章 */

.hot-rank-badge {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 12px;

    flex-shrink: 0;

}



.hot-rank-badge.gold {

    background: linear-gradient(135deg, #FFD700, #FFA500);

}



.hot-rank-badge.silver {

    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);

}



.hot-rank-badge.bronze {

    background: linear-gradient(135deg, #CD7F32, #B8860B);

}



.hot-rank-badge.rank-4,

.hot-rank-badge.rank-5 {

    background: linear-gradient(135deg, #D00D09, #A00A07);

}



.star-icon {

    color: white;

    font-size: 18px;

    font-weight: bold;

}



.rank-number {

    color: white;

    font-size: 16px;

    font-weight: bold;

}



/* 用戶信息 */

.hot-user-info {

    display: flex;

    align-items: center;

    flex: 1;

    min-width: 0;

}



.hot-user-avatar {

    position: relative;

    margin-right: 12px;

    flex-shrink: 0;

}



.hot-user-avatar img {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    object-fit: cover;

}



.notification-badge {

    position: absolute;

    top: -4px;

    right: -4px;

    background: #D00D09;

    color: white;

    border-radius: 50%;

    width: 18px;

    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    font-weight: bold;

}



.hot-user-details {

    flex: 1;

    min-width: 0;

}



.hot-username {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 4px;

}



.hot-username span:first-child {

    font-weight: 600;

    color: #333;

    font-size: 14px;

}



.vip-badge {

    background: linear-gradient(135deg, #FFD700, #FFA500);

    color: white;

    padding: 2px 6px;

    border-radius: 4px;

    font-size: 10px;

    font-weight: bold;

}



.hot-user-stats {

    display: flex;

    gap: 12px;

    font-size: 12px;

}



.win-rate {

    color: #4CAF50;

    background: rgba(76, 175, 80, 0.1);

    padding: 2px 6px;

    border-radius: 4px;

}



.weekly-tips {

    color: #FF9800;

    background: rgba(255, 152, 0, 0.1);

    padding: 2px 6px;

    border-radius: 4px;

}



/* 粉絲數據 */

.hot-followers {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-left: 12px;

    flex-shrink: 0;

}



.followers-info {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}



.followers-label {

    font-size: 12px;

    color: #666;

    margin-bottom: 2px;

}



.followers-count {

    font-size: 18px;

    font-weight: bold;

    color: #333;

}



.arrow-icon {

    color: #D00D09;

    font-size: 20px;

    font-weight: bold;

    opacity: 0.7;

    transition: all 0.3s ease;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 20px;

    height: 20px;

}



.hot-ranking-item:hover .arrow-icon {

    opacity: 1;

    transform: translateX(2px);

}



/* 移動端適配 */

@media (max-width: 768px) {

    .hot-content {

        padding: 16px 12px;

    }



    .hot-ranking-item {

        padding: 12px;

    }



    .hot-rank-badge {

        width: 32px;

        height: 32px;

        margin-right: 8px;

    }



    .star-icon {

        font-size: 14px;

    }



    .rank-number {

        font-size: 12px;

    }



    .hot-user-avatar img {

        width: 40px;

        height: 40px;

    }



    .notification-badge {

        width: 16px;

        height: 16px;

        font-size: 9px;

    }



    .hot-username span:first-child {

        font-size: 13px;

    }



    .hot-user-stats {

        gap: 8px;

        font-size: 11px;

    }



    .hot-followers {

        gap: 8px;

        margin-left: 8px;

    }



    .followers-count {

        font-size: 16px;

    }



    .followers-label {

        font-size: 11px;

    }



    .arrow-icon {

        font-size: 16px;

        width: 16px;

        height: 16px;

    }

}



@media (max-width: 480px) {



    .hot-ranking-item {

        padding: 10px;

        /* 保持水平布局，不要改為垂直 */

    }



    .hot-rank-badge {

        width: 28px;

        height: 28px;

        margin-right: 6px;

    }



    .star-icon {

        font-size: 12px;

    }



    .rank-number {

        font-size: 10px;

    }



    .hot-user-avatar {

        margin-right: 8px;

    }



    .hot-user-avatar img {

        width: 36px;

        height: 36px;

    }



    .notification-badge {

        width: 14px;

        height: 14px;

        font-size: 8px;

    }



    .hot-username span:first-child {

        font-size: 12px;

        max-width: 100px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;

    }



    .hot-user-stats {

        gap: 6px;

        font-size: 10px;

    }



    .hot-followers {

        gap: 6px;

        margin-left: 6px;

    }



    .followers-count {

        font-size: 14px;

    }



    .followers-label {

        font-size: 10px;

    }



    .arrow-icon {

        font-size: 14px;

        width: 14px;

        height: 14px;

    }

}

