.sports-prediction-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    color: white;
    position: relative;
    margin: 10px;
    min-height: 300px;
}

.sports-prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.followers-count {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
}

.prediction-accuracy {
    color: #01FFA7;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.confidence-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    margin: 10px 0;
}

.confidence-bar-fill {
    background: #01FFA7;
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.confidence-label {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    color: #fff;
    font-size: 14px;
}

.follow-button {
    background: transparent;
    border: 1px solid #ffff00;
    color: #ffff00;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.follow-button:hover {
    background: rgba(255, 255, 0, 0.1);
}

.rating-stars {
    color: #01FFA7;
    margin: 10px 0;
}

/* Slick slider custom styles */
.sports-predictions-carousel .slick-prev,
.sports-predictions-carousel .slick-next {
    z-index: 1;
}

.sports-predictions-carousel .slick-prev {
    left: -25px;
}

.sports-predictions-carousel .slick-next {
    right: -25px;
}
