header {
    background: linear-gradient(90deg, #1d2b64, #00aaff, #1d2b64);
    background-size: 200% 200%;
    animation: gradientMove 32s ease infinite;
    color: #fff;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header h1 {
    font-size: 3rem;
    font-family: 'MaPolice', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

header .logo-container img {
    max-width: 120px;
    margin-bottom: 20px;
}

header .server-logo img:hover {
    filter: drop-shadow(0 0 15px #00ccff);
}

header .player-status {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #f1f1f1;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header .player-status {
        font-size: 1rem;
    }
}
