
body {
    background-color: #0a0a0a;
    color: #00ffcc;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    padding: 30px;
    margin: 0;
}
.container {
    max-width: 650px;
    margin: auto;
}
.logo {
    width: 180px;
    border-radius: 10px;
    margin-bottom: 20px;
}
h1 {
    font-size: 28px;
    color: #00ffcc;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ffcc;
}
.highlight {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
p {
    margin: 10px 0;
    font-size: 16px;
}
.join-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 16px;
    background-color: #00ffcc;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
.join-button:hover {
    background-color: #00ccaa;
}
h2 {
    margin-top: 40px;
    color: #00ffcc;
    font-size: 20px;
}
