
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Verdana, Arial, Helvetica, sans-serif;
background-color: #000000;
color: #ffffff;
line-height: 1.6;
}

.container {
max-width: 1200px;
margin: 0 auto;
background-color: #1a1a1a;
border: 1px solid #333;
}

header {
background: linear-gradient(to bottom, #2a1810, #1a0a05);
border-bottom: 3px solid #8b4513;
padding: 20px;
text-align: center;
}

header h1 {
color: #d4a574;
font-size: 2.5em;
text-shadow: 2px 2px 4px #000;
margin-bottom: 10px;
}

nav {
background: linear-gradient(to right, #3e2a1f, #2a1810);
border-bottom: 2px solid #8b4513;
padding: 15px 0;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 0 20px;
}

nav ul li {
margin: 5px 15px;
}

nav ul li a {
color: #d4a574;
text-decoration: none;
font-weight: bold;
font-size: 0.95em;
transition: color 0.3s;
}

nav ul li a:hover {
color: #ffd700;
}

.announcement {
background-color: #4f2612;
padding: 10px 20px;
margin: 20px;
border-radius: 5px;
text-align: center;
color: #ffd700;
}

main {
padding: 30px 20px;
}

article {
background-color: #2a2a2a;
padding: 30px;
margin-bottom: 30px;
border-radius: 8px;
border-left: 4px solid #8b4513;
}

article h2, article h3, article h4 {
color: #d4a574;
margin-top: 20px;
margin-bottom: 15px;
}

article h1 {
display: none;
}

article p {
margin-bottom: 15px;
color: #e0e0e0;
text-align: justify;
}

.transition-section {
background-color: #333;
padding: 20px 30px;
margin: 30px 20px;
border-radius: 8px;
border: 1px solid #555;
}

.transition-section p {
color: #d0d0d0;
margin-bottom: 10px;
}

.links-section {
background-color: #2a2a2a;
padding: 30px;
margin: 30px 20px;
border-radius: 8px;
border: 2px solid #4f2612;
}

.links-section h2 {
color: #d4a574;
text-align: center;
margin-bottom: 30px;
font-size: 1.8em;
padding-bottom: 10px;
border-bottom: 2px solid #8b4513;
}

.links-section h3 {
color: #ffd700;
margin-top: 25px;
margin-bottom: 15px;
font-size: 1.3em;
}

.links-section ul {
list-style: none;
column-count: 2;
column-gap: 30px;
margin-bottom: 20px;
}

.links-section ul li {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
break-inside: avoid;
}

.links-section ul li:before {
content: "▶";
position: absolute;
left: 0;
color: #8b4513;
}

.links-section ul li a {
color: #d4a574;
text-decoration: none;
transition: color 0.3s;
}

.links-section ul li a:hover {
color: #ffd700;
}

footer {
background: linear-gradient(to top, #2a1810, #1a0a05);
border-top: 3px solid #8b4513;
padding: 20px;
text-align: center;
}

footer p {
color: #999;
font-size: 0.9em;
}

footer a {
color: #d4a574;
text-decoration: none;
margin: 0 10px;
}

footer a:hover {
color: #ffd700;
}

@media (max-width: 768px) {
header h1 {
font-size: 1.8em;
}

nav ul {
flex-direction: column;
align-items: center;
}

nav ul li {
margin: 8px 0;
}

article {
padding: 20px;
}

.links-section {
padding: 20px;
}

.links-section ul {
column-count: 1;
}

.transition-section {
padding: 15px 20px;
}
}

@media (max-width: 480px) {
header h1 {
font-size: 1.5em;
}

nav ul li a {
font-size: 0.85em;
}

article {
padding: 15px;
}

.links-section h2 {
font-size: 1.4em;
}

.links-section h3 {
font-size: 1.1em;
}
}
