        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .content-card {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(40, 40, 40, 0.8));
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            transition: all 0.3s ease;
            border: 1px solid #333;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .content-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff0033, #ff9999);
            top: 0;
            left: 0;
        }
        
        .content-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 51, 0.3);
            border: 1px solid #ff0033;
        }
        
        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .card-desc {
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
        }
        
        .player-spotlight {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(40, 40, 40, 0.8));
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            border: 1px solid #333;
            margin-bottom: 40px;
        }
        
        .spotlight-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .spotlight-title {
            font-size: 24px;
            font-weight: 700;
            color: #ff0033;
        }
        
        .player-info {
            display: flex;
            gap: 25px;
        }
        
        .player-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid #ff0033;
            box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
            transform: translateZ(20px);
            background: linear-gradient(135deg, #ff0033, #ff9999);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #fff;
        }
        
        .player-details {
            flex: 1;
        }
        
        .player-name {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ff0033, #ff9999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .player-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transform: translateZ(10px);
            border: 1px solid #333;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #ff0033;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #ccc;
        }