body {
    background-color: #f7e6c4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #5d4037;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.game-container {
    display: flex;
    flex-direction: row;
    background-color: #fffaf0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 90%;
    gap: 2rem;
}

.stats-panel {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-panel h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cookie-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.1s;
    outline: none;
}

#cookie-button:active {
    transform: scale(0.95);
}

#cookie-img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.shop-panel {
    flex: 1;
    background-color: #efe0c9;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-panel h2 {
    text-align: center;
    margin-top: 0;
}

.shop-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.item-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.item-info p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

.buy-btn {
    width: 100%;
    background-color: #8d6e63;
    color: white;
    border: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.buy-btn:hover {
    background-color: #6d4c41;
}

.buy-btn:disabled {
    background-color: #bdbdbd;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .game-container {
        flex-direction: column;
        align-items: center;
    }
}
