/* Street Hustle Game CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

:root {
    --game-primary: #ff0055;
    /* Neon Pink */
    --game-secondary: #00ccff;
    /* Neon Blue */
    --game-bg: #0f0f0f;
    --game-card-bg: #1a1a1a;
    --game-text: #f0f0f0;
    --game-accent: #ffcc00;
}

body {
    font-family: 'Outfit', sans-serif;
}

.game-container {
    background-color: var(--game-bg);
    color: var(--game-text);
    min-height: 85vh;
    padding: 30px 0;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0f0f0f 100%);
}

.game-card {
    background-color: var(--game-card-bg);
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
    border-color: var(--game-primary);
}

.game-card .card-header {
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 20px;
    color: var(--game-primary);
}

.game-stat-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.game-stat-box:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--game-secondary);
}

.game-stat-box h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.game-stat-box h3 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.game-sidebar .list-group-item {
    background-color: var(--game-card-bg);
    border-color: #333;
    color: #aaa;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.game-sidebar .list-group-item:hover,
.game-sidebar .list-group-item.active {
    background-color: #252525;
    border-color: #333;
    border-left-color: var(--game-primary);
    color: #fff;
    padding-left: 20px;
}

.game-sidebar .list-group-item.text-danger:hover {
    border-left-color: #dc3545;
    color: #dc3545;
}

.game-progress {
    background-color: #222;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.game-btn-action {
    width: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: filter 0.2s;
}

.game-btn-action:hover {
    filter: brightness(1.2);
}

.btn-primary.game-btn-action {
    background: linear-gradient(45deg, var(--game-secondary), #0099cc);
}

.btn-danger.game-btn-action {
    background: linear-gradient(45deg, var(--game-primary), #cc0044);
}

/* Table overrides for dark theme */
.table-game {
    color: var(--game-text);
    margin-bottom: 0;
}

.table-game thead th {
    border-bottom: 1px solid #444;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.table-game td,
.table-game th {
    border-color: #333;
    vertical-align: middle;
    padding: 15px;
}

.table-game tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
    color: #fff;
}