/* General Styles */
body {
    background-color: #C0C0C0; /* Classic gray */
    color: #000000; /* Black text */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    color: #4682B4; /* Blue highlights */
    text-shadow: 2px 2px 2px #000000;
    margin-bottom: 20px;
}

.frame {
    border: 2px solid #4682B4;
    background-color: #FFFFFF;
    padding: 10px;
    margin: 20px auto;
    width: 80%;
    text-align: left;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

pre {
    margin: 0;
    color: #000000;
}

.enter-button {
    background-color: #D3D3D3; /* Light gray */
    border: 2px outset #4682B4; /* Beveled 3D effect */
    color: #4682B4; /* Blue text */
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 20px 0;
}

.enter-button:hover {
    background-color: #A9A9A9; /* Darker gray on hover */
}

.graphics {
    margin: 20px 0;
}

.pixelated {
    image-rendering: pixelated;
    margin: 10px;
}

.loading-animation {
    font-size: 16px;
    color: #4682B4;
    margin-top: 10px;
}

.blinking-marquee {
    font-size: 14px;
    color: #4682B4;
    margin-top: 20px;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #4682B4;
}

.broken-image {
    width: 50px;
    height: 50px;
    margin: 5px;
    image-rendering: pixelated;
}
/* New Content Block Styles */
.content-block {
    border: 2px solid #4682B4;
    background-color: #FFFFFF;
    padding: 15px;
    margin: 20px auto;
    width: 80%;
    text-align: left;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.content-block h2 {
    color: #4682B4;
    font-size: 20px;
    margin-bottom: 10px;
}

.content-block p, .content-block ul, .content-block ol {
    margin: 10px 0;
}

.content-block ul, .content-block ol {
    padding-left: 20px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.product {
    text-align: center;
}

.product img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.product p {
    font-size: 12px;
    color: #4682B4;
}
