body {
    background-color: #f0ebe3;
    font-family: 'ZCOOL+XiaoWei', 'Arial', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.game-container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 5px solid #d4af37;
}

h1 {
    color: #8b0000;
    margin-bottom: 20px;
}

.stats-panel, .character-info {
    display: flex;
    justify-content: space-around;
    background: #fff8e1;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-size: 0.9em;
}

.stat-item span, .info-item span {
    font-weight: bold;
    color: #8b0000;
}

.canvas-wrapper {
    background: #fafafa;
    border: 3px double #d4af37;
    margin-bottom: 20px;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f9f9f9;
}

.item-card {
    border: 1px solid #d4af37;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-name {
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-price {
    font-size: 0.8em;
    color: #b8860b;
    margin-bottom: 8px;
}

.item-btn {
    width: 80%;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    border: 1px solid #8b0000;
    background: #8b0000;
    color: #fff;
}

.item-btn:hover {
    background: #a52a2a;
}