.bg-gradient-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}
.game-card {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.game-card:hover {
    border-color: #ff6b6b;
    transform: scale(1.02);
}
.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
