.minecraft-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.server-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.server-icon {
    width: 64px;
    height: 64px;
    margin-right: 15px;
    border-radius: 8px;
    border: 2px solid #555;
}

.server-title {
    flex-grow: 1;
}

.server-title h2 {
    margin: 0;
    color: #4CAF50;
}

.server-status {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.status-card {
    flex: 1 1 200px;
    background-color: rgba(50, 50, 50, 0.8);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.status-card:hover {
    transform: translateY(-5px);
}

.status-value {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
    color: #4CAF50;
}

.player-list {
    margin-top: 20px;
    background-color: rgba(50, 50, 50, 0.8);
    border-radius: 8px;
    padding: 15px;
}

.player-list h3 {
    margin-top: 0;
    color: #4CAF50;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.player-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.player-item:last-child {
    border-bottom: none;
}

.player-avatar {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 4px;
}

.loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2em;
    color: #aaa;
}

.error-message {
    background-color: rgba(255, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.server-info {
    margin-top: 20px;
    background-color: rgba(50, 50, 50, 0.8);
    border-radius: 8px;
    padding: 15px;
}

.server-info h3 {
    margin-top: 0;
    color: #4CAF50;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.info-item {
    display: flex;
    margin: 10px 0;
}

.info-label {
    font-weight: bold;
    width: 120px;
    color: #aaa;
}

.refresh-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.refresh-button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .server-status {
        flex-direction: column;
    }
}