/* ====================================
   CustomDreams - Top 1 Widget Styles
   ==================================== */

/* Top 1 Slider Container */
.dream-top1-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Top 1 Card */
.dream-top1-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.98) 100%);
    border: 1px solid rgba(255, 218, 138, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dream-top1-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 218, 138, 0.3);
    box-shadow: 0 8px 25px rgba(255, 157, 77, 0.2);
}

/* Top 1 Header */
.dream-top1-header {
    background: linear-gradient(135deg, #ffda8a 0%, #ff9d4d 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
}

.dream-top1-header i {
    font-size: 18px;
}

/* Top 1 Player Section */
.dream-top1-player {
    padding: 25px 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Player Image */
.dream-top1-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 218, 138, 0.1) 0%, rgba(255, 157, 77, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 218, 138, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.dream-top1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Player Info */
.dream-top1-info {
    flex: 1;
    min-width: 0;
}

.dream-top1-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffda8a;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dream-top1-class {
    font-size: 13px;
    color: #ff9d4d;
    margin: 0 0 12px 0;
    font-weight: 600;
}

/* Player Stats */
.dream-top1-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dream-top1-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.dream-top1-stats i {
    color: #ffda8a;
    font-size: 12px;
    width: 14px;
}

/* View Link */
.dream-top1-link {
    display: block;
    padding: 12px 20px;
    background: rgba(255, 218, 138, 0.05);
    border-top: 1px solid rgba(255, 218, 138, 0.1);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #ffda8a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dream-top1-link:hover {
    background: rgba(255, 218, 138, 0.1);
    color: #ff9d4d;
    text-decoration: none;
}

.dream-top1-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dream-top1-link:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .dream-top1-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dream-top1-player {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .dream-top1-image {
        width: 70px;
        height: 70px;
    }
    
    .dream-top1-name {
        font-size: 16px;
    }
    
    .dream-top1-class {
        font-size: 12px;
    }
    
    .dream-top1-stats span {
        font-size: 12px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .dream-top1-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .dream-top1-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}
