:root {
    --bg-color: #2c3e50;
    --panel-color: #34495e;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-color);
    color: white;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.main-wrapper { width: 100%; max-width: 800px; text-align: center; }

.setup-panel {
    background: var(--panel-color);
    padding: 20px;
    border-radius: 12px;
    margin: 10px auto;
    max-width: 400px;
}

.player-input { margin: 10px 0; text-align: left; }
input { width: 100%; padding: 8px; border-radius: 5px; border: none; box-sizing: border-box; }

button {
    padding: 12px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

#game-container {
    background-color: var(--panel-color);
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
}

.production-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.3);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.production-table th, .production-table td { padding: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }

.legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 15px; font-size: 0.8rem; }

.svg-responsive-container { width: 100%; position: relative; padding-bottom: 91%; }
svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #2980b9; border-radius: 10px; }

@media (max-width: 480px) {
    .production-table { font-size: 0.7rem; }
    .production-table th, .production-table td { padding: 4px; }
}