* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}
.container { 
    max-width: 480px; 
    width: 100%; 
    padding: 10px;
    padding-bottom: 80px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #1A1A2E;
}
.logo { font-size: 22px; font-weight: bold; color: #6C3CE1; }
.balance { background: #1A1A2E; padding: 8px 16px; border-radius: 20px; font-size: 14px; color: #FFD93D; }

.quick-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.quick-actions a {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.btn-deposit { background: #00D26A; color: #fff; }
.btn-withdraw { background: #FF6B6B; color: #fff; }
.btn-settings { background: #1A1A2E; color: #fff; flex: 0.2; }

.category-title {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #FFD93D;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.game-card {
    background: #1A1A2E;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid #2A2A4E;
    cursor: pointer;
    transition: transform 0.2s;
}
.game-card:active { transform: scale(0.95); }
.game-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.game-card .game-name {
    font-size: 11px;
    margin-top: 8px;
    color: #fff;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #1A1A2E;
    background: #0A0A0A;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: 0 auto;
}
.bottom-nav a {
    color: #888;
    text-decoration: none;
    font-size: 11px;
    text-align: center;
}
.bottom-nav a.active { color: #6C3CE1; }
.bottom-nav .icon { font-size: 20px; display: block; }
