:root {
    --bg-dark: #1e1e1e;
    --bg-medium: #2b2b2b;
    --gray: #3a3a3a;
    --gray-light: #4a4a4a;
    --accent: #66cc66;
    --text: #dddddd;
    --text-muted: #999;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

nav {
    background-color: var(--bg-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #444;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

section {
    display: none;
    padding: 60px 20px;
    background-color: var(--bg-medium);
    min-height: 80vh;
}

section.active {
    display: block;
}

.content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

h1,
h2 {
    margin-bottom: 20px;
    color: var(--accent);
}

p,
ul {
    margin-bottom: 20px;
}

ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

ul li {
    background: var(--gray);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.btn {
    background-color: var(--accent);
    color: #111;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #55aa55;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

input,
textarea {
    padding: 10px;
    background-color: var(--gray-light);
    border: 1px solid #666;
    border-radius: 6px;
    color: var(--text);
}

button {
    background-color: var(--accent);
    color: #111;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #55aa55;
}

footer {
    background-color: var(--bg-medium);
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    border-top: 1px solid #444;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn.discord {
    background-color: #7289DA;
}

.contact-btn.telegram {
    background-color: #0088cc;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}