* {
    text-align: center;
}

body {
    background-color: #0a0a0a;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cccccc;
    margin: 0 auto;
}

h1 {
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #cccccc;
    font-family: 'Cinzel', serif;
    font-size: 3em;
    font-weight: 600;
}

a {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 1.4em;
    font-weight: 500;
    color: #cccccc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.story {
    color: #cccccc;
    margin: 0.1em auto;
    display: block;
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 1.3em;
    line-height: 1.6;
}

.blog {
    color: #cccccc;
    margin: 0.1em auto;
    display: block;
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1.2em;
    line-height: 1.6;
}

ul {
    margin: 0.5em auto;
    margin-left: 0.5em auto;
    padding-left: 2em;
    padding-right: 1.5em;
}

li {
    color: #cccccc;
    margin: 0.15em auto;
}

.tableItem {
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1.2em;
    line-height: 1.5;
}

hr {
    background: #666666;
    height: 0.2em;
    width: 60%;
    border: none;
    margin: 1em auto;
}

.features-container {
    display: flex;
    justify-content: center;
    margin: 0.15em auto;
    width: 100%;
}

.features-box {
    color: #cccccc;
    border: 0.15em solid #666666;
    font-family: 'Georgia', serif;
    padding: 0.4em;
    margin: 0 auto;
}

.blog-container {
    display: flex;
    justify-content: center;
    margin: 0.15em auto;
    width: 80%;
}

/* Ensure system/guide/contact sections have proper spacing and centering */
.system-section, .guide-section, .contact-section {
    margin-bottom: 2em;
}

.system-section .blog-post, .guide-section .blog-post, .contact-section .blog-post {
    display: block;
    margin: 0 auto;
}

.blog-post {
    color: #cccccc;
    border: 0.15em solid #666666;
    font-family: 'Georgia', serif;
    padding: 0.4em;
    margin: 0 auto;
    width: 100%;
}

.blog-posts-section {
    margin: 1em 0;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    margin: 2em auto;
}

.hero-image {
    max-width: 800px;
    width: 66%;
    height: auto;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 0.4em;
    background: #333333;
    box-shadow: 
        inset 1.5px 1.5px 3px #555555,
        inset -1.5px -1.5px 3px #111111,
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile responsiveness for hero image */
@media (max-width: 768px) {
    .hero-image {
        width: 85%;
        max-width: none;
        border: 1.5px solid #000000;
        padding: 0.3em;
        box-shadow: 
            inset 1px 1px 2px #555555,
            inset -1px -1px 2px #111111,
            1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .system-content, .guide-content {
        max-width: 90%;
        padding: 0 0.5em;
    }
    
    .system-heading, .guide-heading {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 90%;
        border: 1px solid #000000;
        padding: 0.25em;
        box-shadow: 
            inset 1px 1px 2px #555555,
            inset -1px -1px 2px #111111,
            1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .system-content, .guide-content {
        max-width: 95%;
        padding: 0 0.25em;
        font-size: 1.1em;
    }
    
    .system-heading, .guide-heading {
        font-size: 1.3em;
    }
}

span {
    display: block;
    text-align: center;
    color: #cccccc;
}

/* Bold text styling for game terms */
strong {
    color: #9370DB;
}

/* System and Guide page styling */
.system-section, .guide-section {
    margin: 2em 0;
}

/* Bold text styling for game terms */
strong {
    color: #9370DB;
}

/* System, Guide, and Contact page styling */
.system-heading, .guide-heading, .contact-heading {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #cccccc;
    margin: 1em 0 1em 0;
}

.system-content, .guide-content, .contact-content {
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1.2em;
    line-height: 1.6;
    color: #cccccc;
    padding: 0 1em 1em 1em;
}

/* Hyperlink styling - external links and email */
a[href^="http"], a[href^="https"], a[href^="mailto"] {
    color: #1E90FF !important;
    font-size: 1em !important;
    font-family: 'Georgia', serif !important;
    font-weight: normal !important;
    text-decoration: underline;
}

a[href^="http"]:hover, a[href^="https"]:hover, a[href^="mailto"]:hover {
    color: #4169E1 !important;
}

/* Hyperlink styling - external links and email */
a[href^="http"], a[href^="https"], a[href^="mailto"] {
    color: #1E90FF !important;
    font-size: 1em !important;
    font-family: 'Georgia', serif !important;
    font-weight: normal !important;
    text-decoration: underline;
}

a[href^="http"]:hover, a[href^="https"]:hover, a[href^="mailto"]:hover {
    color: #4169E1 !important;
}

.foot {
    display: block;
    text-align: center;
    color: #cccccc;
    font-family: 'Georgia', serif;
    font-size: 1em;
}

.spacer {
    height: 1em;
}

.spacer-top {
    height: 2em;
}

.story-section {
    margin: 1em 0;
}

.features-section {
    margin: 1em 0;
}

.navigation {
    margin: 1em 0;
}

footer {
    margin-top: 2em;
} 