/* Hot Ringtones Module Styles */
.hot-ringtones-module {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.hot-ringtones-module h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
}

.hot-ringtones-module h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: #42b983;
    margin-right: 10px;
    border-radius: 2px;
}

.hot-ringtone-list {
    padding: 0 5px;
}

.hot-ringtone-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #f3f4f6;
    transition: all 0.2s;
    text-decoration: none !important;
}

.hot-ringtone-item:last-child {
    border-bottom: none;
}

.hot-ringtone-item:hover .hot-ringtone-title {
    color: #42b983;
}

.hot-ringtone-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}

.hot-ringtone-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hot-ringtone-item:hover .hot-ringtone-thumb img {
    transform: scale(1.1);
}

.hot-ringtone-info {
    flex: 1;
    min-width: 0;
}

.hot-ringtone-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.hot-ringtone-author {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.hot-ringtone-author i {
    margin-right: 4px;
    font-size: 11px;
}

/* Rank number badge */
.hot-rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 6px;
}

.hot-ringtone-item:nth-child(1) .hot-rank-badge {
    background: #f59e0b; /* Gold */
}

.hot-ringtone-item:nth-child(2) .hot-rank-badge {
    background: #9ca3af; /* Silver */
}

.hot-ringtone-item:nth-child(3) .hot-rank-badge {
    background: #b45309; /* Bronze */
}
