body {
    margin: 0;
    background: #0d0c09;
    color: #d8c79a;
    font-family: Georgia, serif;
}

.container {
    max-width: 900px;
    margin: 35px auto;
    padding: 20px;
}

h1 {
    margin-bottom: 5px;
    text-align: center;
    font-size: 42px;
    letter-spacing: 8px;
}

.subtitle {
    margin-bottom: 25px;
    text-align: center;
    color: #8f805d;
    letter-spacing: 3px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 15px;
    padding: 12px 18px;

    border: 1px solid #5c4c2c;
    background: #17140e;

    font-size: 14px;
}

.active {
    color: #8fbf72;
}

.journal {
    margin-bottom: 15px;
    padding: 20px;

    border: 1px solid #5c4c2c;
    background: #12100b;

    line-height: 1.7;
}

.journal-title {
    margin-bottom: 12px;

    text-align: center;
    color: #c49645;

    font-weight: bold;
    letter-spacing: 4px;
}

.warning {
    color: #a85c52;
    font-weight: bold;
}

.game-container {
    display: flex;
    justify-content: center;

    padding: 10px;

    border: 1px solid #5c4c2c;
    background: #050504;
}

canvas {
    display: block;
    width: 100%;
    max-width: 720px;

    background:
        radial-gradient(
            circle at center,
            #211c12,
            #0b0a07 75%
        );
}

.message {
    min-height: 24px;

    margin: 15px 0;

    text-align: center;
    color: #8f805d;

    letter-spacing: 1px;
}

.start-button {
    display: block;

    margin: 15px auto 25px;
    padding: 14px 28px;

    border: none;

    background: #77602e;
    color: white;

    cursor: pointer;

    font-weight: bold;
    letter-spacing: 2px;
}

.start-button:hover {
    background: #987d3e;
}

.artifact-legend {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(140px, 1fr)
        );

    gap: 10px;

    margin-top: 20px;
}

.artifact-legend div {
    padding: 12px;

    border: 1px solid #403820;
    background: #12100b;

    text-align: center;
}

.artifact-legend strong {
    display: block;

    color: #c49645;
    font-size: 20px;
}

.victory {
    margin-top: 25px;
    padding: 25px;

    border: 1px solid #8fbf72;

    background: #0d120b;

    text-align: center;
}

.victory-title {
    margin-bottom: 15px;

    color: #c49645;

    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
}

.flag {
    margin-top: 20px;
    padding: 18px;

    border: 1px solid #5c4c2c;

    background: #080806;
    color: #8fbf72;

    font-family: monospace;
    font-size: 18px;

    overflow-wrap: anywhere;
}

footer {
    margin-top: 25px;

    text-align: center;

    color: #555043;

    font-size: 12px;
    letter-spacing: 2px;
}
