

    .trending-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .title {
        font-size: 3rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 3px;
        background: linear-gradient(135deg, #ff0080, #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        color: #888;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .last-updated {
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid #00d4ff;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.7rem;
        color: #00d4ff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .players-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .player-card {
        background: linear-gradient(135deg, #2d3748, #1a202c);
        border: 2px solid #00d4ff;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }

    .player-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    }

    .player-card.rank-1 {
        border-color: #ffd700;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }

    .player-card.rank-1:hover {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }

    .player-card.rank-2 {
        border-color: #c0c0c0;
        box-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
    }

    .player-card.rank-2:hover {
        box-shadow: 0 0 40px rgba(192, 192, 192, 0.5);
    }

    .rank-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 900;
        z-index: 3;
        border: 2px solid #fff;
    }

    .rank-1 .rank-badge {
        background: linear-gradient(135deg, #ffd700, #ffaa00);
        color: #000;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }

    .rank-2 .rank-badge {
        background: linear-gradient(135deg, #c0c0c0, #999);
        color: #000;
        box-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
    }

    .rank-3 .rank-badge {
        background: linear-gradient(135deg, #cd7f32, #8b4513);
        color: #fff;
        box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
    }

    .trending-indicator {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #c06200, #c06200);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.6rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 3;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    .player-media {
        height: 200px;
        position: relative;
        background: linear-gradient(135deg, #4a5568, #2d3748);
        overflow: hidden;
    }

    .player-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .player-card:hover .player-photo {
        transform: scale(1.05);
    }

    .video-indicator {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .play-icon {
        width: 0;
        height: 0;
        border-left: 6px solid white;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    .player-info {
        padding: 1.5rem;
    }

    .player-name {
        font-size: 1.4rem;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .team-school {
        font-size: 0.8rem;
        color: #888;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        text-align: center;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid #00d4ff;
        padding: 0.8rem;
        border-radius: 8px;
    }

    .stat-value {
        font-size: 1.6rem;
        font-weight: 900;
        color: #00d4ff;
        display: block;
        text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    }

    .stat-label {
        font-size: 0.6rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }


    .game-details {
        font-size: 0.7rem;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .trending-stats {
        background: linear-gradient(135deg, #1a1a2e, #000811);
        border: 2px solid #ff0080;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
    }

    .trending-title {
        font-size: 1.5rem;
        font-weight: 900;
        color: #ff0080;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .trending-numbers {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .trending-stat {
        background: rgba(255, 0, 128, 0.1);
        border: 1px solid #ff0080;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .trending-stat-value {
        font-size: 2.5rem;
        font-weight: 900;
        color: #ff0080;
        text-shadow: 0 0 10px rgba(255, 0, 128, 0.6);
        display: block;
    }

    .trending-stat-label {
        font-size: 0.8rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .title {
            font-size: 2rem;
        }
        
        .last-updated {
            position: static;
            margin-top: 1rem;
            display: inline-block;
        }
        
        .players-grid {
            grid-template-columns: 1fr;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
    }
