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

body {
    background: #0d0d1a;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

#game-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

#header-bar {
    background: linear-gradient(180deg, #2a1a0a 0%, #1a0f05 100%);
    border-bottom: 2px solid #8b6914;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

#header-bar h1 {
    font-size: 18px;
    color: #e6b800;
    white-space: nowrap;
    text-shadow: 1px 1px 2px #000;
}

#session-info {
    font-size: 12px;
    color: #aa9966;
    flex: 1;
}

#nav-buttons {
    display: flex;
    gap: 4px;
}

.nav-btn {
    background: #3a2a1a;
    color: #ccaa66;
    border: 1px solid #5a4a2a;
    padding: 4px 10px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.15s;
}

.nav-btn:hover {
    background: #4a3a2a;
    color: #e6b800;
}

.nav-btn.active {
    background: #5a4a1a;
    color: #e6b800;
    border-color: #8b6914;
}

#game-container canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#panel-container {
    background: #1a1020;
    border-top: 2px solid #8b6914;
    min-height: 640px;
    padding: 20px;
    overflow-y: auto;
}

.panel-title {
    font-size: 20px;
    color: #e6b800;
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px #000;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th {
    background: #2a1a0a;
    color: #ccaa66;
    padding: 8px 12px;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px solid #5a4a2a;
}

.leaderboard-table td {
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid #2a2030;
}

.leaderboard-table tr:hover td {
    background: #2a1a2a;
}

.profit-pos { color: #4caf50; }
.profit-neg { color: #f44336; }
.profit-zero { color: #888; }

.medal { font-size: 16px; }

.combo-card {
    background: #2a1a2a;
    border: 1px solid #5a4a2a;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-rank { font-size: 20px; margin-right: 10px; }
.combo-info { flex: 1; }
.combo-name { color: #e6b800; font-size: 13px; }
.combo-player { color: #aa9966; font-size: 11px; }
.combo-pot { color: #4caf50; font-size: 14px; font-weight: bold; }

.hof-category {
    margin-bottom: 20px;
}

.hof-category h3 {
    color: #e6b800;
    font-size: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid #3a2a1a;
    padding-bottom: 4px;
}

.hof-entry {
    padding: 6px 0;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

.hof-entry .player { color: #ccaa66; }
.hof-entry .desc { color: #888; font-size: 11px; }
.hof-entry .date { color: #666; font-size: 10px; }
