/**
 * ==========================================
 *  GAME HEADER KOMPONENS - KÖZÖS STÍLUSOK
 *  Jutalompont.com - 2025
 * ==========================================
 */

.game-header {
    background: var(--jp-gradient);
    border-radius: var(--jp-radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.game-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.game-header-content {
    position: relative;
    z-index: 1;
}

.game-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.game-header h1 i {
    margin-right: 0.75rem;
    animation: gameIconPulse 2s ease-in-out infinite;
}

@keyframes gameIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-header p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .game-header {
        padding: 2rem 1.5rem;
    }
    
    .game-header h1 {
        font-size: 2rem;
    }
    
    .game-header p {
        font-size: 1rem;
    }
    
    .game-header::before {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .game-header {
        padding: 1.5rem 1rem;
    }
    
    .game-header h1 {
        font-size: 1.75rem;
    }
    
    .game-header h1 i {
        margin-right: 0.5rem;
    }
}
