body {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://www.transparenttextures.com/patterns/dark-matter.png'), #121212;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 0;
}

.server-ip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c6411d;
    padding: 10px;
    border: 2px solid #555;
    font-weight: bold;
}

h1 {
    font-size: 3rem;
    text-shadow: 3px 3px #000;
    color: #fff;
    margin-top: 50px;
}

.player-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.player-card {
    border: 2px solid #ffd700;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
}

.player-card img {
    width: 64px;
    height: 64px;
    image-rendering: pixelated; /* Keeps MC faces crisp */
}

input, textarea {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background: #444;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background: #666;
}

.hidden { display: none; }