body {
    font-family: 'Arial', sans-serif; /* Clean and simple font */
    margin: 0;
    background-color: #f0f0f0; /* Light gray background for contrast */
    color: #333; /* Dark gray text for readability */
    line-height: 1.6;
}

header {
    background-color: #000; /* Black header */
    color: #fff; /* White text in header */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align logo and title to the left */
}

.logo-placeholder {
    margin-right: 20px;
}

.logo {
    max-width: 60px; /* Adjust logo size as needed */
    height: auto;
    border-radius: 5px; /* Slightly rounded logo */
    border: 2px solid #fff; /* White border for logo to stand out */
    background-color: #ffffff; /* Black header */
}

header h1 {
    margin: 0;
    font-size: 2em;
    font-weight: bold; /* Bold header text */
}

main {
    padding: 30px 20px;
    max-width: 800px;
    margin: 30px auto;
    background-color: #fff; /* White main content area */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px;
}

section {
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 1px solid #ddd; /* Light gray section separator */
}

section:last-child {
    border-bottom: none;
}

section h2 {
    color: #ff8c00; /* Orange section titles */
    margin-top: 0;
    font-size: 1.6em;
    font-weight: bold; /* Bold section titles */
    border-bottom: 2px solid #ff8c00; /* Orange line under titles */
    padding-bottom: 5px;
}

.server-info p, .voice-chat-info p, .rules li, .rules p {
    font-size: 1em;
}

.server-info code {
    background-color: #eee;
    padding: 4px 8px;
    border-radius: 5px;
    font-family: monospace;
}

.server-info a, .voice-chat-info a {
    color: #ff8c00; /* Orange links */
    text-decoration: none;
    font-weight: bold; /* Bold links */
}

.server-info a:hover, .voice-chat-info a:hover {
    text-decoration: underline; /* Underline on hover */
}

.guide-section {
    margin-top: 20px;
}

.rules ul {
    list-style-type: disc;
    padding-left: 25px;
}

.rules-note {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}