body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #8b0000;
    background-color: #111;
    margin-top: 30px;
    border-radius: 5px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    color: #8b0000;
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 1px;
}

.subtitle {
    color: #777;
    font-size: 1.1em;
    margin-top: 5px;
}

.content-box {
    background-color: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 20px;
}

h2, h3 {
    color: #8b0000;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.server-info {
    background-color: #222;
    padding: 15px;
    border-left: 4px solid #8b0000;
    margin: 15px 0;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
    border: 1px solid #333;
}

.donate-btn {
    background-color: #8b0000;
    color: white;
}

.donate-btn:hover {
    background-color: #6d0000;
}

.discord-btn {
    background-color: #333;
    color: white;
}

.discord-btn:hover {
    background-color: #444;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #555;
    font-size: 0.9em;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.server-status {
    margin: 20px 0;
}

.server-status table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: #222;
    border: 1px solid #333;
}

.server-status td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.server-status tr:last-child td {
    border-bottom: none;
}

.server-status td:first-child {
    width: 30%;
    color: #8b0000;
    font-weight: bold;
}

.online {
    color: #00aa00;
}

.bitcoin-donation {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 15px 0;
}

.bitcoin-qr {
    text-align: center;
}

.bitcoin-qr img {
    border: 1px solid #333;
    padding: 5px;
    background: white;
}

.bitcoin-qr p {
    margin-top: 5px;
    font-size: 0.9em;
    color: #777;
}

.news-list {
    margin-top: 20px;
}

.news-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    color: #777;
    font-size: 0.9em;
    margin: 5px 0;
}

.news-preview {
    margin-top: 10px;
}

.news-content h2 {
    margin-top: 25px;
    color: #8b0000;
}

.news-content ul {
    padding-left: 20px;
}

.news-content li {
    margin-bottom: 8px;
}

.news-btn {
    background-color: #333;
    color: white;
}

.news-btn:hover {
    background-color: #444;
}

.vote-sites {
    margin-top: 20px;
}

.vote-site {
    background-color: #222;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #8b0000;
}

.vote-site h3 {
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
}

.vote-btn {
    background-color: #8b0000;
    color: white;
}

.vote-btn:hover {
    background-color: #6d0000;
}

@media (max-width: 600px) {
    .bitcoin-donation {
        flex-direction: column;
        align-items: flex-start;
    }
}

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