body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e; /* base background */
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px; /* grid size */
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
}

header {
    background: url('minecraft-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 3em;
    margin: 0;
}

header p {
    font-size: 1.2em;
}

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

section {
    background: rgb(57, 86, 90);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #ffffff;
    border-bottom: 2px solid #51cfaa;
    padding-bottom: 5px;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

ul li strong {
    color: #51cfaa;
}

.join {
    text-align: center;
}

.join .highlight {
    font-weight: bold;
    color: #51cfaa;
    font-size: 1.3em;
}

.join a {
    color: #51cfaa;
    text-decoration: none;
}

.join a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #51cfaa;
    border: 2px solid white;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    box-shadow: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button:hover {
    background-color: #287c63;
    color: white !important;
    box-shadow: 0 0 15px 4px rgba(119, 255, 214, 0.6); /* glow effect */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .button {
        font-size: 1em;
        padding: 8px 15px;
    }

    .join .highlight {
        font-size: 1.1em;
    }
}