.article-content {
    background-color: rgba(253, 246, 227, 0.8);
    padding: 40px;
    border: 1px solid #dcdcdc;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-size: 20px;
}

.article-content p, .article-content li {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1.5em;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    text-align: center;
}

.article-image {
    display: block;
    margin: 30px auto;
    float: none;
}

.article-mario-image {
    display: block;
    margin: 30px auto;
    float: none;
    opacity: 95%;
    &:hover{
        box-shadow: 2px 2px 10px #cb4b16;
        opacity: 100%;
    }
}

blockquote {
    border-left: 4px solid #cb4b16;
    margin-left: 0;
    padding-left: 20px;
    font-style: italic;
    color: #657b83;
}

code {
    background: #eaddc5;
    padding: 2px 5px;
    font-family: 'Courier New', monospace;
    border-radius: 4px;
}

.back-button {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.back-button:hover {
    background: var(--link);
}

.article-widget {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 40px auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

pre {
    background-color: #eaddc5;
    color: #2a475e;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    line-height: 1.5;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    overflow-x: auto;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

pre code {
    background-color: transparent;
    padding: 0;
    border: none;
    color: inherit;
    font-weight: bold;
    font-style: italic;
}

p code, li code {
    background-color: #eaddc5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #b58900;
    border: 1px solid #d4c5a9;
}