body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: rgba(10, 15, 25, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
    border: 1px solid rgba(0, 170, 255, 0.1);
}

header h1 {
    text-align: center;
    font-size: 3.5em;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.5), 2px 2px 4px #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 170, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #00ccff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00aaff;
}

main {
    padding: 10px;
}

h1, h2, h3 {
    color: #00aaff;
    text-shadow: 1px 1px 3px #000000;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
    padding-bottom: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 12px;
}

code {
    background-color: rgba(0, 170, 255, 0.1);
    color: #00ccff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid rgba(0, 170, 255, 0.2);
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 170, 255, 0.5), transparent);
    margin: 30px 0;
}

/* Race Layout */
.race {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    gap: 25px;
}

.race.reverse {
    flex-direction: row-reverse;
}

.race img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

.race-info {
    flex: 1;
}

.race-title {
    font-size: 1.8em;
    margin-top: 0;
    color: #00ccff;
    margin-bottom: 10px;
}

.race-info p i {
    color: #b0b0b0;
    display: block;
    margin-bottom: 10px;
}

.race-info ul li strong {
    color: #00aaff;
    font-size: 1.05em;
}

/* Item Styling */
.item-name {
    color: #00aaff;
    font-weight: bold;
    font-size: 1.2em;
    display: block;
    margin-bottom: 4px;
}

.item-description {
    color: #e0e0e0;
    margin-left: 10px;
    display: block;
}

.command-name {
    color: #00ccff;
    font-weight: bold;
}
