.lg-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lg-header {
    text-align: center;
}

.lg-stats {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lg-stat-val {
    font-weight: bold;
    color: #4CAF50;
}

.lg-grid {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    grid-template-rows: repeat(5, 60px);
    gap: 10px;
    background: #333;
    padding: 10px;
    border-radius: 8px;
}

.lg-cell {
    width: 60px;
    height: 60px;
    background: #444;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lg-cell:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.lg-cell.active {
    background: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.lg-controls {
    display: flex;
    gap: 10px;
}

.lg-btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: #4CAF50;
    color: white;
    transition: background 0.2s;
}

.lg-btn:hover {
    background: #45a049;
}

.lg-btn.secondary {
    background: #555;
}

.lg-btn.secondary:hover {
    background: #666;
}

.lg-level-info {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
