body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #2c2f33;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: 20px auto;
    background-color: #36393f;
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
nav {
    background-color: #23272a;
    padding: 15px 0;
    text-align: center;
    border-bottom: 3px solid #c9a445;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 20px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
nav a:hover, nav a.active {
    background-color: #c9a445;
    color: #2c2f33;
}
h1, h2, h3 {
    color: #c9a445;
    border-bottom: 2px solid #4a4d53;
    padding-bottom: 10px;
}
h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    font-size: 2em;
    margin-top: 40px;
}
h3 {
    font-size: 1.5em;
    color: #b0903d;
    border-bottom: none;
    margin-top: 30px;
}
p, li {
    font-size: 1.1em;
    color: #dcddde;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}
strong {
    color: #ffffff;
}
a {
    color: #7289da;
}
a:hover {
    text-decoration: underline;
}
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #4a4d53;
    font-size: 0.9em;
    color: #99aab5;
}
.intro-links {
    text-align: center;
    margin-top: 40px;
}
.intro-links a {
    display: inline-block;
    background-color: #7289da;
    color: #fff;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
}
.intro-links a:hover {
    background-color: #677bc4;
}
