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

body {
    font-family: 'Rajdhani', sans-serif;
    background: url('images/background.jpg') no-repeat fixed center;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    user-select: none;
}

header {
    background: rgba(15, 25, 35, 0.85);
    padding: 40px;
    font-size: 42px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid rgba(255, 70, 85, 0.7);
}

header img {
    height: 80px;
    margin-top: 20px;
}

h1 {
    font-size: 45px; /* Kleiner gemacht, um die Scrollbar zu verhindern */
    transition: 0.3s ease-in-out;
}

h1 span {
    color: #ff4655;
    text-shadow: 0px 0px 8px rgba(255, 70, 85, 0.8), 0px 0px 15px rgba(255, 70, 85, 0.5);
    transition: 0.3s ease-in-out;
}

h1:hover {
    transform: scale(1.02); /* Hover-Effekt kleiner gemacht */
}

h1 span:hover {
    text-shadow: 0px 0px 12px rgba(255, 70, 85, 1), 0px 0px 20px rgba(255, 70, 85, 0.8);
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.players {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.player {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 160px;
}

.player img {
    width: 110px;
    border-radius: 50%;
    border: 2px solid #ff4655;
}

.copy-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    border-radius: 15px; /* Box rund machen */
}

input {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none; /* Kein Rand mehr */
    padding: 10px;
    font-size: 16px;
    width: 200px;
    text-align: center;
    outline: none; /* Keine Umrandung bei Fokus */
    box-shadow: none; /* Highlight entfernt */
    border-radius: 15px; /* Input rund machen */
    font-weight: 800;
}



button {
    background: #ff4655;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 800;
}

button:hover {
    background: #d43a4b;
}

ul {
    list-style: none;
    padding: 0;
    font-weight: 800;
}

ul li {
    font-size: 18px;
    padding: 5px 0;
    font-weight: 800;
}

p {
    font-weight: 800;
}
