body {
    background-color: #2b2b2b;
    color: #cfcfcf;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 800px;
    background-color: #1e1e1e;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    margin-top: 20px;
    margin-bottom: 20px;
}

header {
    background-color: #111;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #555;
}

h1 {
    margin: 0 0 5px;
    font-size: 2em;
    letter-spacing: 3px;
    color: #ff5555;
}

.slogan {
    font-size: 0.85em;
    color: #999;
    letter-spacing: 1px;
}

.recipe-card {
    padding: 30px;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    color: #fff;
}

.subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.section {
    margin-bottom: 30px;
}

h3 {
    background-color: #2c2c2c;
    color: #ff5555;
    padding: 10px;
    text-transform: uppercase;
    font-size: 1em;
    border-left: 4px solid #ff5555;
}

.ingredients {
    list-style: none;
    padding: 0;
}

.ingredients li {
    padding: 8px 0;
    border-bottom: 1px dashed #333;
    display: flex;
    justify-content: space-between;
}

.ingredients li span {
    font-weight: bold;
    color: #ff9999;
}

.instructions {
    counter-reset: step;
    padding-left: 0;
    list-style: none;
}

.instructions li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.instructions li::before {
    counter-increment: step;
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #ff5555;
}

.control-text {
    display: block;
    text-align: center;
    font-weight: bold;
    color: #ff5555;
    background-color: #251616;
    padding: 12px;
    margin-top: 10px;
    border: 1px dashed #ff5555;
}

.footer-note {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.85em;
    color: #aaa;
}

footer {
    text-align: center;
    font-size: 0.75em;
    color: #666;
    padding: 15px;
    background-color: #151515;
    border-top: 1px solid #333;
}
