* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0d0d0d;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #333;
}

.server-section {
    margin-bottom: 30px;
}

.server-icon-container {
    margin-bottom: 25px;
}

.server-icon {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    image-rendering: pixelated;
    display: block;
    margin: 0 auto;
}

#serverContent h1 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 12px;
    word-break: break-word;
    line-height: 1.3;
}

.server-address {
    color: #999;
    font-size: 1em;
    margin-bottom: 16px;
    font-family: monospace;
}

.players-info {
    color: #aaa;
    font-size: 0.95em;
}

.refresh-btn {
    width: 100%;
    padding: 12px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.refresh-btn:hover {
    background: #45a049;
}

.refresh-btn:active {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .server-icon {
        width: 100px;
        height: 100px;
    }
    
    #serverContent h1 {
        font-size: 1.5em;
    }
}
