/* eclipse.css */

body {
    margin: 0;
    padding: 0;
    background: url("../images/redmoon.jpeg") no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #d1d1d1;
}

/* Semi-transparent overlay to ensure text readability against the background */
.overlay {
    background-color: rgba(0, 0, 0, 0.75);
    min-height: 100vh;
    width: 100%;
    padding: 40px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(38, 38, 38, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-top: 5px solid #8b0000;
}

header {
    text-align: center;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #ff4500;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000;
}

.meta {
    font-style: italic;
    color: #aaa;
    font-size: 0.9em;
}

h2 {
    color: #ff6347;
    border-left: 4px solid #8b0000;
    padding-left: 15px;
    margin-top: 35px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.robotic-sound {
    background-color: #111;
    border: 1px dashed #ff4500;
    color: #00ff41; /* Vintage Computer Green */
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    margin: 30px 0;
    font-size: 1.1em;
    text-align: center;
    letter-spacing: 1px;
}

.highlight {
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #8b0000;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.8em;
    color: #777;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Navigation Styling for the Return Class */
.return {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #444; /* Subtle line to separate story from nav */
}

.return a {
    display: inline-block;
    margin: 0 15px; /* Spacing between the two links */
    padding: 10px 20px;
    color: #ff4500; /* Blood Moon Orange-Red */
    text-decoration: none;
    border: 1px solid #8b0000;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.return a:hover {
    background-color: #8b0000;
    color: #fff;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}