* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
}

#game-container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
}

#game-header {
    margin-bottom: 2rem;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

#player-stats {
    display: flex;
    justify-content: space-around;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
}

#game-screen {
    background: linear-gradient(to bottom, #e3f2fd 0%, #fff 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    min-height: 200px;
}

#location-name {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

#location-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#location-image {
    font-size: 5rem;
    text-align: center;
    margin: 1rem 0;
}

#choices {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.choice-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.choice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.choice-button:active {
    transform: translateY(0);
}

#inventory {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

#inventory h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

#inventory-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.inventory-item {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 2px solid #667eea;
    font-size: 0.9rem;
}
