#welcomeMsg {
    padding: 30px 20px !important;
    max-width: 900px;
    margin: 30px auto;
    border-radius: 15px;
    background: rgba(32, 32, 32, 0.9);
    border: 3px solid cyan !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    text-align: left !important;
    line-height: 1.7em;
    color: white;
}

#welcomeMsg h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: cyan !important;
    text-shadow: 0 0 10px cyan, 0 0 20px #00ffff66;
}

#welcomeMsg h3 {
    margin-top: 25px;
    font-size: 1.5em;
    color: cyan !important;
    border-bottom: 1px solid cyan;
    padding-bottom: 5px;
}

#welcomeMsg p {
    margin: 10px 0;
    font-size: 1.1em;
}

#welcomeMsg strong {
    color: cyan;
}

.serverInfoContainer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.serverListBlock,
.serverFeaturesBlock {
    flex: 1 1 300px;
    min-width: 250px;
}

ul.serverList {
    list-style-type: '🕹️ ';
    padding-left: 20px;
    margin-bottom: 20px;
}

ul.serverFeatures {
    list-style-type: '⚙️ ';
    padding-left: 20px;
    margin-bottom: 20px;
}

ul.serverMods {
    list-style-type: '🔧 ';
    columns: 2;
    column-gap: 30px;
    padding-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .serverInfoContainer {
        flex-direction: column;
    }

    .serverListBlock,
    .serverFeaturesBlock {
        min-width: unset;
    }

    ul.serverMods {
        columns: 1;
    }
}

