@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Pacifico&display=swap');

body {
    background: #0a0a0a;
    color: white;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Przycisk Home */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(179, 107, 255, 0.2);
    color: #b36bff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 10px #b36bff;
    transition: 0.3s ease-in-out;
}

.home-button:hover {
    background: #b36bff;
    color: #fff;
    box-shadow: 0 0 15px #fff, 0 0 25px #b36bff;
}

/* Kontener */
.container {
    background: rgba(20, 20, 20, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(163, 71, 255, 0.8);
    animation: fadeIn 1.5s ease-in-out;
}

/* Korona */
.crown {
    width: 100px;
    margin-bottom: -20px;
}

/* Stylizowany tytuł "moo.ks-bio.pl Staff" */
.staff-title {
    font-size: 50px;
    font-family: 'Pacifico', cursive;
    color: #ffffff;
    text-shadow: 0 0 20px #b36bff, 0 0 40px #ff00ff;
    animation: glow 2s infinite alternate;
}

/* Role i nazwy */
.member {
    background: rgba(30, 30, 30, 0.8);
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 0 10px rgba(163, 71, 255, 0.6);
    transition: transform 0.3s ease-in-out;
}

.member:hover {
    transform: scale(1.05);
}

.role {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #b36bff;
}

.name {
    font-size: 30px;
    font-weight: bold;
    color: #b36bff;
    text-shadow: 0 0 15px #b36bff, 0 0 30px #fff;
}

/* Animacje */
@keyframes glow {
    0% { text-shadow: 0 0 15px #b36bff, 0 0 25px #fff; }
    100% { text-shadow: 0 0 20px #fff, 0 0 35px #b36bff; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Śnieżynki */
.snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 12px;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
