body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.stats-bar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 14px;
    border-bottom: 2px solid #7289da;
}

.stats-item {
    flex: 1;
    text-align: left;
}

.container {
    margin: 50px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.language-switcher {
    text-align: right;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
}

.language-switcher button {
    background-color: #7289da;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.language-switcher button:hover {
    background-color: #5865f2;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn.discord {
    background-color: #7289da;
}

.btn.invite {
    background-color: #5865f2;
}

.btn.terms,
.btn.privacy {
    background-color: #444;
}

.btn:hover {
    opacity: 0.8;
}

.footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #7289da;
}
